delete extra docs/ directory (oops)

This commit is contained in:
Michael Stapelberg 2020-06-01 11:23:09 +02:00
parent ad94ee5d4d
commit f967cb6bb3
19 changed files with 0 additions and 1639 deletions

View File

@ -1 +0,0 @@
gokrazy.org

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.3 KiB

View File

@ -1,132 +0,0 @@
<!DOCTYPE html>
<html> <head>
<meta name="generator" content="Hugo 0.71.0-DEV" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gokrazy - a pure-Go userland for your Raspberry Pi 3 appliances</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="/jumbotron-narrow.css" rel="stylesheet">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
<style type="text/css">
body {
font-family: "Open Sans";
}
.table-striped>tr:nth-child(odd){
background-color:red;
}
</style>
</head>
<body>
<div class="container"><div class="header"><nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active"><a href="/">Home <span class="sr-only">(current)</span></a></li>
<li role="presentation" class=""><a href="/platforms/">Platforms </a></li>
<li role="presentation" class=""><a href="/quickstart/">Quickstart </a></li>
<li role="presentation" class=""><a href="/showcase/">Showcase </a></li>
<li role="presentation" class=""><a href="https://github.com/gokrazy/gokrazy">Source </a></li>
</ul>
</nav>
<h3 class="text-muted">gokrazy</h3>
</div>
<div class="jumbotron" style="padding: 1em; padding-right: 0; padding-left: 2em; text-align: left">
<img src="logo.svg" width="200" height="217" align="right" text="gokrazy 'crazy gopher' logo">
<h2>gokrazy is a pure-Go userland for your Raspberry Pi 3 appliances</h2>
<p>
For a long time, we were unhappy with having to care about security
issues and Linux distribution maintenance on our various Raspberry Pis.
</p>
<p>
Then, we had a crazy idea: what if we got rid of memory-unsafe
languages and all software we dont strictly need?
</p>
<p>
Turns out this is feasible. gokrazy is the result.
</p>
</div>
<div class="row marketing">
<div class="col-lg-6">
<h4>Your app(s) + only 4 moving parts</h4>
<ol style="margin-bottom: 0">
<li>the <a href="https://github.com/gokrazy/kernel">Linux kernel</a></li>
<li>the <a href="https://github.com/gokrazy/firmware">Raspberry Pi firmware files</a></li>
<li>the <a href="https://golang.org/">Go</a> compiler and standard library</li>
<li>the gokrazy userland</li>
</ol>
<p>
All are updated using the same command.
</p>
<h4>Web status interface</h4>
<p>
On a regular Linux distribution, wed largely use systemctls start,
stop, restart and status verbs to manage our applications. gokrazy
comes with a <a href="overview.png">convenient web interface</a> for
seeing process status and stopping/restarting processes.
</p>
<h4>Debugging</h4>
<p>
Sometimes, an interactive <code>busybox</code> session or a quick
<code>tcpdump</code> run are invaluable. <a
href="https://github.com/gokrazy/breakglass">breakglass</a> allows
you to temporarily enable SSH/SCP-based authenticated remote code
execution: scp your statically compiled binary, then run it
interactively via ssh.
</p>
</div>
<div class="col-lg-6">
<h4>Constraints</h4>
<p>
Due to no C runtime environment being present, your code must compile
with the environment variable <code>CGO_ENABLED=0</code>. To
cross-compile for the Raspberry Pi 3, use <code>GOARCH=arm64</code>.
If your program still builds, youre good to go!
</p>
<h4>Network updates</h4>
<p>
After building a new gokrazy image on your computer, you can easily
update an existing gokrazy installation in-place thanks to the A/B
partitioning scheme we use. Just specify the <code>-update</code>
flag when building your new image.
</p>
<h4>Minimal state and configuration</h4>
<p>
A tiny amount of configuration is built into the images (e.g.
hostname, password, serial console behavior). In general, we prefer
auto-configuration (e.g. DHCP) over config files. If you need more
configurability, you may need to replace some of our programs.
</p>
</div>
</div>
<footer class="footer" style="text-align: center">
<p>© 2017 gokrazy authors (Michael Stapelberg and contributors)</p>
</footer>
</div>
</body>
</html>
</div>
</body>
</html>

View File

@ -1,79 +0,0 @@
/* Space out content a bit */
body {
padding-top: 20px;
padding-bottom: 20px;
}
/* Everything but the jumbotron gets side spacing for mobile first views */
.header,
.marketing,
.footer {
padding-right: 15px;
padding-left: 15px;
}
/* Custom page header */
.header {
border-bottom: 1px solid #e5e5e5;
}
/* Make the masthead heading the same height as the navigation */
.header h3 {
padding-bottom: 19px;
margin-top: 0;
margin-bottom: 0;
line-height: 40px;
}
/* Custom page footer */
.footer {
padding-top: 19px;
color: #777;
border-top: 1px solid #e5e5e5;
}
/* Customize container */
@media (min-width: 768px) {
.container {
max-width: 730px;
}
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
text-align: center;
border-bottom: 1px solid #e5e5e5;
}
.jumbotron .btn {
padding: 14px 24px;
font-size: 21px;
}
/* Supporting marketing content */
.marketing {
margin: 40px 0;
}
.marketing p + h4 {
margin-top: 28px;
}
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
/* Remove the padding we set earlier */
.header,
.marketing,
.footer {
padding-right: 0;
padding-left: 0;
}
/* Space out the masthead */
.header {
margin-bottom: 30px;
}
/* Remove the bottom border on the jumbotron for visual effect */
.jumbotron {
border-bottom: 0;
}
}

View File

@ -1 +0,0 @@
body{padding-top:20px;padding-bottom:20px}.header,.marketing,.footer{padding-right:15px;padding-left:15px}.header{border-bottom:1px solid #e5e5e5}.header h3{padding-bottom:19px;margin-top:0;margin-bottom:0;line-height:40px}.footer{padding-top:19px;color:#777;border-top:1px solid #e5e5e5}@media(min-width:768px){.container{max-width:730px}}.container-narrow>hr{margin:30px 0}.jumbotron{text-align:center;border-bottom:1px solid #e5e5e5}.jumbotron .btn{padding:14px 24px;font-size:21px}.marketing{margin:40px 0}.marketing p+h4{margin-top:28px}@media screen and (min-width:768px){.header,.marketing,.footer{padding-right:0;padding-left:0}.header{margin-bottom:30px}.jumbotron{border-bottom:0}}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

View File

@ -1,663 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="2008px"
height="2180px" viewBox="0 0 2008 2180" enable-background="new 0 0 2008 2180" xml:space="preserve">
<g id="Ebene_1" display="none">
<g display="inline">
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CCFF3" d="M1339.764,1885.057c-7.07-5.245-14.525-9.909-22.794-13.236
c-2.026-0.814-4.977-2.261-5.683-3.874c-1.569-3.587-4.623-4.998-7.435-6.409c-8.454-4.245-15.993-10.034-24.614-14.016
c-4.31-1.99-7.788-5.787-12.105-7.747c-11.184-5.076-21.354-12.014-32.671-16.892c-10.546-4.546-20.419-10.629-30.806-15.579
c-13.166-6.274-25.782-13.587-39.078-19.658c-15.208-6.943-30.559-13.634-45.381-21.466c-5.731-3.029-12.216-4.936-18.134-7.589
c-8.315-3.728-17.095-6.59-24.899-11.542c-2.467-1.564-6.264-1.891-8.611-0.678c-6.287,3.244-8.246,9.709-8.171,16.138
c0.041,3.594,2.468,6.946,6.728,8.64c5.331,2.118,10.434,4.805,15.797,6.967c9.509,3.835,18.273,9.278,27.909,13.007
c11.209,4.337,21.392,10.957,32.719,15.262c9.26,3.519,17.637,9.124,27.001,12.652c9.9,3.73,19.264,8.817,28.778,13.375
c20.291,9.722,40.657,19.374,60.243,30.568c14.232,8.134,28.967,15.39,43.486,23.018c2.991,1.571,6.271,2.711,8.997,4.645
c9.29,6.59,19.999,10.311,30.312,15.992c0.494-5.941,5.895-0.482,7.353-4.209c-2.392-2.838,0.831-3.996,1.832-5.484
C1348.594,1891.003,1343.934,1888.15,1339.764,1885.057z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CCFF3" d="M1012.748,1838.389c-3.328-3.187-8.153-3.588-12.039-5.64
c-6.28-3.317-12.808-6.461-16.963-11.418c-2.189-0.671-1.123,1.432-2.725,1.194c-7.328-1.085-13.114-5.559-19.539-8.608
c-1.714-0.813-2.902-2.222-4.139-3.81c-1.853-2.379-3.939-4.741-6.869-6.258c-7.393-3.826-14.651-7.87-22.252-11.331
c-6.566-2.989-12.4-7.676-19.068-10.33c-11.633-4.63-22.336-11.059-33.551-16.463c-8.845-4.262-17.941-8.049-26.775-12.338
c-11.354-5.512-23.627-9.292-35.393-14.148c-14.684-6.06-29.669-11.402-44.609-16.819c-15.822-5.736-31.693-11.346-47.64-16.725
c-11.28-3.806-23.102-5.86-34.113-10.621c-7.422-3.209-14.755-7.015-23.255-6.416c-1.542,0.109-0.661-3.252-2.913-2.019
c-2.944,1.611-6.806,1.019-9.284,3.523c-2.634,2.661-5.911,3.893-9.695,5.185c0.086,3.767,3.653,6.804,1.212,10.612
c-0.302,0.471,0.757,2.646,1.438,2.784c6.064,1.229,10.228,6.795,17.211,6.587c3.649-0.108,8.829-0.86,11.543,2.52
c3.218,4.007,7.561,3.959,11.653,5.144c0.621,0.18,1.504,0.033,1.875,0.416c4.812,4.969,11.962,4.396,17.652,7.392
c1.953,1.028,3.615,3.118,5.906,3.124c7.263,0.018,12.976,4.432,19.494,6.524c7.889,2.532,15.168,6.743,23.399,8.381
c2.053,0.408,4.098-0.271,6.221,1.001c7.743,4.637,16.703,6.411,24.993,9.833c9.334,3.853,18.994,7.201,28.387,10.991
c7.942,3.205,16.696,3.82,24.157,8.665c4.479,2.909,10.269,3.731,14.988,6.354c11.104,6.17,23.433,9.459,34.534,15.82
c10.218,5.855,21.382,10.16,32.075,15.271c6.333,3.027,12.677,6.033,18.96,9.172c7.561,3.775,15.327,7.162,22.724,11.229
c2.521,1.387,4.98,3.501,7.683,3.661c7.968,0.474,14.092,4.991,20.824,8.304c6.995,3.441,13.245,8.777,21.961,7.971
c5.861-0.543,10.27-5.71,7.986-11.125C1017.588,1843.099,1015.08,1840.621,1012.748,1838.389z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CCFF3" d="M1261.033,1919.611c-3.266-2.011-6.355-3.586-9.239-6.681
c-4.935-5.294-11.776-8.944-18.16-12.702c-3.47-2.041-9.374-0.632-9.229-7.261c0.005-0.195-0.485-0.418-0.763-0.601
c-6.242-4.095-12.94-7.647-18.604-12.428c-5.792-4.889-13.89-5.855-18.801-11.921c-0.112-0.138-0.597,0.026-1.084,0.062
c0.189,0.553,0.359,1.048,0.529,1.543c-4.84-2.247-6.312-7.939-11.538-9.811c-2.316-0.829-5.606-1.79-6.686-2.992
c-4.32-4.811-10.216-6.989-15.299-10.343c-12.512-8.252-25.565-15.678-38.355-23.51c-11.645-7.131-24.04-12.832-36.264-18.809
c-14.414-7.047-29.271-13.183-43.809-19.986c-2.609-1.221-6.639-0.061-7.735-4.134c-6.951,0.334-12.425-4.013-18.526-6.19
c-13.702-4.891-27.049-10.785-40.509-16.347c-9.138-3.775-18.158-7.843-27.352-11.475c-6.963-2.751-13.837-5.675-20.709-8.638
c-6.821-2.942-13.295-6.777-20.233-9.198c-10.681-3.727-21.269-7.76-31.907-11.57c-8.18-2.93-16.157-5.785-24.815-6.789
c-1.798-0.208-2.943,0.069-4.275,0.976c-5.81,3.953-4.638,9.437-3.339,14.919c6.28,2.827,12.546,5.695,18.815,8.501
c13.01,5.821,25.981,11.734,39.011,17.529c13.748,6.114,27.431,12.375,41.171,18.508c13.012,5.808,25.923,11.853,38.979,17.581
c10.718,4.703,21.293,9.741,31.838,14.825c4.536,2.187,8.604,5.525,13.298,7.158c6.637,2.311,12.976,5.207,19.133,8.43
c4.377,2.29,9.242,5.452,13.316,5.956c4.023,0.498,7.545,1.733,10.145,3.65c10.156,7.489,22.227,10.749,33.378,15.951
c7.124,3.324,14.086,6.929,20.711,11.002c10.865,6.681,21.531,13.702,32.911,19.475c7.783,3.948,15.52,8.062,22.625,13.004
c6.52,4.534,13.217,8.861,20.159,12.443c13.483,6.957,26.581,14.606,39.903,21.829c9.658,5.235,19.747,9.786,28.842,16.126
c2.561,1.785,5.879,1.749,9.254,0.144c3.279-1.56,4.733-4.933,7.764-6.391c-0.746-0.541-1.481-1.174-2.305-1.655
C1268.624,1927.072,1265.567,1922.402,1261.033,1919.611z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CCFF3" d="M1583.556,1431.501c-0.92-1.437-1.984-2.686-3.677-3.525
c-6.709-3.33-13.405-6.697-20.081-10.074c-8.888-4.495-17.072-10.332-26.093-14.683c-2.871-1.385-6.679-0.787-8.706-3.784
c-2.13-3.149-5.329-4.552-8.68-5.359c-5.459-1.315-11.044-2.141-16.317-4.144c-1.396-0.531-2.8-0.683-4.204-1.003
c-6.924-1.577-13.959-1.631-20.975-2.212c-4.738-0.393-8.925-1.26-13.88,0.405c-4.062,1.366-7.046,3.868-10.608,5.546
c-4.348,2.049-6.242,4.618-6.376,9.22c-0.274,9.426-0.38,9.462,8.344,11.796c8.06,2.155,16.043,4.88,24.245,6.145
c9.758,1.504,19.489,3.264,29.321,4.447c8.291,0.998,16.31,4.246,24.455,6.477c0.604,0.165,1.408-0.065,1.867,0.253
c5.768,3.993,12.737,4.76,19.161,6.803c7.107,2.262,15.071,1.786,21.829,5.333c4.5,2.361,7.06-0.88,8.371-3.181
c0.826-1.447,3.162-6.65-2.48-7.412C1580.452,1429.767,1582.286,1433.28,1583.556,1431.501z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CCFF3" d="M1600.05,1327.979c0.534-2.071,2.781-2.474,4.347-4.199
c-4.752-2.559-8.935-4.911-12.916-7.687c-6.844-4.771-13.378-10.61-20.614-14.02c-8.967-4.223-15.165-11.658-23.711-16.191
c-8.002-4.245-15.971-8.41-24.343-11.855c-6.812-2.804-14.068-4.383-20.814-7.188c-7.548-3.138-15.067-2.56-22.718-1.882
c-8.005,0.709-13.783,6.12-19.751,10.56c-2.215,1.648-6.522,4.335-5.131,8.024c2.169,5.754,5.29,11.412,12.027,13.186
c5.504,1.448,11.055,2.802,16.866,2.296c4.776-0.416,9.369,1.016,14.049,1.595c6.635,0.82,12.148,5.437,18.645,5.716
c7.224,0.31,13.361,3.515,19.637,6.052c5.493,2.221,10.18,6.343,16.411,7.139c9.369,1.196,16.646,7.284,25.007,10.82
c4.339,1.835,8.878,4.669,14.146,2.697c1.527-0.571,3.001,0.295,4.118,1.104c3.631,2.631,7.747,3.762,13.032,4.792
C1604.547,1335.323,1602.414,1331.572,1600.05,1327.979z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CCFF3" d="M1573.872,1541.229c-6.314-3.466-11.689-8.272-17.938-11.751
c-4.488-2.498-7.79-6.472-12.031-9.335c-2.979-2.011-6.453-2.68-9.337-4.909c-6.103-4.718-12.225-9.715-19.09-13.051
c-6.464-3.14-12.703-6.759-19.322-9.598c-14.573-6.251-29.287-11.175-45.628-10.091c-3.888,0.258-7.237,1.32-10.821,1.89
c-5.023,0.798-8.379,5.303-13.085,4.803c-1.047,8.087-6.127,15.235-4.482,23.362c8.823,1.533,17.054,2.645,25.223,3.906
c5.016,0.774,9.955,0.219,14.679,0.899c6.982,1.006,13.572,4.486,20.468,6.418c7.009,1.963,13.14,6.569,20.655,6.859
c6.625,0.257,11.707,4.116,17.143,7.123c5.633,3.115,11.102,6.594,17.721,7.205c1.079,0.1,1.875,0.38,2.593,1.152
c3.703,3.987,9.483,4.982,13.134,9.079c0.378,0.424,1.124,0.714,1.708,0.729c3.865,0.103,7.359,0.749,10.577,3.401
c1.969,1.625,4.66,2.843,7.594,2.52c2.555-0.281-0.996-3.469,2.167-3.534c6.796,5.135,7.379-5.028,12.84-4.795
c-3.161-3.086-6.206-4.987-8.973-6.75C1577.113,1545.137,1575.968,1542.378,1573.872,1541.229z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#9CCFF3" d="M1418.168,997.927c-4.382-4.163-10.364-4.623-15.321-7.517
c1.521-3.195,3.444-5.732,5.429-8.31c3.117-4.048,6.821-7.92,7.655-13.237c0.417-2.66,1.36-4.847,2.925-7.006
c1.446-1.995,3.477-5.461,1.362-6.736c-4.242-2.559-0.882-4.507-0.178-6.89c-2.805-0.032-3.269-2.405-4.108-3.952
c-3.546-6.528-8.256-11.817-14.665-15.631c-2.493-1.484-2.751-3.822-1.899-6.472c2.507-7.794,4.098-15.831,6.467-23.686
c5.049-16.736,9.408-33.688,13.706-50.64c5.286-20.855,12.081-41.277,15.784-62.61c2.595-14.947,5.197-29.784,5.607-44.946
c0.044-1.649,0.666-3.083,0.449-4.973c-0.932-8.133-1.699-16.322-1.425-24.563c0.216-6.468,0.767-13.052-0.127-19.401
c-1.774-12.608-3.865-25.184-7.191-37.542c-5.235-19.456-10.057-39.019-20.083-57.086c8.623-2.496,17.304-3.083,24.293-7.443
c6.477-4.04,12.804-8.486,18.617-13.8c9.793-8.95,17.978-19.019,25.57-29.73c3.684-5.197,5.073-11.368,6.418-17.285
c2.262-9.953,5.612-20.004,1.968-30.48c-0.682-1.959-0.458-4.385-0.778-6.465c-0.576-3.737-1.45-8.058-3.793-10.743
c-3.271-3.748-5.426-8.065-7.729-12.191c-7.105-12.729-16.733-22.526-30.238-28.111c-6.186-2.558-12.643-4.513-19.083-6.374
c-2.405-0.695-3.809-2.992-6.465-3.131c-17.245-0.901-34.221,0.153-50.337,7.067c-5.576,2.392-10.965,5.221-16.432,7.865
c-3.891,1.881-8.67,2.93-11.461,5.863c-5.422,5.699-12.396,9.425-17.675,15.19c-1.712,1.869-3.725,2.112-6.529,1.227
c-4.833-1.527-8.103-5.048-11.949-7.797c-10.016-7.158-20.142-14.206-29.709-21.936c-15.329-12.385-32.983-20.614-50.336-29.444
c-5.096-2.593-10.46-4.806-15.158-7.992c-3.875-2.629-8-4.832-12.089-6.844c-9.408-4.632-18.649-9.634-28.189-13.943
c-5.528-2.498-10.255-6.357-16.066-8.305c-6.528-2.187-12.898-4.851-19.311-7.378c-8.613-3.394-16.877-7.726-25.957-9.86
c-4.448-1.045-9.173-1.255-13.396-2.842c-7.759-2.915-15.842-4.361-23.881-5.698c-9.812-1.632-19.84-1.911-29.713-3.235
c-13.461-1.805-26.871-3.744-40.505-4c-11.288-0.211-22.508,1.228-33.756,0.978c-7.645-0.17-15.164,0.929-22.752,1.237
c-5.471,0.222-10.913,1.511-16.333,2.513c-11.109,2.053-22.258,3.956-33.274,6.438c-10.732,2.419-21.589,4.119-32.19,7.419
c-10.346,3.222-20.544,7.252-31.367,9.149c-2.345-4.049-4.599-7.843-6.759-11.689c-5.583-9.937-10.872-19.836-22.722-24.256
c-6.144-2.292-12.123-5.65-18.393-7.197c-7.472-1.842-15.781,0.071-22.745,2.216c-13.02,4.009-24.671,11.562-32.64,23.262
c-1.76,2.585-4.515,4.271-5.715,7.248c-1.666,4.13-3.529,8.181-5.157,12.324c-3.632,9.243-7.327,18.393-4.921,28.796
c1.834,7.93,2.593,16.028,6.283,23.566c1.873,3.827,0.43,7.97-3.396,10.85c-3.783,2.847-7.808,5.564-10.931,9.052
c-4.802,5.361-10.566,9.723-14.926,15.573c-5.094,6.835-10.679,13.354-16.538,19.55c-5.199,5.497-8.576,12.224-12.69,18.349
c-4.231,6.296-9.854,11.601-13.281,18.693c-3.702-0.48-7.416,0.595-11.007,1.401c-13.006,2.925-24.862,9.139-37.153,14.061
c-13.116,5.252-24.263,13.97-35.532,22.331c-6.895,5.115-12.752,11.194-16.705,18.908c-2.932,5.721-5.277,11.806-8.757,17.161
c-3.397,5.232-6.419,10.54-8.258,16.454c-4.75,15.288-7.387,31.057-9.845,46.817c-0.772,4.952-2.314,10.075-1.94,14.929
c1.062,13.771,3.006,27.48,4.813,41.187c0.629,4.769,1.521,9.563,2.914,14.157c2.852,9.404,8.639,17.492,12.467,26.482
c0.789,1.852,1.876,4.143,3.479,4.978c5.544,2.888,5.49,6.803,3.117,11.633c-0.701,1.427-0.866,3.117-1.578,4.536
c-5.592,11.15-7.141,23.593-10.519,35.379c-2.012,7.02-3.811,14.509-4.96,21.946c-1.108,7.176-3.753,14.347-3.506,21.442
c0.32,9.19-1.023,18.14-1.438,27.202c-0.07,1.542-0.484,4.106-1.417,3.732c-2.948-1.182-5.538,0.866-8.443,0.019
c-10.646-3.105-21.524-15.881-22.036-27.87c-0.587-13.74-4.184-26.929-6.335-40.37c-0.609-3.81-1.943-7.728-6.535-10.281
c-3.39-1.886-7.204-2.964-10.215-5.016c-5.823-3.969-11.838-1.588-17.73-2.124c-0.533-0.049-1.234,0.444-1.674,0.874
c-4.069,3.988-9.013,7.452-11.934,12.164c-4.818,7.773-8.148,16.278-7.881,25.954c0.143,5.187,1.743,10.284,1.005,15.759
c-1.396-0.685-2.528-1.316-3.717-1.811c-7.882-3.279-16.113-3.087-24.142-1.342c-8.621,1.874-14.364,8.364-19.637,14.9
c-0.936,1.16-2.523,1.327-3.097,3.119c-1.833,5.729-2.94,11.167-2.744,17.5c0.22,7.114,2.507,12.619,6.201,17.927
c9.191,13.208,19.227,25.638,31.553,36.237c3.249,2.794,5.918,6.754,9.365,9.587c6.255,5.141,12.835,9.833,20.15,13.487
c4.199,2.097,9.061,2.335,12.984,4.785c6.897,4.308,14.509,6.28,22.382,6.662c10.143,0.491,20.327,0.183,30.492,0.076
c2.626-0.027,4.993,0.601,5.267,3.279c0.968,9.466,5.702,18.861,0.834,28.505c-0.168,0.334-0.386,0.562-0.37,1.149
c0.306,11.484,0.271,22.979,0.709,34.456c0.31,8.096-1.028,16.085-1.001,24.131c0.021,6.355,1.453,12.817,0.664,19.029
c-0.649,5.125-0.762,10.276-0.409,15.191c0.83,11.581,1.501,23.188,2.51,34.765c1.395,16.004,2.48,32.038,4.188,48.018
c0.667,6.236,0.52,12.55,1.185,18.733c1.474,13.704,4.327,27.265,5.662,40.978c1.494,15.356,3.583,30.61,8.242,45.258
c3.547,11.151,5.751,22.627,9.476,33.768c3.317,9.923,5.937,20.324,7.631,30.873c1.263,7.859,5.715,15.296,6.426,23.131
c0.727,8.002,4.006,15.135,5.199,22.925c1.697,11.086,6.783,21.251,10.936,31.675c5.314,13.34,9.486,27.102,17.005,39.521
c4.516,7.46,9.271,14.701,14.571,21.627c2.364,3.09,3.222,6.686-1.326,8.998c-2.521,1.281,2.261,0.907-0.083,2.109
c-5.462-2.116-11.002-3.155-17.298-0.233c-13.392,6.213-23.958,14.883-29.572,28.852c-0.415,1.032-1.138,2.186-0.978,3.161
c0.834,5.08,1.854,10.132,2.912,15.172c1.263,6.014,7.84,9.719,7.292,16.572c-0.013,0.161,0.917,0.282,1.216,0.601
c4.109,4.38,8.186,8.792,12.55,13.498c0.574-0.125,2.156-1.015,2.951-0.552c4.371,2.546,9.141,3.817,13.855,5.467
c6.961,2.437,13.476,6.035,20.536,8.494c9.217,3.21,14.926,10.811,19.598,19.119c3.202,5.694,5.562,12.267,10.019,16.729
c3.934,3.94,8.908,7.135,13.225,10.97c4.394,3.903,9.895,6.66,15.367,8.347c7.39,2.277,15.45,4.704,22.162-2.438
c1.493-1.589,3.684-1.66,5.853-1.931c4.539-0.568,9.596,0.168,13.262-3.382c2.575-2.493,5.384-4.672,8.053-7.028
c5.696-5.028,8.295-12.459,13.665-17.837c2.229-2.232,3.762-3.16,6.91-1.852c3.314,1.379,5.351,4.27,8.494,5.825
c8.06,3.989,15.734,8.715,24.477,11.3c10.735,3.174,21.372,6.686,32.042,10.08c13.265,4.221,26.363,9.09,39.828,12.519
c11.041,2.812,20.816,8.804,32.163,10.88c15.652,2.864,31.067,7.021,46.593,10.587c13.208,3.034,26.572,5.334,39.686,8.859
c5.608,1.508,11.519,3.68,16.986,3.761c12.31,0.182,24.291,4.064,36.714,2.502c5.372-0.676,10.366,2.609,15.832,2.875
c12.456,0.605,24.875-1.045,37.354-0.098c10.372,0.788,20.594-2.346,31.035-2.021c10.782,0.336,21.213-3.231,32.072-3.079
c1.389,4.141-1.033,8.003-2.14,11.9c-1.517,5.345-4.558,11.161-3.239,16.061c2.059,7.65,3.207,15.872,7.055,22.822
c2.975,5.372,6.218,11.621,13.866,12.162c2.643,0.187,5.952-0.689,7.793,0.592c3.111,2.165,6.038,1.393,8.871,0.858
c11.3-2.13,20.841-8.283,30.407-14.193c4.159-2.57,8.482-1.272,9.521,3.65c0.328,1.557,0.459,2.733,2.174,3.41
c2.327,0.918,3.575,3.724,5.422,4.628c3.829,1.873,2.798,6.503,6.653,8.65c5.494,3.061,10.79,6.774,16.025,10.425
c2.949,2.057,6.145,5.686,10.1,4.741c2.457-0.587,4.519-0.189,6.041,0.713c7.396,4.381,15.445,2.902,23.162,2.588
c7.967-0.325,15.146-3.475,21.394-8.967c3.87-3.401,6.14-8.075,10.077-11.228c13.383-10.715,12.977-27.031,7.859-40.11
c-2.037-5.205-6.898-8.361-9.59-13.019c-3.699-6.4-9.405-10.871-14.901-15.234c-11.764-9.339-26.187-13.907-39.64-20.162
c-7.684-3.572-15.896-5.844-24.043-8.208c-2.299-0.668-3.68-2.463-3.659-5.06c0.02-2.43,1.688-3.749,3.512-4.665
c3.781-1.899,7.351-4.253,11.071-6.115c12.123-6.066,22.953-13.892,33.649-22.093c5.274-4.044,10.88-7.787,15.367-12.603
c7.478-8.025,15.726-15.21,23.479-22.921c3.506-3.487,8.116-6.415,10.26-10.604c4.039-7.891,11.784-13.156,14.702-21.517
c1.802-5.164,7.875-7.262,8.404-13.138c0.225-2.499,1.953-4.36,3.865-6.004c1.735-1.491,2.928-3.46,3.662-5.612
c1.544-4.53,3.457-8.87,5.642-13.141c2.051-4.008,6.065-6.891,7.618-10.628c3.985-9.59,10.209-18.064,13.425-27.953
c1.455-4.475,4.204-8.358,5.686-12.745c2.609-7.727,5.598-15.348,8.43-22.955c4.221-11.336,5.06-23.407,9.454-34.75
c2.643-6.823,1.469-15.348,1.592-23.066c0.279-17.377,0.931-34.707-3.514-51.994c-3.436-13.365-6.815-26.746-10.601-40.021
c-2.855-10.017-6.499-19.867-8.534-30.044c-2.986-14.932-3.879-30.32-7.423-45.093c-5.067-21.122-5.78-42.627-7.522-64.027
c-0.833-10.232-1.53-20.53-0.585-31.028c1.149-12.754,2.423-25.6,2.448-38.479c0.006-2.888,1.253-5.74,0.938-8.747
c-0.208-1.982,1.449-3.72,2.705-3.62c3.449,0.272,5.068-2.831,7.653-3.952c6.461-2.802,13.114-5.371,19.456-8.56
c3.811-1.916,7.347-4.006,10.173-7.187c5.104-5.741,7.223-12.968,9.876-19.938
C1430.627,1015.791,1424.404,1003.852,1418.168,997.927z"/>
</g>
</g>
<g id="flächen">
<path fill="#9CCFF3" d="M566.963,765.195c-3.25,3.38-3.748,8.223-4.778,12.558c-32.521,136.797-33.306,225.179-31.809,341.455
c0.882,68.555,5.163,137.903,23.186,203.78c13.622,49.791,56.972,131.95,69.005,149.552c13.122-24.705,45.231-17.749,54.345-14.209
c2.387,0.928,4.62,2.402,7.075,2.963c3.432,0.784,4.218,5.494,7.562,5.355c4.418-0.184,9.285,7.739,11.772,10.327
c2.192,2.281,4.922,4.119,6.771,6.638c23.062,31.424,28.186,84.949,28.389,92.101c9.093,4.665,23.208,14.004,31.149,17.555
c37.621,16.822,60.984,23.808,89.732,32.876c88.135,27.801,192.271,53.292,284.155,31.408
c107.762-25.666,192.558-117.919,225.847-220.965c9.677-29.956,15.812-69.583,12.314-101.172
c-3.922-35.415-16.33-70.911-20.917-106.706c-5.962-46.527-16.525-71.211-3.358-158.544l6.597-55.34l9.433-91.225
c5.492-22.955,24.954-93.999,28.774-106.914c6.738-22.781,9.729-46.659,12.268-70.068c3.785-34.906-2.212-67.194-12.25-100.521
c-5.111-16.97-11.52-34.596-19.637-50.796c-6.048-12.07-20.771-38.19-35.194-42.137c-5.662-1.55-11.15-4.128-17.282-2.957
c0.081-4.161,1.772-7.504,2.969-10.922c3.486-9.953,8.988-19.202,16.186-26.448c7.321-7.371,15.793-14.014,26.383-17.465
c4.729-1.541,9.66-3.331,14.34-3.953c4.811-0.639,9.465-2.112,14.354-2.507c6.669-0.538,12.38,1.683,18.412,3.715
c3.981,1.341,7.146,4.228,11.311,5.104c1.052,0.221,2.259,1.554,1.919,3.146c-0.551,2.581,1.022,4.664,1.583,6.742
c-14.098,2.012-28.69-2.699-42.359,3.55c1.564,3.861,3.241,7.862,7.083,8.562c2.821,0.515,5.088,1.739,7.631,2.599
c4.079,1.38,8.052,3.317,12.427,3.623c2.023,0.142,4.119,0.485,3.609,2.82c-0.381,1.75-0.836,4.436-3.895,4.233
c-4.129-0.272-8.271,1.054-12.243,0.814c-11.777-0.708-23.643,2.659-35.335-0.79c-0.323-0.096-0.754,0.174-1.631,0.403
c6.109,8.155,12.334,15.765,17.719,23.927c3.042,4.609,7.785,8.227,8.805,14.221c0.198,1.169,1.219,4.062,3.006,3.243
c3.287-1.505,6.795,0.006,10.012-1.622c5.016-2.54,10.546-3.823,15.755-5.999c6.968-2.912,13.032-6.881,17.534-12.708
c4.054-5.247,8.331-10.221,11.525-16.395c3.762-7.273,5.75-14.811,5.327-22.129c-0.453-7.826-0.944-15.992-4.317-23.725
c-3.477-7.968-8.013-15.263-13.791-21.252c-5.807-6.018-14.245-8.992-22.135-11.907c-16.593-6.13-33.183-5.441-49.747,0.837
c-14.856,5.63-27.283,14.703-38.575,25.598c-9.189,8.864-18.368,17.74-27.616,26.543c-3.357,3.196-7.694,2.396-9.429-1.765
c-0.681-1.632-2.046-2.586-3.03-4.208c2.512-4.942,4.644-9.708,8.119-13.735c1.546-1.791,1.99-3.085-1.262-4.591
c-7.831-3.625-14.487-9.194-21.061-14.787c-6.328-5.384-12.56-10.932-19.286-15.78c-7.105-5.123-15.182-8.805-22.578-13.454
c-4.426-2.781-9.137-5.194-13.43-8.352c-4.964-3.651-10.947-6.207-16.836-8.223c-5.203-1.781-9.845-4.207-14.502-7.038
c-5.89-3.58-11.856-7.608-18.209-9.778c-9.782-3.342-18.417-9.047-28.325-12.162c-4.692-1.476-9.673-2.96-14.276-5.146
c-4.09-1.942-8.876-2.681-12.574-5.128c-8.429-5.578-18.304-6.247-27.549-8.753c-8.949-2.426-18.267-3.757-27.53-5.069
c-7.93-1.123-15.63-4.298-23.558-4.897c-15.617-1.183-31.176-3.039-46.976-2.389c-23.672,0.976-47.389-0.501-70.966,3.91
c-9.652,1.806-18.898,5.068-28.897,5.994c-14.863,1.376-28.394,8.499-42.334,13.707c-4.936,1.844-9.725,4.354-14.845,5.428
c-5.235,1.097-10.349,2.56-15.062,4.81c-13.15,6.279-26.253,12.652-38.763,20.234c-13.883,8.414-28.791,15.074-41.734,25.128
c-8.578,6.664-18.061,12.189-25.816,19.892c-8.233,8.176-14.152,18.242-21.578,27.101c-3.973,4.739-14.419,9.163-15.216,15.786
L566.963,765.195z M1224.966,1038.298"/>
<path fill="#DEC4A1" d="M709.928,1543.104c-1.339-6.541-3.562-13.058-6.73-19.188c-6.77-13.085-11.442-20.057-21.606-31.742
c-10.071-11.58-30.551-22.755-40.496-4.791c-2.789,5.038,0.336,16.507,6.766,18.643c2.434,0.809,4.263,2.85,5.42,4.891
c7.937,14.001,14.791,28.445,16.413,44.872c-2.526-1.427-10.54-6.386-12.305-7.905c-15.603-13.429-49.729-49.427-70.05-23.907
c-19.465,24.445,32.468,36.432,46.997,41.033c11.351,3.595,19.574,12.109,27.644,20.454c5.377,5.56,8.282,12.888,13.765,18.621
c6.025,6.303,10.735,12.97,20.186,15.381c4.98,1.271,7.368-0.102,10.571-2.444c4.562-3.336,8.521-6.605,9.691-12.96
c1.956-10.621,2.568-26.621-0.106-37.212C714.086,1558.928,711.577,1551.154,709.928,1543.104z"/>
<path fill="#DEC4A1" d="M1201.145,1662.795c-6.769,3.366-21.212,7.608-25.52,9.455c0.5,4.625-1.998,8.895-3.733,10.128
c-4.999,3.553-13.402,11.066-14.062,19.678s1.453,14.859,10.047,17.799c10.956,3.747,15.155,0.421,24.015-5.987
s13.181-13.409,20.472-20.551c3.063-3.001,6.317-4.836,9.899-6.514c2.802-1.312,10.023,1.046,9.404,2.662
c-1.29,3.365,2.355,4.75,2.118,6.795c-0.32,2.764-4.297,2.963-5.875,5.283c-0.431,0.634-2.533,3.735-2.828,3.913
c7.586,14.544,30.586,34.211,50.923,41.514c2.108,1.512,4.68,1.789,7.311,2.185c13.687,2.846,21.618-9.092,21.776-13.177
c0.289-7.456-1.038-15.514-7.041-21.174c-10.518-9.916-17.895-17.061-39.047-28.916S1207.668,1674.333,1201.145,1662.795z"/>
<path fill="#FFFFFF" d="M778.618,823.844c-3.282-2.228-6.572-4.916-10.253-6.866c-9.082-4.814-18.151-8.003-29.048-9.111
c-8.095-0.823-19.9,1.818-26.951,4.94c-0.675,11.173,2.896,32.339,7.924,44.693c1.836,4.511,3.584,8.157,10.983,10.873
c6.703,2.46,9.404-2.586,8.592-5.475c-2.369-8.434-2.777-13.494-3.271-20.41c-0.303-4.231-0.186-16.363,1.479-20.291
c1.732-2.506,4.83-4.412,6.699,0.143c0.395,2.355-0.834,6.607-0.921,11.808c-0.187,11.113,1.42,25.981,6.779,36.212
c2.894,5.524,6.127,8.884,17.155,5.728c5.548-1.588,3.463-16.02,3.421-17.808c-0.143-6.146-0.056-10.646,0.8-16.76
C773.333,832.036,778.031,823.445,778.618,823.844z"/>
<path fill="#CC526B" d="M768.684,943.508c-0.903,5.402,0.361,14.429,4.713,17.779c9.07,6.982,20.103,12.88,29.524,18.027
c8.024,4.384,8.188,4.732,13.297,3.686c7.633-1.563,27.449-6.999,34.061-22.857C831,929,808.277,910.227,781.939,902.418
c-8.758-2.596-18.089-3.266-26.557-1.089c-22.049,5.67-28.074,28.458-29.714,36.416c-1.438,6.976-2.051,18.764,3.425,25.141
c0.823,0.958,0.557,2.464-0.164,3.746c-1.676,2.983-8.347,3.38-11.048,0.409c-3.141-3.454-4.179-13.591-4.308-17.42
c-0.672-19.954,4.313-28.954,8.498-36.53c-6.789-4.49-13.835-0.09-16.864,3.964c-6.483,8.678-12.399,16.775-13.856,27.998
c-1.496,11.521-3.25,24.244,1.859,35.303c2.137,4.625,4.43,10.949,9.521,13.276c11.264,5.149,23.194,8.274,35.851,3.734
c10.719-3.844,19.181-15.09,18.54-27.231c-0.525-9.943-1.458-29.294-1.144-31.269c1.249-7.841,5.51-11.295,12.528-10.936
c3.893,0.199,4.497,3.192,3.272,5.017C769.52,936.316,769.301,939.814,768.684,943.508z"/>
<path fill="#9CCFF3" d="M742.926,411.323c5.714-2.039,10.042-6.192,15.398-8.309c4.12-1.628,4.512-4.111,2.466-7.613
c-2.375-4.064-1.594-7.956,0.951-11.604c1.389-1.992,2.032-4.049,1.167-6.463c1.515-0.266,3.514-0.059,3.938-0.778
c3.108-5.283,6.646-1.24,9.665-0.359c4.751,1.386,4.331,6.723,6.467,10.152c1.352,2.171,2.403,3.487,5.259,2.029
c6.837-3.491,13.824-6.688,20.927-10.087c-0.592-4.657-4.498-7.399-6.53-11.179c-3.894-7.242-8.256-14.62-16.688-17.489
c-4.218-1.436-8.604-3.253-13.251-2.535c-7.161,1.105-14.003,2.5-20.5,6.646c-5.85,3.734-8.782,9.259-11.965,14.476
c-4.587,7.519-3.769,16.495-3.068,24.925C737.68,399.374,738.988,405.721,742.926,411.323z"/>
<g>
<path fill="#DEC4A1" d="M529.915,932.69c-27.672-17.37-25.052-23.147-31.998-85.805c-4.139-37.339-77.102-29.961-79.35,11.635
c-1.885,34.918,19.701,122.813,111.347,146.426"/>
<path d="M525.451,939.694c0,0-0.346-0.193-1.016-0.566c-0.67-0.374-1.642-0.904-3.049-1.736c-0.693-0.399-1.46-0.854-2.293-1.37
c-0.836-0.5-1.752-1.078-2.746-1.733c-1.987-1.303-4.272-2.906-6.805-5.097c-2.511-2.169-5.304-5-7.727-8.623
c-1.241-1.791-2.292-3.764-3.302-5.808c-0.93-2.04-1.818-4.18-2.509-6.322c-1.446-4.316-2.494-8.725-3.339-13.229
c-0.859-4.508-1.586-9.129-2.296-13.9c-0.722-4.77-1.382-9.684-2.043-14.755c-0.679-5.05-1.38-10.272-2.102-15.64
c-0.092-0.669-0.184-1.34-0.277-2.014l-0.069-0.505l-0.017-0.126c-0.016-0.123,0.076,0.622,0.027,0.246l-0.043-0.253l-0.173-1.017
c-0.063-0.441-0.105-0.444-0.142-0.562c-0.038-0.105-0.065-0.206-0.093-0.319c-0.138-0.331-0.202-0.699-0.347-1.014
c-0.492-1.314-1.158-2.443-2.062-3.477c-1.771-2.052-4.698-3.869-8.567-4.961c-3.85-1.071-8.422-1.468-13.062-1.064
c-4.639,0.399-9.366,1.583-13.586,3.487c-4.239,1.88-7.914,4.514-10.589,7.476c-2.688,2.991-4.258,6.306-4.895,10.022
c-0.062,0.472-0.137,0.941-0.18,1.424l-0.054,0.729l-0.016,0.182c0.001-0.036-0.013,0.208,0-0.057l-0.006,0.148l-0.023,0.592
l-0.023,0.592l-0.015,0.525l-0.013,0.885l0.007,1.984c0.05,2.71,0.227,5.495,0.509,8.293c0.545,5.605,1.484,11.268,2.749,16.822
c2.505,11.132,6.342,21.824,10.945,31.668c4.61,9.855,10.153,18.814,16.229,26.62c6.034,7.843,12.582,14.563,19.193,20.094
c6.583,5.571,13.196,9.994,19.31,13.508c6.138,3.48,11.745,6.129,16.483,8.061c4.733,1.95,8.569,3.253,11.188,4.132
c2.644,0.821,4.053,1.259,4.053,1.259l-5.489,21.305c0,0-1.64-0.394-4.715-1.131c-3.059-0.816-7.567-1.983-13.191-3.938
c-5.613-1.969-12.365-4.665-19.812-8.471c-7.405-3.866-15.548-8.782-23.686-15.189c-8.133-6.399-16.253-14.241-23.753-23.41
c-7.449-9.207-14.223-19.743-19.875-31.266c-5.664-11.523-10.121-24.044-13.207-37.174c-1.532-6.573-2.727-13.302-3.414-20.234
c-0.33-3.469-0.54-6.988-0.583-10.594l0.007-2.754l0.036-1.485l0.05-1.251l0.027-0.592l0.061-0.909l0.138-1.634
c0.11-1.089,0.274-2.185,0.448-3.274c0.78-4.358,2.138-8.705,4.159-12.688c1.983-4.006,4.544-7.647,7.437-10.824
c5.803-6.382,12.843-10.817,20.028-13.829c7.215-3.021,14.688-4.676,22.21-5.154c7.519-0.472,15.157,0.263,22.632,2.734
c3.731,1.252,7.421,2.927,10.899,5.214c3.473,2.256,6.729,5.155,9.39,8.575c1.352,1.692,2.494,3.555,3.517,5.445
c0.975,1.916,1.822,3.884,2.433,5.878c0.338,0.994,0.56,1.992,0.814,2.988l0.329,1.712c0.1,0.56,0.216,1.229,0.231,1.472
l0.117,1.024l0.029,0.256l0.06,0.501l0.011,0.128l0.042,0.515c0.056,0.686,0.112,1.37,0.168,2.051
c0.876,10.898,1.681,21.188,2.354,30.51c0.723,9.274,1.526,17.685,2.995,23.851c0.351,1.568,0.798,2.917,1.233,4.207
c0.488,1.226,0.951,2.387,1.533,3.393c1.085,2.059,2.429,3.821,3.947,5.433c1.489,1.614,3.139,3.016,4.607,4.264
c0.734,0.622,1.439,1.195,2.113,1.714c0.66,0.528,1.268,0.993,1.817,1.402c1.058,0.813,2.01,1.492,2.631,1.941
s0.942,0.681,0.942,0.681L525.451,939.694z"/>
</g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#DEC4A1" d="M1156.371,1652.27c9.488,44.358-17.589,60.018,5.851,86.468
c18.09,20.413,49.919,16.919,84.644,29.016c31.939,11.127,48.138,7.08,60.602-11.964c32.262-49.293-73.978-104.722-80.711-125.977
"/>
<path d="M1166.687,1650.174c0,0,0.116,0.385,0.34,1.131c0.212,0.66,0.565,2.047,0.97,3.697c0.762,3.253,1.804,8.115,2.254,14.482
c0.219,3.177,0.352,6.727,0.179,10.555c-0.165,3.822-0.563,7.931-1.166,12.133c-0.614,4.191-1.482,8.479-2.18,12.539
c-0.68,4.059-1.221,7.834-1.082,10.817c0.133,3.018,0.822,5.206,2.309,7.979c0.76,1.368,1.774,2.822,3.021,4.341
c0.313,0.38,0.626,0.764,0.973,1.148l0.253,0.29l0.127,0.145c0.078,0.089-0.48-0.527-0.202-0.222l0.088,0.092l0.699,0.736
c1.146,1.242,1.339,1.287,1.986,1.905c1.389,1.215,2.959,2.292,4.629,3.45c1.675,1.154,3.505,2.341,5.531,3.546
c4.072,2.393,8.938,4.806,14.42,6.408c2.734,0.824,5.592,1.462,8.55,1.999c2.954,0.56,5.979,1.089,9.067,1.598
c3.13,0.514,6.279,1.029,9.444,1.548c3.199,0.563,6.453,1.092,9.739,1.728c3.288,0.645,6.616,1.294,9.955,2.121
c0.836,0.189,1.67,0.411,2.507,0.628l2.365,0.61l2.312,0.622l2.073,0.509c5.597,1.312,11.23,2.392,16.191,2.539
c2.479,0.093,4.781-0.092,6.769-0.49c2.009-0.379,3.62-1.047,5.019-1.773c1.38-0.783,2.573-1.626,3.82-2.776l0.467-0.431
c0.155-0.16,0.305-0.326,0.467-0.477c0.325-0.284,0.638-0.669,0.965-0.991c0.639-0.728,1.287-1.491,1.944-2.356
c0.329-0.42,0.656-0.862,0.979-1.336c0.329-0.446,0.647-0.946,0.97-1.436l0.242-0.366c0.049-0.074-0.226,0.35-0.072,0.109
l0.077-0.125l0.154-0.251l0.307-0.501l0.139-0.229l0.054-0.107l0.552-1.053c0.797-1.619,1.304-3.173,1.641-4.703
c0.618-3.042,0.545-6.242-0.403-10.032c-0.903-3.768-2.68-7.917-4.953-12.053c-2.271-4.146-5.081-8.242-8.104-12.167
c-6.091-7.854-13.048-14.953-19.629-21.489c-6.634-6.513-12.933-12.534-18.458-18.131c-5.543-5.583-10.326-10.732-14.176-15.341
c-1.926-2.304-3.628-4.465-5.064-6.51c-0.722-1.018-1.384-1.998-1.984-2.94c-0.58-0.951-1.229-1.79-1.387-2.873
c-0.358-2.13,0.518-4.549,1.814-6.176c0.303-0.402,0.573-0.748,0.91-1.065c0.324-0.312,0.542-0.544,0.839-0.764
c0.54-0.417,0.822-0.604,0.822-0.604s0.349,0.003,1.018-0.043c0.293-0.02,0.658-0.044,1.095-0.073
c0.374-0.036,0.81-0.077,1.305-0.123c1.933-0.214,3.889-0.587,5.259-0.261c0.701,0.148,1.06,0.65,1.648,1.127
c0.566,0.487,1.224,1.029,1.971,1.618c1.5,1.17,3.339,2.549,5.495,4.084c4.312,3.078,9.863,6.793,16.233,11.298
c6.38,4.502,13.583,9.797,21.24,16.131c7.669,6.337,15.861,13.591,24.096,22.472c4.114,4.45,8.223,9.342,12.069,15.008
c3.825,5.663,7.382,12.189,9.729,20.003c1.134,3.901,1.965,8.131,2.181,12.573c0.234,4.435-0.123,9.072-1.159,13.566
c-1.008,4.503-2.698,8.819-4.788,12.742l-0.805,1.451c-0.277,0.491-0.626,1.062-0.942,1.585l-0.417,0.669l-0.321,0.492
l-0.472,0.726l-0.418,0.608c-0.558,0.811-1.11,1.619-1.726,2.432c-0.587,0.811-1.214,1.621-1.872,2.43
c-2.593,3.22-5.696,6.438-9.444,9.241c-0.907,0.715-1.925,1.365-2.896,2.029c-1.024,0.628-2.035,1.256-3.119,1.804
c-2.12,1.152-4.38,2.087-6.656,2.866c-4.572,1.519-9.258,2.262-13.628,2.391c-4.39,0.15-8.518-0.212-12.407-0.785
c-7.791-1.205-14.634-3.318-21.208-5.795l-2.48-0.952l-2.214-0.91l-0.648-0.262l-0.503-0.216l-1.005-0.433
c-0.671-0.288-1.339-0.582-2.022-0.851c-2.705-1.12-5.483-2.148-8.29-3.114c-5.636-1.9-11.462-3.466-17.411-4.792
c-2.977-0.67-5.987-1.285-9.02-1.892c-3.028-0.626-6.104-1.198-9.23-1.681c-6.236-0.995-12.801-1.712-19.467-3.612
c-3.326-0.975-6.652-2.292-9.836-4.017c-3.18-1.729-6.198-3.869-8.93-6.309c-1.385-1.235-3.221-3.03-3.893-3.805l-0.692-0.743
l-0.459-0.501l-0.204-0.238l-0.408-0.477c-0.544-0.625-1.076-1.284-1.604-1.944c-2.102-2.648-4.058-5.573-5.73-8.777
c-1.675-3.195-3.032-6.708-3.847-10.299c-0.847-3.583-1.17-7.179-1.146-10.479c0.077-6.645,1.278-11.981,2.36-16.483
c1.11-4.508,2.118-8.314,2.916-11.802c1.662-6.914,2.356-12.638,2.6-17.51c0.104-2.424,0.112-4.605,0.067-6.518
c-0.057-1.911-0.17-3.547-0.261-4.882c-0.099-1.309-0.168-2.186-0.275-3.043c-0.085-0.774-0.129-1.174-0.129-1.174
L1166.687,1650.174z"/>
</g>
</g>
<g id="lines">
<g>
<circle fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" cx="1045.878" cy="674.718" r="144.634"/>
<path d="M1201.131,674.987c0,0-0.029,0.887-0.086,2.605c-0.028,0.859-0.063,1.927-0.105,3.195
c-0.031,0.654-0.021,1.275-0.09,2.096c-0.064,0.811-0.134,1.677-0.207,2.597c-0.169,1.822-0.275,3.931-0.56,6.11
c-0.297,2.174-0.591,4.551-0.976,7.108c-0.489,2.542-0.935,5.288-1.571,8.185c-0.343,1.443-0.697,2.931-1.062,4.463
c-0.188,0.765-0.358,1.545-0.569,2.327c-0.227,0.778-0.456,1.567-0.688,2.366c-0.47,1.597-0.952,3.236-1.447,4.918
c-0.573,1.656-1.16,3.354-1.762,5.091c-0.568,1.75-1.297,3.485-2.013,5.269c-0.729,1.779-1.414,3.622-2.289,5.427
c-3.228,7.338-7.399,14.972-12.54,22.657c-5.143,7.681-11.304,15.396-18.578,22.764c-7.267,7.365-15.604,14.446-25.089,20.682
c-9.474,6.249-20.062,11.636-31.485,15.984c-11.43,4.343-23.824,7.277-36.715,8.776c-1.607,0.235-3.233,0.325-4.862,0.453
c-1.629,0.118-3.262,0.256-4.902,0.353c-1.643,0.041-3.29,0.082-4.943,0.123l-2.483,0.058c0.107,0.004-0.497,0.004-0.54,0.001
l-0.293-0.006l-0.586-0.012l-1.173-0.024c-1.564-0.033-3.135-0.065-4.709-0.099c-0.751,0.004-1.688-0.097-2.528-0.144
l-2.593-0.182c-3.514-0.181-6.82-0.672-10.216-1.077c-6.738-1.026-13.532-2.323-20.218-4.294
c-3.378-0.868-6.667-2.077-10.01-3.171c-1.651-0.604-3.285-1.266-4.934-1.9l-2.471-0.967l-2.427-1.083
c-13.012-5.672-25.404-13.337-36.653-22.662c-5.642-4.648-10.894-9.817-15.895-15.257c-4.993-5.456-9.536-11.36-13.766-17.513
c-4.209-6.174-7.881-12.738-11.201-19.496c-3.301-6.774-5.985-13.861-8.295-21.076c-2.281-7.232-3.897-14.673-5.133-22.176
l-0.762-5.655c-0.279-1.883-0.355-3.787-0.54-5.681c-0.164-1.896-0.332-3.793-0.36-5.696l-0.181-5.976l0.092-5.324l0.023-1.331
c0.005-0.439,0.011-0.879,0.052-1.389l0.194-2.948l0.202-2.949c0.062-0.989,0.136-1.968,0.263-2.901l0.679-5.677
c1.126-7.536,2.636-15.027,4.818-22.324c2.211-7.28,4.804-14.447,8.024-21.315c3.239-6.851,6.841-13.521,10.993-19.812
c16.444-25.313,40.273-44.977,66.542-56.713l2.454-1.118l2.498-1.002c1.667-0.658,3.321-1.343,4.992-1.969
c3.383-1.139,6.715-2.392,10.137-3.303c6.775-2.057,13.668-3.433,20.511-4.531c3.438-0.44,6.851-0.967,10.273-1.171
c1.709-0.124,3.411-0.303,5.112-0.374c1.702-0.051,3.399-0.101,5.092-0.151l1.269-0.036l0.633-0.018l0.317-0.008
c0.043-0.007,0.773,0.01,0.602,0.007l2.337,0.061c1.555,0.041,3.105,0.082,4.65,0.122c1.675,0.098,3.442,0.244,5.15,0.369
c1.716,0.136,3.461,0.241,5.069,0.479c13.115,1.549,25.723,4.56,37.343,8.998c11.644,4.388,22.289,10.122,31.837,16.547
c9.543,6.452,17.914,13.723,25.158,21.287c7.232,7.584,13.318,15.487,18.372,23.325c5.052,7.841,9.112,15.604,12.239,23.04
c0.853,1.828,1.516,3.691,2.223,5.49c0.693,1.804,1.4,3.558,1.946,5.325c0.579,1.754,1.145,3.468,1.696,5.14
c0.473,1.696,0.934,3.349,1.382,4.959c3.496,12.919,4.576,23.427,4.99,30.544c0.309,3.562,0.23,6.303,0.297,8.145
c0.031,1.843,0.048,2.795,0.048,2.795L1201.131,674.987z M1179.889,674.718c0,0-0.028-0.823-0.084-2.417
c-0.089-1.592-0.041-3.965-0.366-7.034c-0.448-6.139-1.521-15.175-4.701-26.216c-0.405-1.376-0.821-2.79-1.248-4.239
c-0.496-1.426-1.006-2.888-1.527-4.385c-0.484-1.51-1.122-3.002-1.741-4.539c-0.632-1.531-1.213-3.123-1.977-4.675
c-2.783-6.325-6.397-12.9-10.841-19.523c-4.447-6.62-9.773-13.271-16.061-19.623c-6.279-6.349-13.478-12.459-21.664-17.826
c-8.177-5.379-17.307-10-27.14-13.75c-9.84-3.745-20.51-6.252-31.622-7.552c-1.411-0.212-2.727-0.271-4.071-0.379
c-1.353-0.102-2.709-0.205-4.069-0.308c-1.545-0.038-3.096-0.075-4.65-0.113l-2.337-0.057l-1.866,0.042
c-1.438,0.029-2.879,0.058-4.325,0.087c-1.445,0.045-2.889,0.194-4.34,0.284c-2.908,0.135-5.801,0.576-8.721,0.913
c-5.806,0.89-11.661,1.986-17.417,3.69c-2.911,0.734-5.738,1.792-8.622,2.72c-1.422,0.52-2.827,1.094-4.248,1.638l-2.13,0.827
l-2.09,0.937c-11.213,4.874-21.901,11.481-31.617,19.519c-4.875,4.005-9.402,8.473-13.728,13.16
c-4.317,4.702-8.235,9.8-11.897,15.099c-3.641,5.321-6.803,10.983-9.68,16.802c-2.858,5.835-5.165,11.944-7.172,18.157
c-1.978,6.229-3.365,12.645-4.449,19.115l-0.663,4.88c-0.13,0.824-0.199,1.613-0.257,2.395l-0.202,2.359l-0.21,2.36
c-0.044,0.374-0.057,0.821-0.07,1.269l-0.044,1.331l-0.177,5.322l0.088,4.671c-0.01,1.649,0.116,3.291,0.233,4.933
c0.137,1.64,0.162,3.292,0.384,4.922l0.58,4.902c0.974,6.503,2.255,12.968,4.134,19.263c1.908,6.278,4.124,12.467,6.9,18.396
c2.795,5.912,5.887,11.682,9.472,17.119c14.176,21.896,34.804,38.917,57.471,49.06l2.117,0.972l2.157,0.861
c1.44,0.567,2.865,1.164,4.308,1.707c2.923,0.972,5.792,2.075,8.749,2.852c5.845,1.79,11.798,2.964,17.708,3.926
c2.964,0.373,5.962,0.849,8.78,1.007l2.138,0.178c0.736,0.048,1.367,0.148,2.192,0.153c1.574,0.047,3.144,0.093,4.708,0.14
l1.173,0.035l0.585,0.018l0.293,0.008c0.151,0.006-0.258-0.008,0.045-0.006l2.189-0.06c1.457-0.038,2.909-0.075,4.357-0.112
c1.443-0.108,2.883-0.216,4.316-0.324c1.434-0.115,2.866-0.189,4.279-0.405c11.337-1.349,22.22-3.934,32.25-7.774
c10.053-3.79,19.241-8.757,27.492-14.313c8.244-5.583,15.476-11.884,21.733-18.43c6.244-6.568,11.496-13.407,15.854-20.184
c4.355-6.78,7.857-13.484,10.54-19.905c0.742-1.575,1.301-3.188,1.911-4.739c0.597-1.557,1.213-3.068,1.675-4.595
c0.499-1.514,0.986-2.992,1.462-4.434c0.404-1.463,0.798-2.891,1.182-4.28c0.192-0.694,0.382-1.38,0.568-2.056
c0.172-0.679,0.306-1.359,0.458-2.023c0.295-1.33,0.583-2.623,0.861-3.875c0.512-2.515,0.852-4.899,1.25-7.101
c0.269-2.222,0.518-4.278,0.746-6.162c0.219-1.88,0.255-3.491,0.382-4.983c0.053-0.739,0.103-1.436,0.149-2.088
c0.052-0.643,0.035-1.393,0.056-2.007c0.021-1.269,0.041-2.336,0.056-3.196c0.03-1.719,0.046-2.607,0.046-2.607L1179.889,674.718z
"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1163.004,1880.964c-0.17-0.495-0.34-0.99-0.529-1.543
c0.487-0.036,0.972-0.2,1.084-0.062c4.911,6.065,13.009,7.032,18.801,11.921c5.663,4.78,12.361,8.333,18.604,12.428
c0.277,0.183,0.768,0.405,0.763,0.601c-0.146,6.629,5.759,5.22,9.229,7.261c6.384,3.758,13.226,7.408,18.16,12.702
c2.884,3.095,5.974,4.67,9.239,6.681c4.534,2.791,7.591,7.461,12.246,10.183c0.823,0.481,1.559,1.114,2.305,1.655
c-3.03,1.458-4.484,4.831-7.764,6.391c-3.375,1.605-6.693,1.642-9.254-0.144c-9.095-6.34-19.184-10.891-28.842-16.126
c-13.322-7.223-26.42-14.872-39.903-21.829c-6.942-3.582-13.64-7.909-20.159-12.443c-7.105-4.941-14.842-9.056-22.625-13.004
c-11.38-5.772-22.046-12.794-32.911-19.475c-6.625-4.073-13.587-7.678-20.711-11.002c-11.151-5.202-23.222-8.462-33.378-15.951
c-2.6-1.917-6.121-3.152-10.145-3.65c-4.074-0.504-8.939-3.666-13.316-5.956c-6.157-3.223-12.496-6.119-19.133-8.43
c-4.693-1.633-8.762-4.972-13.298-7.158c-10.544-5.084-21.118-10.122-31.834-14.825c-13.056-5.729-25.967-11.773-38.979-17.581
c-13.74-6.133-27.423-12.394-41.171-18.508c-13.029-5.795-26.001-11.708-39.011-17.529c-6.27-2.806-12.535-5.674-18.815-8.501
c-1.299-5.482-2.471-10.966,3.339-14.919c1.332-0.906,2.478-1.184,4.275-0.976c8.658,1.004,16.636,3.859,24.815,6.789
c10.639,3.811,21.227,7.844,31.907,11.57c6.938,2.421,13.412,6.256,20.233,9.198c6.872,2.963,13.746,5.887,20.709,8.638
c9.193,3.632,18.214,7.699,27.352,11.475c13.459,5.562,26.803,11.456,40.505,16.347c6.102,2.178,11.575,6.524,18.526,6.19
c1.097,4.073,5.126,2.913,7.735,4.134c14.537,6.804,29.395,12.939,43.809,19.986c12.224,5.977,24.619,11.678,36.264,18.809
c12.79,7.832,25.844,15.258,38.355,23.51c5.083,3.354,10.979,5.532,15.299,10.343c1.079,1.202,4.369,2.163,6.686,2.992
C1156.692,1873.024,1158.164,1878.717,1163.004,1880.964z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M619.25,1709.522c3.784-1.292,7.062-2.523,9.695-5.185
c2.479-2.505,6.34-1.912,9.284-3.523c2.252-1.233,1.371,2.128,2.913,2.019c8.5-0.599,15.833,3.207,23.255,6.416
c11.012,4.761,22.833,6.815,34.113,10.621c15.946,5.379,31.817,10.988,47.64,16.725c14.94,5.417,29.926,10.76,44.609,16.819
c11.766,4.856,24.038,8.637,35.393,14.148c8.834,4.289,17.931,8.076,26.775,12.338c11.215,5.404,21.918,11.833,33.551,16.463
c6.668,2.654,12.502,7.341,19.068,10.33c7.601,3.461,14.859,7.505,22.252,11.331c2.93,1.517,5.017,3.879,6.869,6.258
c1.236,1.588,2.425,2.996,4.139,3.81c6.425,3.05,12.211,7.523,19.538,8.608c1.602,0.237,0.535-1.865,2.724-1.194
c4.155,4.957,10.681,8.101,16.961,11.418c3.886,2.052,8.711,2.453,12.039,5.64c2.332,2.232,4.84,4.71,6.055,7.59
c2.283,5.415-2.125,10.582-7.986,11.125c-8.716,0.807-14.966-4.529-21.959-7.971c-6.731-3.312-12.854-7.83-20.822-8.304
c-2.702-0.16-5.161-2.274-7.683-3.661c-7.396-4.066-15.163-7.453-22.724-11.229c-6.283-3.139-12.627-6.145-18.96-9.172
c-10.693-5.111-21.857-9.416-32.075-15.271c-11.102-6.361-23.431-9.65-34.534-15.82c-4.72-2.623-10.509-3.445-14.988-6.354
c-7.461-4.845-16.215-5.46-24.157-8.665c-9.393-3.79-19.053-7.139-28.387-10.991c-8.29-3.422-17.25-5.196-24.993-9.833
c-2.123-1.271-4.168-0.593-6.221-1.001c-8.231-1.638-15.511-5.849-23.399-8.381c-6.519-2.093-12.231-6.507-19.494-6.524
c-2.291-0.006-3.953-2.096-5.906-3.124c-5.69-2.996-12.841-2.423-17.652-7.392c-0.371-0.383-1.254-0.236-1.875-0.416
c-4.093-1.185-8.436-1.137-11.653-5.144c-2.714-3.38-7.894-2.628-11.543-2.52c-6.983,0.208-11.146-5.358-17.211-6.587
c-0.681-0.138-1.739-2.313-1.438-2.784C622.903,1716.326,619.336,1713.289,619.25,1709.522z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1327.856,1908.28c-1.001,1.488-4.224,2.646-1.832,5.484
c-1.458,3.727-6.858-1.732-7.353,4.209c-10.312-5.682-21.021-9.402-30.312-15.992c-2.726-1.934-6.006-3.073-8.997-4.645
c-14.52-7.628-29.254-14.884-43.486-23.018c-19.586-11.194-39.952-20.847-60.243-30.568c-9.515-4.558-18.878-9.645-28.778-13.375
c-9.364-3.528-17.741-9.134-27.001-12.652c-11.327-4.305-21.51-10.925-32.719-15.262c-9.636-3.729-18.4-9.172-27.909-13.007
c-5.363-2.162-10.466-4.849-15.797-6.967c-4.26-1.693-6.687-5.046-6.728-8.64c-0.075-6.429,1.884-12.894,8.171-16.138
c2.348-1.213,6.145-0.887,8.611,0.678c7.805,4.952,16.584,7.814,24.899,11.542c5.918,2.653,12.402,4.56,18.134,7.589
c14.822,7.832,30.173,14.522,45.381,21.466c13.296,6.071,25.912,13.384,39.078,19.658c10.387,4.95,20.26,11.033,30.806,15.579
c11.317,4.878,21.487,11.815,32.671,16.892c4.317,1.96,7.796,5.757,12.105,7.747c8.621,3.981,16.16,9.771,24.614,14.016
c2.812,1.411,5.865,2.822,7.435,6.409c0.706,1.613,3.656,3.06,5.683,3.874c8.269,3.327,15.724,7.991,22.794,13.236
C1321.254,1899.49,1325.914,1902.343,1327.856,1908.28z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1427.377,1476.091c-1.926-7.447,2.426-14.321,2.996-21.863
c4.384,0.23,7.269-4.109,11.883-5.097c3.292-0.705,6.342-1.855,9.931-2.286c15.083-1.813,28.957,2.019,42.766,7.088
c6.271,2.303,12.23,5.346,18.374,7.935c6.525,2.75,12.443,7.076,18.33,11.144c2.781,1.923,6.032,2.37,8.892,4.085
c4.071,2.442,7.326,5.96,11.607,8.052c5.96,2.913,11.177,7.1,17.197,9.997c1.999,0.961,3.196,3.461,5.641,4.84
c2.649,1.496,5.564,3.106,8.646,5.81c-5.07,0.053-5.107,9.496-11.656,5.076c-2.927,0.218,0.521,2.994-1.832,3.382
c-2.702,0.444-5.256-0.551-7.16-1.959c-3.111-2.297-6.38-2.723-9.966-2.627c-0.542,0.015-1.247-0.217-1.618-0.591
c-3.584-3.614-8.988-4.25-12.616-7.76c-0.703-0.68-1.454-0.9-2.459-0.939c-6.161-0.238-11.399-3.189-16.771-5.797
c-5.184-2.517-10.082-5.839-16.232-5.75c-6.977,0.104-12.884-3.859-19.474-5.331c-6.482-1.447-12.76-4.346-19.276-4.932
c-4.41-0.396-8.958,0.362-13.642-0.105C1443.306,1477.696,1435.626,1477.073,1427.377,1476.091z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1580.713,1281.174c-1.196,1.801-3.201,2.482-3.403,4.459
c2.67,2.964,5.148,6.106,9.127,8.895c-4.99-0.208-8.924-0.674-12.62-2.58c-1.137-0.587-2.609-1.177-3.93-0.44
c-4.558,2.543-9.115,0.576-13.349-0.503c-8.16-2.079-15.684-6.649-24.441-6.442c-5.826,0.138-10.699-2.99-16.046-4.263
c-6.108-1.452-12.184-3.537-18.853-2.815c-5.997,0.647-11.697-2.817-17.896-2.646c-4.372,0.12-8.783-0.554-13.106,0.494
c-5.259,1.273-10.538,0.805-15.787,0.242c-6.427-0.688-10.077-5.442-12.867-10.418c-1.791-3.191,1.787-6.254,3.589-8.074
c4.854-4.902,9.4-10.67,16.644-12.436c6.922-1.686,13.738-3.263,21.098-1.437c6.577,1.632,13.452,2.071,20.09,3.694
c8.158,1.994,16.047,4.705,23.978,7.482c8.47,2.969,15.188,8.925,23.999,11.549c7.112,2.12,13.919,6.565,20.859,9.988
C1571.836,1277.914,1575.999,1279.489,1580.713,1281.174z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1588,1388.891c-1.178,1.65-2.879-1.609-4.159,0.971
c5.234,0.707,3.067,5.534,2.301,6.876c-1.217,2.135-3.591,5.142-7.766,2.951c-6.269-3.291-13.656-2.85-20.249-4.947
c-5.959-1.896-12.425-2.606-17.775-6.311c-0.426-0.296-1.171-0.082-1.731-0.235c-7.557-2.068-14.995-5.082-22.687-6.008
c-9.12-1.098-18.147-2.73-27.199-4.125c-7.609-1.174-15.015-3.701-22.491-5.7c-8.093-2.165-7.995-2.198-7.74-10.942
c0.124-4.269,1.882-6.652,5.915-8.553c3.305-1.557,6.072-3.877,9.841-5.145c4.597-1.545,8.48-0.74,12.876-0.376
c6.508,0.539,13.033,0.589,19.457,2.052c1.303,0.297,2.604,0.438,3.899,0.931c4.892,1.857,10.073,2.623,15.137,3.844
c3.108,0.749,6.076,2.05,8.052,4.972c1.881,2.78,5.413,2.226,8.076,3.51c8.368,4.036,15.961,9.451,24.205,13.621
c6.192,3.132,12.404,6.256,18.628,9.345C1586.159,1386.399,1587.146,1387.558,1588,1388.891z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M1152.201,686.256c-1.288,31.814-24.84,55.952-57.211,55.826
c-26.314-0.102-57.822-19.405-55.877-56.678c1.621-31.078,24.735-55.708,57.848-55.182
C1127.9,630.713,1150.847,653.419,1152.201,686.256z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M566.154,777.753c-32.521,136.797-29.339,222.344-27.842,338.62
c0.882,68.555,1.242,138.552,21.486,203.78c23.23,74.847,45.749,108.721,62.112,138.061c0.462,1.703,1.187,3.352,2.214,4.885
c5.473,8.168,11.207,16.16,17.135,24.01c-0.054,0.095-0.112,0.178-0.165,0.274c-2.789,5.038,0.336,16.507,6.766,18.643
c2.434,0.809,4.263,2.85,5.42,4.891c1.206,2.127,2.375,4.269,3.516,6.422c-13.056-6.329-26.021-12.838-38.754-19.793
c-3.701-4.135-20.16-27.196-24.401-34.203c-7.519-12.42-50.641-77.203-66.877-170.553C511.416,1204.551,511,1055,515.903,986.009
C519.12,940.752,527,839,548,756c0,0,31-116,100.438-243.018c3.427-7.093,9.05-12.397,13.281-18.693
c4.114-6.125,7.491-12.852,12.69-18.349c5.859-6.195,11.444-12.715,16.538-19.55c4.359-5.851,10.124-10.212,14.926-15.573
c3.123-3.487,7.147-6.205,10.931-9.052c3.826-2.88,5.27-7.022,3.396-10.85c-3.69-7.538-4.449-15.637-6.283-23.566
c-2.406-10.403,1.289-19.553,4.921-28.796c1.628-4.144,3.491-8.194,5.157-12.324c1.2-2.977,3.955-4.663,5.715-7.248
c7.969-11.699,19.62-19.253,32.64-23.262c6.964-2.145,15.273-4.058,22.745-2.216c6.27,1.547,12.249,4.905,18.393,7.197
c11.85,4.42,17.139,14.319,22.722,24.256c2.16,3.847,4.414,7.641,6.759,11.689c10.823-1.897,21.021-5.928,31.367-9.149
c10.602-3.3,21.458-5,32.19-7.419c11.017-2.481,22.165-4.385,33.274-6.438c5.42-1.002,10.862-2.291,16.333-2.513
c7.588-0.309,15.107-1.407,22.752-1.237c11.248,0.25,22.468-1.188,33.756-0.978c13.634,0.256,27.044,2.195,40.505,4
c9.873,1.324,19.901,1.604,29.713,3.235c8.039,1.337,16.122,2.783,23.881,5.698c4.224,1.587,8.948,1.797,13.396,2.842
c9.08,2.135,17.344,6.467,25.957,9.86c6.412,2.527,12.782,5.191,19.311,7.378c5.812,1.947,10.538,5.807,16.066,8.305
c9.54,4.31,18.781,9.312,28.189,13.943c4.089,2.012,8.214,4.215,12.089,6.844c4.698,3.187,10.062,5.399,15.158,7.992
c17.353,8.83,35.007,17.06,50.336,29.444c9.567,7.729,19.693,14.777,29.709,21.936c3.847,2.749,7.116,6.27,11.949,7.797
c2.805,0.886,4.817,0.643,6.529-1.227c5.279-5.766,12.253-9.491,17.675-15.19c2.791-2.934,7.57-3.982,11.461-5.863
c5.467-2.645,10.855-5.474,16.432-7.865c16.116-6.914,33.092-7.969,50.337-7.067c2.656,0.139,4.06,2.436,6.465,3.131
c6.44,1.861,12.897,3.816,19.083,6.374c13.505,5.585,23.133,15.382,30.238,28.111c2.303,4.126,4.458,8.443,7.729,12.191
c2.343,2.686,3.217,7.006,3.793,10.743c0.32,2.08,0.097,4.506,0.778,6.465c3.645,10.477,0.294,20.527-1.968,30.48
c-1.345,5.917-2.734,12.088-6.418,17.285c-7.593,10.712-15.777,20.78-25.57,29.73c-5.813,5.313-12.141,9.76-18.617,13.8
c-6.989,4.36-15.67,4.947-24.293,7.443c10.026,18.067,14.848,37.63,20.083,57.086c11.695,43.455,10.315,87.479,2.687,131.426
c-3.703,21.333-10.498,41.755-15.784,62.61c-4.298,16.951-8.657,33.903-13.706,50.64c-2.051,6.798-5.163,13.648-7.208,22.875
c-8.042,37.634-8.458,38.526-15.458,83.58s-8.46,99.273-9.53,111.152c-9.542,105.888,54.212,206.652,28.819,312.352
c-7.516,31.289-22.996,58.95-39.115,86.532c-19.864,33.992-41.135,59.8-67.743,88.357c-4.487,4.815-47.849,37.16-71.359,47.507
c0.55,0.28-9.544,5.359-10.412,5.653c-4.497,1.521-16.243,7.306-17.65,8.442c-7.289,2.854-17.125,5.839-20.552,7.308
c0.038,0.35-19.422,5.164-28.952,8.289c0.022-0.098,0.056-0.191,0.077-0.289c-10.916,1.955-25.249,4.96-36.031,4.624
c-10.441-0.325-20.663,2.809-31.035,2.021c-12.479-0.947-24.898,0.703-37.354,0.098c-5.466-0.266-10.46-3.551-15.832-2.875
c-12.423,1.562-24.404-2.32-36.714-2.502c-5.468-0.081-11.378-2.253-16.986-3.761c-13.113-3.525-26.478-5.825-39.686-8.859
c-15.525-3.565-30.94-7.723-46.593-10.587c-11.347-2.076-21.122-8.068-32.163-10.88c-13.465-3.429-26.563-8.298-39.828-12.519
c-10.018-3.188-53.31-22.877-71.008-30.805c-0.259-0.167-0.504-0.348-0.773-0.503c-8.152-4.708-16.569-10.587-25.043-14.654
c0.45-8.31,0.078-15.489-1.617-22.199c-0.55-2.179-1.14-4.347-1.738-6.512c7.868,5.151,15.94,10.006,24.104,14.668
c0.014,0.269,0.024,0.512,0.03,0.71c9.093,4.665,23.208,11.169,31.149,14.72c37.621,16.822,60.984,23.808,89.732,32.876
c88.135,27.801,192.271,53.292,284.155,31.408c107.762-25.666,189.723-118.769,223.012-221.814
c9.677-29.956,15.812-65.898,12.314-97.487c-3.922-35.415-19.731-70.911-24.318-106.706C1348.639,1182.771,1339,1117,1358,999.56
c8.018-49.557,15.433-75.958,15.433-75.958c5.492-22.955,24.954-93.999,28.774-106.914c6.738-22.781,9.729-46.659,12.268-70.068
c3.785-34.906-2.212-67.194-12.25-100.521c-5.111-16.97-11.52-34.596-19.637-50.796c-6.048-12.07-20.771-38.19-35.194-42.137
c-5.662-1.55-11.15-4.128-17.282-2.957c0.081-4.161,1.772-7.504,2.969-10.922c3.486-9.953,8.988-19.202,16.186-26.448
c7.321-7.371,15.793-14.014,26.383-17.465c4.729-1.541,9.66-3.331,14.34-3.953c4.811-0.639,9.465-2.112,14.354-2.507
c6.669-0.538,12.38,1.683,18.412,3.715c3.981,1.341,7.146,4.228,11.311,5.104c1.052,0.221,2.259,1.554,1.919,3.146
c-0.551,2.581,1.022,4.664,1.583,6.742c-14.098,2.012-28.69-2.699-42.359,3.55c1.564,3.861,3.241,7.862,7.083,8.562
c2.821,0.515,5.088,1.739,7.631,2.599c4.079,1.38,8.052,3.317,12.427,3.623c2.023,0.142,4.119,0.485,3.609,2.82
c-0.381,1.75-0.836,4.436-3.895,4.233c-4.129-0.272-8.271,1.054-12.243,0.814c-11.777-0.708-23.643,2.659-35.335-0.79
c-0.323-0.096-0.754,0.174-1.631,0.403c6.109,8.155,12.334,15.765,17.719,23.927c3.042,4.609,7.785,8.227,8.805,14.221
c0.198,1.169,1.219,4.062,3.006,3.243c3.287-1.505,6.795,0.006,10.012-1.622c5.016-2.54,10.546-3.823,15.755-5.999
c6.968-2.912,13.032-6.881,17.534-12.708c4.054-5.247,8.331-10.221,11.525-16.395c3.762-7.273,5.75-14.811,5.327-22.129
c-0.453-7.826-0.944-15.992-4.317-23.725c-3.477-7.968-8.013-15.263-13.791-21.252c-5.807-6.018-14.245-8.992-22.135-11.907
c-16.593-6.13-33.183-5.441-49.747,0.837c-14.856,5.63-27.283,14.703-38.575,25.598c-9.189,8.864-18.368,17.74-27.616,26.543
c-3.357,3.196-7.694,2.396-9.429-1.765c-0.681-1.632-2.046-2.586-3.03-4.208c2.512-4.942,4.644-9.708,8.119-13.735
c1.546-1.791,1.99-3.085-1.262-4.591c-7.831-3.625-14.487-9.194-21.061-14.787c-6.328-5.384-12.56-10.932-19.286-15.78
c-7.105-5.123-15.182-8.805-22.578-13.454c-4.426-2.781-9.137-5.194-13.43-8.352c-4.964-3.651-10.947-6.207-16.836-8.223
c-5.203-1.781-9.845-4.207-14.502-7.038c-5.89-3.58-11.856-7.608-18.209-9.778c-9.782-3.342-18.417-9.047-28.325-12.162
c-4.692-1.476-9.673-2.96-14.276-5.146c-4.09-1.942-8.876-2.681-12.574-5.128c-8.429-5.578-18.304-6.247-27.549-8.753
c-8.949-2.426-18.267-3.757-27.53-5.069c-7.93-1.123-15.63-4.298-23.558-4.897c-15.617-1.183-31.176-3.039-46.976-2.389
c-23.672,0.976-47.389-0.501-70.966,3.91c-9.652,1.806-18.898,5.068-28.897,5.994c-14.863,1.376-28.394,8.499-42.334,13.707
c-4.936,1.844-9.725,4.354-14.845,5.428c-5.235,1.097-10.349,2.56-15.062,4.81c-13.15,6.279-26.253,12.652-38.763,20.234
c-13.883,8.414-28.791,15.074-41.734,25.128c-8.578,6.664-18.061,12.189-25.816,19.892c-8.233,8.176-14.152,18.242-21.578,27.101
c-3.973,4.739-49.808,76.606-67.147,115.75C593.653,683.869,567.185,773.418,566.154,777.753z M788.236,388.379
c-2.855,1.458-3.907,0.142-5.259-2.029c-2.136-3.43-1.716-8.767-6.467-10.152c-3.019-0.881-6.557-4.924-9.665,0.359
c-0.424,0.72-2.423,0.513-3.938,0.778c0.865,2.414,0.222,4.471-1.167,6.463c-2.545,3.647-3.326,7.539-0.951,11.604
c2.046,3.502,1.654,5.985-2.466,7.613c-5.356,2.116-9.685,6.27-15.398,8.309c-3.938-5.603-5.246-11.949-5.765-18.188
c-0.7-8.43-1.519-17.406,3.068-24.925c3.183-5.217,6.115-10.741,11.965-14.476c6.497-4.146,13.339-5.541,20.5-6.646
c4.647-0.718,9.033,1.1,13.251,2.535c8.432,2.869,12.794,10.247,16.688,17.489c2.032,3.779,5.938,6.521,6.53,11.179
C802.061,381.691,795.073,384.888,788.236,388.379z"/>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M739.828,538.75c-43.924-50.237-151.387-6.642-178.755,46.777
c-31.119,60.741-23.094,142.966,14.1,157.996s109.41,2.651,144.575-39.161S778.828,593.75,739.828,538.75z"/>
<path d="M731.538,545.248c-0.214-0.237-0.488-0.541-0.822-0.911c-0.224-0.246-0.475-0.521-0.752-0.826
c-0.222-0.218-0.464-0.457-0.728-0.717c-0.261-0.264-0.543-0.548-0.846-0.853c-0.355-0.321-0.735-0.663-1.138-1.027
c-3.212-2.9-8.391-6.779-16.236-9.801c-7.805-3.042-18.349-5.005-30.876-4.596c-12.502,0.396-26.912,3.116-41.855,8.655
c-7.465,2.773-15.071,6.212-22.602,10.38c-3.765,2.084-7.509,4.351-11.196,6.81c-3.675,2.476-7.287,5.148-10.791,8.018
c-7.006,5.726-13.595,12.309-18.976,19.749c-0.692,0.919-1.303,1.879-1.963,2.819c-0.595,0.967-1.255,1.913-1.809,2.901
l-0.865,1.471l-0.803,1.496l-0.365,0.674l-0.429,0.866l-0.86,1.735c-0.508,1.084-1.018,2.17-1.528,3.259
c-0.496,1.125-1.017,2.24-1.488,3.383c-0.98,2.268-1.887,4.583-2.767,6.919c-3.491,9.359-6.196,19.226-8.058,29.375
c-1.814,10.156-2.805,20.596-2.776,31.064c0.012,10.458,1.06,20.974,3.446,31.002c1.183,5.012,2.733,9.884,4.667,14.469
c1.93,4.584,4.297,8.858,7.084,12.519c2.784,3.659,5.998,6.665,9.493,8.641c0.438,0.244,0.87,0.5,1.321,0.702
c0.441,0.229,0.889,0.435,1.345,0.613l0.338,0.145l0.169,0.073c-0.227-0.086,0.079,0.029,0.091,0.034l0.984,0.369
c0.719,0.281,1.138,0.398,1.678,0.588c2.208,0.737,4.623,1.392,7.027,1.913c9.708,2.093,20.113,2.516,30.358,1.852
c10.267-0.667,20.452-2.462,30.222-5.138c9.766-2.695,19.149-6.242,27.818-10.641c8.673-4.386,16.61-9.644,23.503-15.575
c3.448-2.965,6.612-6.123,9.466-9.426l1.012-1.184l1.172-1.429c0.788-0.963,1.401-1.746,2.118-2.658
c1.408-1.803,2.764-3.631,4.086-5.464c10.496-14.739,18.32-30.197,23.203-45.053c5.053-14.819,7.15-29.012,7.129-41.416
c-0.02-12.43-2.2-23.052-5.013-31.403c-2.803-8.375-6.102-14.553-8.528-18.639c-0.6-1.028-1.153-1.923-1.648-2.687
c-0.48-0.771-0.897-1.414-1.25-1.921C731.966,545.886,731.712,545.508,731.538,545.248z M748.4,532.671
c0,0,0.44,0.627,1.294,1.843c0.433,0.604,0.951,1.367,1.552,2.287c0.613,0.91,1.304,1.979,2.056,3.21
c3.029,4.891,7.211,12.351,10.852,22.564c3.652,10.177,6.569,23.197,6.876,38.174c0.357,14.958-2.028,31.749-7.6,48.916
c-2.835,8.568-6.441,17.232-10.845,25.831c-4.386,8.608-9.594,17.14-15.652,25.419c-1.52,2.066-3.079,4.126-4.699,6.163
c-0.801,1.003-1.718,2.139-2.497,3.072l-1.186,1.418l-1.411,1.624c-3.661,4.154-7.659,8.051-11.929,11.65
c-8.529,7.228-18.136,13.257-28.317,18.229c-10.195,4.961-20.996,8.875-32.187,11.683c-11.19,2.809-22.759,4.6-34.573,5.121
c-11.808,0.498-23.884-0.169-36.016-3.041c-3.045-0.735-6.028-1.597-9.114-2.696c-0.777-0.285-1.689-0.608-2.271-0.851
l-0.976-0.389l-0.396-0.161l-0.313-0.138l-0.625-0.277c-0.84-0.359-1.657-0.755-2.457-1.182c-0.815-0.403-1.589-0.863-2.365-1.322
c-6.205-3.71-11.162-8.74-15.063-14.077c-3.91-5.363-6.862-11.082-9.178-16.875c-2.313-5.8-4.04-11.688-5.315-17.587
c-2.553-11.804-3.458-23.632-3.36-35.271c0.118-11.645,1.361-23.112,3.495-34.261c2.123-11.151,5.168-21.99,9.104-32.335
c0.992-2.583,2.016-5.144,3.122-7.66c0.533-1.266,1.12-2.507,1.682-3.755c0.601-1.258,1.201-2.514,1.8-3.767l0.871-1.73
l0.435-0.863l0.547-1.028l1.022-1.899l1.081-1.846c0.705-1.242,1.499-2.4,2.245-3.598c0.797-1.149,1.56-2.328,2.388-3.437
c6.523-8.987,14.103-16.506,21.947-23.081c15.799-13.045,32.717-22.419,49.242-28.913c16.533-6.481,32.738-10.115,47.583-10.943
c14.835-0.896,28.281,1.235,38.868,5.095c10.633,3.826,18.217,9.187,22.855,13.217c0.583,0.508,1.131,0.986,1.646,1.435
c0.527,0.507,1.02,0.979,1.476,1.417c0.453,0.443,0.87,0.851,1.251,1.223c0.296,0.313,0.564,0.596,0.803,0.848l1.853,1.973
L748.4,532.671z"/>
</g>
<path fill-rule="evenodd" clip-rule="evenodd" d="M905.14,802.744c-2.582-35.901-42.694-58.693-77.114-65.635
c-9.529-1.922-16.36-3.148-28.927-4.068c-11.061-14.757-33.035-14.143-39.01-14.851c-5.733-0.679-18.421,0.977-23.768,6.11
c-2.979,0.121-5.886-0.715-8.948-1.846c0,0-11.179-1.981-21.494-2.876c-19.211-0.558-42.937,4.08-53.239,26.103
c-5.693,12.169-9.187,18.942-9.187,18.942c-0.682,2.654-1.668,5.754-2.258,8.928c-1.817,9.778,0.038,19.003,3.617,28.228
c2.212,5.7,4.894,10.738,9.763,14.362c7.677,5.716,14.234,7.131,24.019,5.332c0.431,7.771,3.126,14.997,5.475,22.281
c4.023,12.475,8.534,24.731,15.782,35.879c2.321,3.569,9.175,14.4,10.346,17.809c-2.125,0.905-14.18,1.528-22.159,13.57
C675.454,930,673.762,942.482,672.06,950.39c-6.443,29.944,8.864,50.771,26.45,59.609c16.676,8.381,53.49,12.001,66.973-17.643
c30.518,15.978,60.401,10.551,76.973,2.029c31.211-16.051,33.022-43.383,34.321-57.805c0.574-6.378-0.596-12.896-0.748-19.36
c-0.193-8.137-0.787-16.179,0.542-24.434C884.667,842.51,908,842.51,905.14,802.744z M816.218,982.999
c-5.108,1.047-5.273,0.698-13.297-3.686c-9.421-5.147-20.454-11.045-29.524-18.027c-4.352-3.35-5.617-12.376-4.713-17.779
c0.617-3.693,0.836-7.191,3.096-10.561c1.225-1.824,0.62-4.817-3.272-5.017c-7.019-0.359-11.279,3.095-12.528,10.936
c-0.314,1.975,0.618,21.325,1.144,31.269c0.642,12.141-7.821,23.387-18.54,27.231c-12.657,4.54-24.587,1.415-35.851-3.734
c-5.092-2.327-7.385-8.651-9.521-13.276c-5.109-11.06-3.355-23.782-1.859-35.303c1.457-11.223,7.373-19.32,13.856-27.998
c3.028-4.054,10.075-8.454,16.864-3.964c-4.184,7.576-9.17,16.576-8.498,36.53c0.129,3.829,1.167,13.966,4.308,17.42
c2.701,2.971,9.373,2.574,11.048-0.409c0.721-1.282,0.987-2.788,0.164-3.746c-5.477-6.377-4.863-18.165-3.425-25.141
c1.64-7.957,7.665-30.746,29.714-36.416c8.467-2.177,17.799-1.507,26.557,1.089C808.277,910.227,831,929,850.279,960.142
C843.667,976,823.851,981.436,816.218,982.999z M771.207,858.28c0.042,1.788,2.127,16.22-3.421,17.808
c-11.028,3.156-14.262-0.203-17.155-5.728c-5.359-10.231-6.966-25.099-6.779-36.212c0.087-5.201,1.316-9.453,0.921-11.808
c-1.869-4.555-4.966-2.648-6.699-0.143c-1.665,3.927-1.781,16.059-1.479,20.291c0.494,6.916,0.903,11.976,3.271,20.41
c0.812,2.889-1.89,7.936-8.592,5.475c-7.399-2.716-9.147-6.362-10.983-10.873c-5.028-12.354-8.599-33.52-7.924-44.693
c7.051-3.122,18.856-5.764,26.951-4.94c10.897,1.108,19.966,4.297,29.048,9.111c3.681,1.95,6.971,4.639,10.253,6.866
c-0.587-0.398-5.285,8.192-6.612,17.677C771.151,847.634,771.064,852.134,771.207,858.28z M814.963,827.914
c-16.997-7.168-28.298-15.038-43.5-25.062c-7.471-4.926-17.758-9.673-27.038-10.445c-10.78-0.896-19.626,0.209-29.819,4.487
c-8.495,3.565-15.8,7.32-25.12,8.526c-7.365,0.953-15.406-0.229-21.837-5.343c-6.186-4.918-8.265-12.169-7.376-19.166
c1.467-11.558,5.675-22.731,14.469-30.755c5.298-4.834,11.788-8.539,19.724-9.372c7.162-0.751,14.255-2.198,21.494-1.739
c3.84,0.243,7.65,0.944,11.854,1.488c-1.379,4.999-0.191,8.162,2.715,11.748c9.363,11.552,22.784,14.48,35.877,15.209
c11.11,0.618,29.803-1.512,33.576-16.052c16.985,4.086,39.037,10.53,53.982,20.61c13.106,8.84,22.33,20.729,22.856,37.017
C877.909,842.753,835.268,836.476,814.963,827.914z"/>
<path fill="#DEC4A1" d="M715.96,739.045c-7.239-0.459-14.332,0.988-21.494,1.739c-7.936,0.833-14.426,4.538-19.724,9.372
c-8.794,8.023-13.002,19.197-14.469,30.755c-0.889,6.997,1.19,14.248,7.376,19.166c6.431,5.114,14.472,6.296,21.837,5.343
c9.32-1.206,16.625-4.961,25.12-8.526c10.193-4.278,19.04-5.383,29.819-4.487c9.28,0.771,19.567,5.519,27.038,10.445
c15.202,10.024,26.503,17.894,43.5,25.062c20.304,8.562,54.538,20.254,64.691-16.014c4.394-15.693-12.584-34.98-25.691-43.82
c-14.945-10.08-36.997-12.555-53.982-16.641c-3.773,14.54-22.466,16.67-33.576,16.052c-13.093-0.729-26.514-3.657-35.877-15.209
c-2.906-3.586-4.094-6.749-2.715-11.748C723.61,739.989,719.8,739.288,715.96,739.045z"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M603.648,632.062c-9.976,26.899-31.919,42.476-53.093,35.243
c-17.214-5.88-32.319-29.309-20.346-60.725c9.983-26.194,31.781-42.289,53.326-34.55
C603.668,579.26,612.186,603.711,603.648,632.062z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M1137.06,681.49c-0.428,10.517-8.001,18.497-18.702,18.454
c-8.7-0.033-19.115-6.415-18.472-18.736c0.535-10.273,7.967-18.415,18.911-18.241C1129.026,663.129,1136.61,670.635,1137.06,681.49
z"/>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#FFFFFF" d="M595.151,609.75c-0.354,8.75-6.656,15.388-15.56,15.353
c-7.237-0.028-15.902-5.337-15.366-15.587c0.445-8.547,6.627-15.321,15.733-15.177C588.469,594.475,594.778,600.72,595.151,609.75z
"/>
</g>
<g id="Ebene_5">
<g>
<path fill="#DEC4A1" d="M1317.084,989.172c0,0-14.829,23.37-6.95,43.253c12.662,31.953,46.19,29.606,46.19,29.606
s11.608,6.521,64.891-9.497c74.96-22.534,108.076-72.43,97.609-118.107c-11.965-52.213-90.026-67.432-103.766-9.676
C1401.96,979.816,1317.084,989.172,1317.084,989.172z"/>
<path d="M1323.096,999.55c-0.908,1.515-1.788,3.067-2.52,4.673c-0.775,1.705-1.513,3.425-2.077,5.177
c-0.581,1.746-1.037,3.511-1.365,5.26c-0.62,3.499-0.744,6.965-0.175,10.137c0.044,0.407,0.16,0.784,0.241,1.176
c0.077,0.394,0.185,0.773,0.303,1.148c0.115,0.375,0.205,0.762,0.354,1.121l0.325,0.902l0.657,1.484l0.329,0.742
c0.107,0.238,0.226,0.528,0.315,0.673c0.403,0.714,0.712,1.398,1.158,2.151c0.898,1.526,1.839,3.014,2.922,4.368
c1.035,1.398,2.235,2.635,3.446,3.85c1.269,1.154,2.555,2.289,3.984,3.251c1.403,0.993,2.887,1.886,4.45,2.659
c3.097,1.591,6.503,2.715,10.012,3.483c1.758,0.379,3.555,0.629,5.34,0.779c0.893,0.074,1.782,0.122,2.653,0.142l1.271,0.001
l0.593-0.017c0.146-0.007,0.439-0.024,0.356-0.023l5.242,1.177c-0.877-0.465-0.637-0.325-0.803-0.407
c-0.148-0.05-0.052-0.031-0.044-0.033c0.024,0.002,0.047,0.007,0.068,0.015l0.215,0.034c0.166,0.021,0.265,0.061,0.481,0.082
l0.623,0.073c0.378,0.069,0.939,0.067,1.404,0.108c0.466,0.047,1.015,0.04,1.548,0.045c2.112,0.045,4.454-0.118,6.79-0.326
c4.72-0.481,9.594-1.266,14.469-2.319c9.764-2.068,19.585-4.905,29.329-8.046l1.828-0.58l0.915-0.29l0.845-0.281l1.863-0.63
c0.632-0.211,1.242-0.42,1.798-0.625c2.271-0.808,4.642-1.678,6.95-2.593c4.632-1.822,9.186-3.792,13.622-5.943
c4.435-2.156,8.761-4.478,12.95-6.969c4.178-2.508,8.222-5.182,12.094-8.022c7.756-5.668,14.726-12.152,20.648-19.236
c5.936-7.074,10.646-14.895,13.812-23.083c3.201-8.175,4.744-16.766,4.436-25.271c-0.077-2.126-0.253-4.247-0.534-6.358
c-0.145-1.055-0.304-2.109-0.508-3.156c-0.091-0.525-0.198-1.048-0.315-1.57l-0.168-0.784l-0.021-0.098
c-0.067-0.288,0.07,0.285,0.044,0.18l-0.06-0.238l-0.121-0.477l-0.24-0.954l-0.12-0.477l-0.06-0.23l-0.048-0.15l-0.367-1.205
c-0.305-0.889-0.619-1.876-0.998-2.782c-0.732-1.846-1.56-3.656-2.549-5.384c-3.883-6.935-9.748-12.889-16.762-17.103
c-6.952-4.288-15.076-6.807-22.896-7.058c-3.905-0.114-7.716,0.34-11.221,1.37c-3.505,1.038-6.707,2.606-9.521,4.707
c-2.807,2.113-5.215,4.787-7.223,7.942c-1.983,3.173-3.567,6.825-4.662,10.835l-1.017,3.751c-0.42,1.402-1.005,3.414-1.55,4.793
c-1.087,3.028-2.408,5.969-3.897,8.8c-2.957,5.684-6.68,10.863-10.799,15.5c-8.289,9.283-18.164,16.248-28.344,21.694
c-10.208,5.457-20.801,9.481-31.526,12.55c-5.365,1.529-10.757,2.861-16.205,3.917c-2.723,0.535-5.456,1.01-8.211,1.436
C1325.61,999.208,1324.357,999.383,1323.096,999.55z M1309.773,979.256l7.715-1.286l1.773-0.321
c1.192-0.226,2.394-0.466,3.597-0.722c2.404-0.514,4.812-1.076,7.206-1.691c4.786-1.239,9.541-2.594,14.192-4.175
c9.292-3.166,18.277-6.986,26.406-11.738c8.104-4.76,15.402-10.394,20.925-16.952c2.746-3.284,5.086-6.763,6.86-10.445
c0.898-1.835,1.683-3.712,2.306-5.643l0.245-0.718l0.18-0.624l0.188-0.621c0.064-0.21,0.125-0.375,0.211-0.741l0.97-3.86
c1.55-6.133,3.966-12.299,7.428-18.092c3.477-5.777,8.051-11.15,13.544-15.465c5.484-4.322,11.805-7.549,18.345-9.516
c6.544-1.99,13.273-2.804,19.85-2.671c13.167,0.322,25.744,4.233,36.718,10.807c10.953,6.59,20.334,16.052,26.688,27.44
c1.603,2.834,2.972,5.801,4.163,8.83c0.615,1.521,1.114,3.029,1.64,4.626l0.753,2.566l0.091,0.321l0.063,0.247l0.119,0.477
l0.239,0.954l0.119,0.477l0.189,0.8l0.244,1.14c0.167,0.759,0.319,1.521,0.453,2.287c0.29,1.528,0.523,3.068,0.729,4.611
c0.408,3.087,0.654,6.202,0.694,9.319c0.104,6.233-0.46,12.467-1.643,18.543c-1.187,6.077-3.008,11.984-5.322,17.627
c-4.691,11.278-11.446,21.368-19.265,30.113c-7.836,8.762-16.818,16.148-26.275,22.454c-9.474,6.308-19.51,11.449-29.757,15.761
c-5.129,2.149-10.321,4.077-15.554,5.817c-2.619,0.878-5.22,1.681-7.938,2.485c-0.688,0.209-1.329,0.392-1.952,0.563l-1.894,0.531
l-2.013,0.542l-1.95,0.511c-10.378,2.768-20.881,5.248-31.751,6.984c-5.438,0.854-10.954,1.588-16.69,1.935
c-2.895,0.144-5.8,0.241-8.928,0.062c-0.778-0.041-1.54-0.069-2.378-0.17c-0.839-0.1-1.593-0.14-2.507-0.308l-1.32-0.223
c-0.432-0.072-0.967-0.211-1.443-0.321l-0.743-0.185l-0.873-0.269c-0.305-0.1-0.527-0.161-0.977-0.341
c-0.47-0.205-0.541-0.169-1.708-0.788l5.241,1.177c-0.623,0.034-0.87,0.031-1.266,0.039l-1.03-0.005
c-0.672-0.009-1.322-0.036-1.973-0.067c-1.291-0.072-2.56-0.183-3.819-0.33c-2.521-0.291-5.002-0.742-7.467-1.316
c-4.915-1.18-9.765-2.897-14.325-5.352c-2.287-1.202-4.495-2.591-6.593-4.142c-2.122-1.517-4.074-3.272-5.95-5.086
c-1.816-1.873-3.572-3.815-5.084-5.92c-1.565-2.07-2.909-4.271-4.147-6.506c-0.629-1.124-1.219-2.414-1.811-3.62
c-0.166-0.333-0.244-0.547-0.354-0.805l-0.313-0.749l-0.626-1.498l-0.178-0.433l-0.089-0.244l-0.177-0.488l-0.349-0.979
c-0.246-0.65-0.42-1.314-0.614-1.976c-0.402-1.32-0.665-2.661-0.938-3.992c-0.521-2.67-0.735-5.34-0.804-7.966
c-0.045-2.626,0.068-5.215,0.352-7.75c0.26-2.539,0.696-5.017,1.204-7.458c0.53-2.435,1.106-4.843,1.827-7.198
c0.726-2.353,1.452-4.703,2.343-7.006c0.415-1.166,0.867-2.323,1.347-3.488l0.735-1.773c0.269-0.614,0.503-1.166,0.887-1.943
L1309.773,979.256z"/>
</g>
<g>
<path fill-rule="evenodd" clip-rule="evenodd" fill="#DEC4A1" d="M683.277,1625.134c-51.01,0.545-35.202-34.499-66.936-60.279
c-23.162-18.817-85.414-27.659-41.669-79.817c43.744-52.157,104.565-53.175,129.264,8.413
C728.636,1555.038,731.965,1624.615,683.277,1625.134z"/>
<path d="M683.114,1638.647c0,0-0.516-0.016-1.515-0.046c-0.5-0.015-1.121-0.033-1.858-0.055c-0.369-0.012-0.767-0.023-1.193-0.036
c-0.525-0.035-1.085-0.073-1.679-0.113c-1.187-0.091-2.538-0.164-3.972-0.319c-1.419-0.189-2.946-0.357-4.631-0.631
c-3.395-0.612-7.37-1.445-11.93-3.185c-1.142-0.479-2.312-0.991-3.499-1.53c-1.187-0.597-2.394-1.278-3.618-1.962
c-1.193-0.794-2.438-1.562-3.626-2.479c-1.175-0.938-2.401-1.873-3.499-2.972c-2.307-2.114-4.302-4.572-6.106-7.104
c-1.801-2.554-3.251-5.171-4.594-7.792c-1.313-2.615-2.434-5.174-3.533-7.702c-1.081-2.516-2.114-4.942-3.19-7.329
c-1.07-2.371-2.2-4.645-3.417-6.875c-1.231-2.204-2.587-4.321-4.074-6.387c-1.543-2.011-3.169-4.021-5.079-5.862
c-0.449-0.486-0.949-0.932-1.451-1.382l-0.749-0.682l-0.375-0.344l-0.188-0.173l-0.094-0.086c0.498,0.39,0.069,0.053,0.149,0.115
c-0.641-0.512-1.285-1.026-1.932-1.542c-0.178-0.147-0.294-0.227-0.412-0.308l-0.361-0.254l-0.72-0.52
c-0.419-0.331-1.124-0.763-1.711-1.157c-0.604-0.402-1.225-0.811-1.898-1.204c-1.293-0.797-2.688-1.589-4.095-2.388
c-2.861-1.594-5.885-3.204-9.039-4.878c-3.158-1.695-6.439-3.428-9.802-5.317c-3.367-1.923-6.809-4.012-10.273-6.457
c-3.449-2.441-6.972-5.296-10.27-8.899c-3.271-3.589-6.337-8.131-8.104-13.509c-1.803-5.359-2.062-11.25-1.225-16.483l0.349-1.957
c0.115-0.656,0.239-1.309,0.431-1.903c0.359-1.219,0.719-2.439,1.08-3.662c0.413-1.172,0.891-2.281,1.346-3.424
c0.233-0.563,0.458-1.141,0.704-1.693l0.796-1.581l1.616-3.16l1.78-2.944c1.162-2.019,2.484-3.79,3.768-5.643l0.971-1.38
l1.019-1.301l2.048-2.6l1.028-1.301l1.14-1.331l1.977-2.315l0.99-1.159c0.327-0.386,0.754-0.823,1.127-1.231l2.322-2.492
c1.545-1.714,3.138-3.174,4.718-4.745c3.188-3.079,6.581-6.003,10.118-8.797c7.084-5.565,14.92-10.492,23.505-14.266
c4.257-1.946,8.785-3.436,13.385-4.723l3.512-0.821c0.588-0.13,1.168-0.282,1.763-0.391l1.793-0.296
c1.198-0.188,2.391-0.4,3.596-0.558l3.649-0.332c1.213-0.136,2.444-0.153,3.674-0.17c1.231-0.006,2.458-0.07,3.693-0.015
c2.47,0.144,4.943,0.227,7.401,0.632c2.472,0.27,4.899,0.842,7.331,1.382c1.216,0.268,2.394,0.683,3.59,1.026
c1.192,0.36,2.389,0.709,3.535,1.189l3.468,1.366c1.133,0.499,2.234,1.062,3.349,1.599l1.664,0.819
c0.547,0.284,1.066,0.61,1.6,0.915l3.171,1.875c4.057,2.702,7.956,5.628,11.338,8.948c6.896,6.546,12.385,14.018,16.734,21.689
c1.05,1.93,2.053,3.868,3.064,5.799c0.921,1.952,1.782,3.912,2.662,5.86l0.164,0.365l0.082,0.184
c-0.02-0.061,0.12,0.287,0.129,0.311l0.269,0.658l0.537,1.315c0.358,0.876,0.714,1.749,1.07,2.621
c0.354,0.844,0.714,1.786,1.074,2.73c0.358,0.938,0.716,1.873,1.073,2.806c2.769,7.395,5.203,14.601,7.231,21.83
c2.042,7.204,3.745,14.329,5.049,21.354c1.318,7.021,2.265,13.933,2.741,20.705c0.986,13.514,0.125,26.598-3.479,38.52
c-1.795,5.948-4.343,11.584-7.668,16.546c-3.349,4.962-7.503,9.103-11.743,12.157c-1.081,0.743-2.143,1.451-3.181,2.124
c-1.078,0.597-2.145,1.142-3.177,1.669c-0.518,0.26-1.028,0.515-1.529,0.766c-0.51,0.218-1.018,0.404-1.516,0.599
c-1,0.372-1.965,0.731-2.896,1.078c-0.933,0.377-1.834,0.526-2.7,0.774c-0.868,0.216-1.7,0.422-2.495,0.619
c-0.801,0.22-1.543,0.297-2.257,0.409c-0.712,0.103-1.389,0.198-2.028,0.29c-0.639,0.085-1.241,0.166-1.805,0.241
c-0.559,0.059-1.064,0.062-1.541,0.093c-0.949,0.041-1.748,0.075-2.391,0.103c-1.285,0.046-1.948,0.069-1.948,0.069H683.114z
M683.133,1611.62c0,0,0.367-0.034,1.079-0.102c0.355-0.028,0.796-0.063,1.32-0.105c0.259-0.025,0.553-0.024,0.84-0.07
c0.28-0.056,0.578-0.115,0.896-0.179c0.317-0.057,0.652-0.118,1.006-0.182c0.35-0.066,0.743-0.097,1.081-0.234
c0.354-0.108,0.724-0.222,1.109-0.34c0.371-0.133,0.827-0.172,1.177-0.377c0.374-0.173,0.763-0.343,1.17-0.508
c0.201-0.085,0.416-0.158,0.619-0.25c0.186-0.115,0.375-0.231,0.568-0.349c0.385-0.232,0.794-0.448,1.21-0.677
c0.367-0.3,0.749-0.593,1.152-0.878c1.539-1.256,3.086-2.875,4.533-5.199c1.43-2.344,2.687-5.427,3.691-9.134
c1.982-7.433,2.755-17.339,2.006-28.504c-0.725-11.166-2.646-23.61-6.043-36.579c-1.688-6.465-3.625-13.175-5.878-19.807
c-0.28-0.817-0.562-1.637-0.843-2.459c-0.277-0.815-0.557-1.638-0.899-2.543c-0.326-0.883-0.653-1.768-0.98-2.655l-0.492-1.332
l-0.247-0.668l-0.186-0.451c-0.636-1.539-1.274-3.087-1.916-4.641c-0.71-1.501-1.423-3.009-2.14-4.523
c-3.02-5.93-6.761-11.417-11.225-16.051c-2.188-2.385-4.674-4.363-7.211-6.269l-1.985-1.287c-0.333-0.212-0.654-0.449-0.996-0.645
l-1.039-0.558c-0.695-0.366-1.375-0.772-2.08-1.125l-2.16-0.957c-0.708-0.357-1.462-0.593-2.208-0.854
c-0.751-0.243-1.479-0.571-2.25-0.765c-1.539-0.394-3.067-0.866-4.665-1.091c-1.568-0.357-3.197-0.447-4.815-0.639
c-0.812-0.081-1.641-0.053-2.462-0.092c-0.823-0.03-1.648-0.069-2.484,0.001l-2.505,0.108c-0.838,0.073-1.679,0.196-2.521,0.286
l-1.265,0.143c-0.422,0.055-0.842,0.154-1.264,0.229l-2.536,0.47c-3.366,0.823-6.753,1.771-10.057,3.151
c-6.625,2.65-13.087,6.251-19.027,10.722c-2.97,2.234-5.866,4.599-8.626,7.138c-1.349,1.284-2.809,2.548-4.021,3.844l-1.9,1.928
c-0.322,0.334-0.623,0.609-0.964,0.991l-1.019,1.135l-2.033,2.266l-0.858,0.959l-0.864,1.074l-1.729,2.142l-0.864,1.068
l-0.776,1.087c-1.021,1.449-2.136,2.88-2.974,4.339l-1.359,2.168l-1.124,2.159l-0.571,1.072c-0.159,0.354-0.291,0.706-0.439,1.058
c-0.28,0.701-0.612,1.405-0.869,2.093c-0.195,0.677-0.4,1.348-0.617,2.017c-0.131,0.34-0.182,0.657-0.23,0.973l-0.179,0.946
c-0.427,2.506-0.282,4.621,0.386,6.604c0.658,1.983,1.909,3.988,3.75,6c1.835,2.006,4.168,3.971,6.851,5.748
c5.329,3.594,11.51,6.772,17.822,9.842c3.169,1.544,6.381,3.109,9.603,4.759c1.622,0.847,3.232,1.688,4.863,2.613
c0.806,0.437,1.627,0.909,2.448,1.402c0.835,0.505,1.583,0.911,2.526,1.546l1.346,0.885l0.669,0.445
c0.227,0.15,0.454,0.303,0.6,0.413c0.67,0.485,1.337,0.97,2.001,1.451c0.161,0.125-0.185-0.151,0.393,0.303l0.139,0.113
l0.278,0.229l0.554,0.456l1.104,0.911c0.736,0.604,1.467,1.208,2.154,1.866c0.696,0.646,1.388,1.289,2.078,1.93
c0.672,0.658,1.314,1.344,1.965,2.013c1.328,1.319,2.487,2.759,3.694,4.136c2.299,2.834,4.365,5.73,6.18,8.611
c1.784,2.878,3.374,5.719,4.771,8.424c1.387,2.69,2.643,5.264,3.797,7.604c1.154,2.318,2.241,4.462,3.288,6.29
c1.057,1.797,2.052,3.404,3.04,4.64c0.998,1.231,1.92,2.275,2.892,3.034c0.451,0.439,0.973,0.735,1.435,1.092
c0.478,0.338,1.013,0.586,1.478,0.9c0.547,0.234,1.047,0.497,1.568,0.735c0.566,0.196,1.101,0.413,1.628,0.625
c2.236,0.743,4.615,1.169,6.75,1.475c1.089,0.131,2.151,0.198,3.092,0.299c0.934,0.063,1.744,0.064,2.488,0.104
c0.371,0.018,0.72,0.033,1.048,0.048c0.427-0.003,0.825-0.006,1.194-0.009c0.738-0.005,1.359-0.01,1.858-0.013
c1-0.008,1.516-0.012,1.516-0.012H683.133z"/>
</g>
</g>
<g id="Ebene_6">
</g>
</svg>

Before

Width:  |  Height:  |  Size: 71 KiB

View File

@ -1,80 +0,0 @@
<!DOCTYPE html>
<html> <head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>using Go modules</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="/jumbotron-narrow.css" rel="stylesheet">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
<style type="text/css">
body {
font-family: "Open Sans";
}
.table-striped>tr:nth-child(odd){
background-color:red;
}
</style>
</head>
<body>
<div class="container"><div class="header"><nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class=""><a href="/">Home </a></li>
<li role="presentation" class=""><a href="/platforms/">Platforms </a></li>
<li role="presentation" class=""><a href="/quickstart/">Quickstart </a></li>
<li role="presentation" class=""><a href="/showcase/">Showcase </a></li>
<li role="presentation" class=""><a href="https://github.com/gokrazy/gokrazy">Source </a></li>
</ul>
</nav>
<h3 class="text-muted">gokrazy</h3>
</div>
<div class="row">
<div class="col-lg-12">
<h1>Using Go modules</h1>
<h2>pull in repositories from your GOPATH</h2>
<p>
By default, Go modules will not look at <code>$GOPATH/src</code>,
i.e. all packages passed to gokr-packer will be downloaded. If you
had unpublished changes or packages in your <code>$GOPATH</code>,
you can use the following steps to declare a Go module and pull it
into the build:
</p>
<pre>IMPORTPATH=github.com/stapelberg/gibot-i3
(cd $(go env GOPATH)/src/${IMPORTPATH?} && GO111MODULE=on go mod init ${IMPORTPATH?})
go mod edit -require ${IMPORTPATH?}@v0.0.0
go mod edit -replace ${IMPORTPATH?}=$(go env GOPATH)/src/${IMPORTPATH?}
</pre>
<h2>pull in local repositories</h2>
<p>
Please see <a href="https://github.com/golang/go/wiki/Modules#when-should-i-use-the-replace-directive">https://github.com/golang/go/wiki/Modules#when-should-i-use-the-replace-directive</a>.
</p>
</div>
</div>
<footer class="footer" style="text-align: center">
<p>© 2017 gokrazy authors (Michael Stapelberg and contributors)</p>
</footer>
</div>
</body>
</html>
</div>
</body>
</html>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 302 KiB

View File

@ -1 +0,0 @@
<!DOCTYPE html><html><head><title>https://gokrazy.org/platforms/</title><link rel="canonical" href="https://gokrazy.org/platforms/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://gokrazy.org/platforms/" /></head></html>

View File

@ -1,135 +0,0 @@
<!DOCTYPE html>
<html> <head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gokrazy platforms</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="/jumbotron-narrow.css" rel="stylesheet">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
<style type="text/css">
body {
font-family: "Open Sans";
}
.table-striped>tr:nth-child(odd){
background-color:red;
}
</style>
</head>
<body>
<div class="container"><div class="header"><nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class=""><a href="/">Home </a></li>
<li role="presentation" class="active"><a href="/platforms/">Platforms <span class="sr-only">(current)</span></a></li>
<li role="presentation" class=""><a href="/quickstart/">Quickstart </a></li>
<li role="presentation" class=""><a href="/showcase/">Showcase </a></li>
<li role="presentation" class=""><a href="https://github.com/gokrazy/gokrazy">Source </a></li>
</ul>
</nav>
<h3 class="text-muted">gokrazy</h3>
</div>
<div class="row">
<div class="col-lg-12">
<h1>Supported platforms</h1>
<p>
<strong>bold</strong> appliances are tested in the CI setup on real
hardware and gate new kernel and firmware versions, and hence can be
considered supported.
</p>
<p>
Regular appliances are supported in a best-effort way, i.e. they
might be temporarily broken at HEAD.
</p>
<p>
The leading <code>github.com</code> in front of package import paths has been omitted for space reasons.
</p>
<table width="100%" class="table table-striped">
<thead>
<tr>
<th scope="col">Target</th>
<th scope="col">Hardware</th>
<th scope="col">GOARCH</th>
<th scope="col">Kernel package</th>
<th scope="col">Firmware package</th>
<th scope="col">Appliances</th>
</tr>
</thead>
<tbody>
<tr>
<td scope="row">apu2c4</td>
<td>apu2c4</td>
<td>amd64</td>
<td><code><a href="https://github.com/rtr7/kernel">rtr7/kernel</a></code></td>
<td><code><a href="https://github.com/rtr7/kernel">rtr7/kernel</a></code></td>
<td>
<strong><code><a href="https://github.com/gokrazy/bakery">gokrazy/bakery/cmd/bake</a></code></strong><br>
<code><a href="https://github.com/rtr7/router7">rtr7/router7</a></code>
</td>
</tr>
<tr>
<td scope="row">x86-64</td>
<td>qemu</td>
<td>amd64</td>
<td><code><a href="https://github.com/rtr7/kernel">rtr7/kernel</a></code></td>
<td><code><a href="https://github.com/rtr7/kernel">rtr7/kernel</a></code></td>
<td><strong><code><a href="https://github.com/gokrazy/bakery">gokrazy/bakery/cmd/bake</a></code></strong></td>
</tr>
<tr>
<td scope="row">rpi3b</td>
<td>raspi3b</td>
<td>arm64</td>
<td><code><a href="https://github.com/gokrazy/kernel">gokrazy/kernel</a></code></td>
<td><code><a href="https://github.com/gokrazy/firmware">gokrazy/firmware</a></code></td>
<td>
<strong><code><a href="https://github.com/gokrazy/bakery">gokrazy/bakery/cmd/bake</a></code></strong><br>
<code><a href="https://github.com/stapelberg/zkj-nas-tools">stapelberg/avr-x1100w</a></code><br>
<code><a href="https://github.com/stapelberg/zkj-nas-tools">stapelberg/dornröschen</a></code><br>
<code><a href="https://github.com/stapelberg/hmgo">stapelberg/hmgo</a></code><br>
<code><a href="https://github.com/stapelberg/scan2drive">stapelberg/scan2drive</a></code>
</td>
</tr>
<tr>
<td scope="row">rpi3b+</td>
<td>raspi3b+</td>
<td>arm64</td>
<td><code><a href="https://github.com/gokrazy/kernel">gokrazy/kernel</a></code></td>
<td><code><a href="https://github.com/gokrazy/firmware">gokrazy/firmware</a></code></td>
<td><strong><code><a href="https://github.com/gokrazy/bakery">gokrazy/bakery/cmd/bake</a></code></strong></td>
</tr>
</tbody>
</table>
</div>
</div>
<footer class="footer" style="text-align: center">
<p>© 2017 gokrazy authors (Michael Stapelberg and contributors)</p>
</footer>
</div>
</body>
</html>
</div>
</body>
</html>

View File

@ -1 +0,0 @@
<!DOCTYPE html><html><head><title>https://gokrazy.org/prototyping/</title><link rel="canonical" href="https://gokrazy.org/prototyping/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://gokrazy.org/prototyping/" /></head></html>

View File

@ -1,256 +0,0 @@
<!DOCTYPE html>
<html> <head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gokrazy prototyping</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="/jumbotron-narrow.css" rel="stylesheet">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
<style type="text/css">
body {
font-family: "Open Sans";
}
.table-striped>tr:nth-child(odd){
background-color:red;
}
</style>
</head>
<body>
<div class="container"><div class="header"><nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class=""><a href="/">Home </a></li>
<li role="presentation" class=""><a href="/platforms/">Platforms </a></li>
<li role="presentation" class=""><a href="/quickstart/">Quickstart </a></li>
<li role="presentation" class=""><a href="/showcase/">Showcase </a></li>
<li role="presentation" class=""><a href="https://github.com/gokrazy/gokrazy">Source </a></li>
</ul>
</nav>
<h3 class="text-muted">gokrazy</h3>
</div>
<div class="row">
<div class="col-lg-12">
<h1>Prototyping</h1>
<p>
To realize the full benefits of gokrazy, you need to use only
software written in Go. If there is no Go software for what you want
to do, creating that piece of software can pose a seemingly
unsurmountable hurdle. To make some quick progress and figure out if
your idea can be implemented, it might make sense to temporarily use
existing software before starting your own implementation.
</p>
<p>
This article shows a couple of techniques for getting non-Go
software to work on gokrazy, in increasing order of complexity.
</p>
<p>
Note that software which is manually installed like shown
here <strong>will not be automatically updated</strong> by gokrazy
and hence poses a security risk. Use these techniques only for
prototyping.
</p>
<h2>Go software not written for gokrazy: node-exporter</h2>
<p>
The Prometheus node-exporter doesnt use cgo and needs no
command-line parameters, configuration files or other assets can be
added to the <code>gokr-packer</code> command line.
</p>
<h2>Go software not written for gokrazy: Grafana</h2>
<p>
It would not suffice to add Grafana to your <code>gokr-packer</code>
command, as the resulting Grafana binary requires assets, supports
plugins, keeps state, etc.
</p>
<p>
Hence, you need to manually install Grafana into a directory
underneath <code>/perm</code>. A convenient way to do that is to
use <a href="https://github.com/gokrazy/breakglass">breakglass</a>
to download the “Standalone Linux Binaries” release from
<a href="https://grafana.com/grafana/download?platform=arm">https://grafana.com/grafana/download?platform=arm</a>. Note
that I am serving the file from my computer because my busybox
version supports neither HTTPS nor DNS.
</p>
<pre>
/tmp/breakglass531810560 # wget http://10.0.0.76:4080/grafana-5.3.2.linux-arm64.tar.gz
/tmp/breakglass531810560 # tar xf grafana-5.3.2.linux-arm64.tar.gz</pre>
<p>
We cannot start Grafana yet, as its binary is dynamically
linked. One way to fix this is to place the sources which correspond
to the release you just unpacked (e.g. from
<a href="https://github.com/grafana/grafana/tree/v5.3.2">https://github.com/grafana/grafana/tree/v5.3.2</a>)
in your <code>$GOPATH</code> and recompile the binaries:
</p>
<pre>GOARCH=arm64 CGO_ENABLED=1 CC=aarch64-linux-gnu-gcc go install \
-ldflags "-linkmode external -extldflags -static" \
github.com/grafana/grafana/pkg/cmd/...</pre>
<p>
Note that it is usually easier to set the environment
variable <code>CGO_ENABLED=0</code> to get a statically linked
binary, but Grafana uses sqlite3, which is written in C, so we
resort to the <code>-ldflags</code> variant.
</p>
<p>
At this point, we can start Grafana from breakglass:
</p>
<pre>
/tmp/breakglass531810560 # cd grafana-5.3.2
/tmp/breakglass531810560/grafana-5.3.2 # wget http://10.0.0.76:4080/grafana-server
/tmp/breakglass531810560/grafana-5.3.2 # install -m 755 grafana-server bin/ && rm grafana-server
/tmp/breakglass531810560/grafana-5.3.2 # ./bin/grafana-server
INFO[10-30|19:27:51] Starting Grafana logger=server version=5.0.0 commit=NA compiled=2018-10-30T19:27:51+0100
</pre>
<p>
To have gokrazy start Grafana, we can use a Go package like this:
</p>
<pre>
package main
import (
"log"
"syscall"
)
func main() {
const bin = "/perm/grafana/bin/grafana-server"
if err := syscall.Exec(bin, []string{bin, "-homepath=/perm/grafana"}, nil); err != nil {
log.Fatal(err)
}
}
</pre>
<h2>C software: WireGuard</h2>
<p>
WireGuard is a modern VPN tunnel, which consists of a Linux kernel
module and a configuration
tool. See <a href="https://github.com/rtr7/kernel/commit/c7afbc1fd2efdb9e1149d271c4d2be59cc5c98f4">rtr7/kernel@c7afbc1f</a>
for how the kernel module was added to the router7 kernel.
</p>
<p>
The configuration tool can be statically cross-compiled. We can run
Debian in a Docker container to not mess with our host system:
</p>
<pre>
% mkdir /tmp/wg
% cd /tmp/wg
% docker run -t -i debian
root@d1728eaaa6e1:/# dpkg --add-architecture arm64
root@d1728eaaa6e1:/# apt update
root@d1728eaaa6e1:/# apt install libmnl-dev:arm64 libelf-dev:arm64 linux-headers-amd64 crossbuild-essential-arm64 pkg-config wget
root@d1728eaaa6e1:/# wget https://git.zx2c4.com/WireGuard/snapshot/WireGuard-0.0.20181018.tar.xz
root@d1728eaaa6e1:/# tar xf WireGuard-0.0.20181018.tar.xz
root@d1728eaaa6e1:/# cd WireGuard-0.0.20181018/src/tools
root@d1728eaaa6e1:/# make CC=aarch64-linux-gnu-gcc LDFLAGS=-static
root@d1728eaaa6e1:/# exit
% docker cp -L d1728eaaa6e1:/WireGuard-0.0.20181018/src/tools/wg .</pre>
<p>
Now we can copy and run the <code>wg</code> binary via breakglass:
</p>
<pre>
/tmp/breakglass531810560 # wget http://10.0.0.76:4080/wg
/tmp/breakglass531810560 # chmod +x wg
/tmp/breakglass531810560 # ./wg --help
Usage: ./wg &lt;cmd&gt; [&lt;args&gt;]
</pre>
<h2>C software: tc</h2>
<p>
Linuxs Traffic Control system (used e.g. for traffic shaping) is
configured with the <code>tc</code> tool.
</p>
<p>
<code>tc</code> is a special case in that it requires to be
dynamically linked. The different queueing disciplines are
implemented as plugins, and statically linking <code>tc</code>
results in a binary which starts but wont be able to display or
change queueing disciplines.
</p>
<p>
Because gokrazy doesnt include a C runtime environment, well need
to copy not only the <code>tc</code> binary, but also the dynamic
loader and all required shared libraries. We can run Debian in a
Docker container to not mess with our host system:
</p>
<pre>
% mkdir /tmp/iproute
% cd /tmp/iproute
% docker run -t -i debian
root@6e530a973d45:/# dpkg --add-architecture arm64
root@6e530a973d45:/# apt update
root@6e530a973d45:/# apt install iproute2:arm64 qemu-user-static
root@6e530a973d45:/# LD_TRACE_LOADED_OBJECTS=1 qemu-aarch64-static /sbin/tc
libelf.so.1 => /usr/lib/aarch64-linux-gnu/libelf.so.1 (0x00000040008a6000)
libm.so.6 => /lib/aarch64-linux-gnu/libm.so.6 (0x00000040008cb000)
libdl.so.2 => /lib/aarch64-linux-gnu/libdl.so.2 (0x0000004000976000)
libc.so.6 => /lib/aarch64-linux-gnu/libc.so.6 (0x0000004000989000)
/lib/ld-linux-aarch64.so.1 (0x0000004000870000)
libz.so.1 => /lib/aarch64-linux-gnu/libz.so.1 (0x0000004000ad3000)
root@6e530a973d45:/# exit
% docker cp -L 6e530a973d45:/sbin/tc .
% docker cp -L 6e530a973d45:/lib/ld-linux-aarch64.so.1 .
% docker cp -L 6e530a973d45:/usr/lib/aarch64-linux-gnu/libelf.so.1 .
% docker cp -L 6e530a973d45:/lib/aarch64-linux-gnu/libm.so.6 .
% docker cp -L 6e530a973d45:/lib/aarch64-linux-gnu/libdl.so.2 .
% docker cp -L 6e530a973d45:/lib/aarch64-linux-gnu/libc.so.6 .
% docker cp -L 6e530a973d45:/lib/aarch64-linux-gnu/libz.so.1 .</pre>
<p>
Now we can copy the contents of the temporary directory to
e.g. <code>/perm/tc</code> and run the <code>tc</code> command in
breakglass:
</p>
<pre>
/tmp/breakglass531810560 # wget -O- http://10.0.0.76:4080/tc.tar | tar xf -
/tmp/breakglass531810560 # LD_LIBRARY_PATH=$PWD ./ld-linux-aarch64.so.1 ./tc
Usage: tc [ OPTIONS ] OBJECT { COMMAND | help }
</pre>
</div>
</div>
<footer class="footer" style="text-align: center">
<p>© 2017 gokrazy authors (Michael Stapelberg and contributors)</p>
</footer>
</div>
</body>
</html>
</div>
</body>
</html>

View File

@ -1 +0,0 @@
<!DOCTYPE html><html><head><title>https://gokrazy.org/quickstart/</title><link rel="canonical" href="https://gokrazy.org/quickstart/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://gokrazy.org/quickstart/" /></head></html>

View File

@ -1,119 +0,0 @@
<!DOCTYPE html>
<html> <head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gokrazy quickstart</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="/jumbotron-narrow.css" rel="stylesheet">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
<style type="text/css">
body {
font-family: "Open Sans";
}
.table-striped>tr:nth-child(odd){
background-color:red;
}
</style>
</head>
<body>
<div class="container"><div class="header"><nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class=""><a href="/">Home </a></li>
<li role="presentation" class=""><a href="/platforms/">Platforms </a></li>
<li role="presentation" class="active"><a href="/quickstart/">Quickstart <span class="sr-only">(current)</span></a></li>
<li role="presentation" class=""><a href="/showcase/">Showcase </a></li>
<li role="presentation" class=""><a href="https://github.com/gokrazy/gokrazy">Source </a></li>
</ul>
</nav>
<h3 class="text-muted">gokrazy</h3>
</div>
<div class="row">
<div class="col-lg-12">
<h1>Get a Raspberry Pi 3 (no other model)</h1>
<p>
Currently, the Raspberry Pi 3 is the <strong>only</strong>
model supported. Many people assume the Raspberry Pi Zero W
could be used as well. Unfortunately, it uses the older
BCM2835 SoC, which is not arm64, so gokrazy wont run on
it. See
also <a href="https://www.reddit.com/r/golang/comments/5xgf8u/gokrazy_a_purego_userland_for_your_raspberry_pi_3/dei7b2m/">stapelbergs
reddit comment about supported hardware</a>.
</p>
<h1>Install Go</h1>
<p>
If you dont already have Go installed, install the latest <a href="https://golang.org/dl/">Go</a> version.
</p>
<h1>Install the gokrazy packer</h1>
<pre>INSTANCE=gokrazy/hello; mkdir -p ~/${INSTANCE?} && cd ~/${INSTANCE?} && echo module ${INSTANCE?} > go.mod
go get -u github.com/gokrazy/tools/cmd/gokr-packer</pre>
<h1>Overwrite an SD card with gokrazy</h1>
<p>
Plug an SD card into your card reader and locate its device node by checking <code>dmesg | tail</code>. In this example, well assume the SD card is accessible as <code>/dev/sdb</code>.
</p>
<p>
To overwrite the entire SD card <code>/dev/sdb</code> with a gokrazy installation running a hello world program, use:
</p>
<pre>cd ~/gokrazy/hello
gokr-packer -overwrite=/dev/sdb github.com/gokrazy/hello github.com/gokrazy/serial-busybox</pre>
<p>
The <code>gokr-packer</code> command above will result in log output like this:
</p>
<pre>2017/03/01 20:59:55 packer.go:85: installing [github.com/gokrazy/hello]
2017/03/01 20:59:56 packer.go:131: partitioning /dev/sdb
2017/03/01 20:59:56 parttable.go:40: device holds 15931539456 bytes
2017/03/01 20:59:56 packer.go:139: waiting for /dev/sdb1 to appear
If your applications need to store persistent data, create a file system using e.g.:
mkfs.ext4 /dev/sdb4
To boot gokrazy, plug the SD card into a Raspberry Pi 3 (no other model supported)
To interact with the device, gokrazy provides a web interface reachable at:
http://gokrazy:<i>&lt;automatically-generated-random-password&gt;</i>@gokrazy/
There will be not be any other output (no HDMI, no serial console, etc.)</pre>
<p>
After booting from this SD card, your Raspberry Pi 3 will:
<ul>
<li>obtain an IP address for hostname “gokrazy” via DHCP (IPv4) and SLAAC (IPv6)</li>
<li>synchronize the clock using NTP</li>
<li>expose a password-authenticated web interface on private IP addresses<br>
(the default password can be recovered from <code>~/.config/gokrazy/http-password.txt</code>)</li>
<li>supervise all installed programs (only the hello world program in this example)</li>
</ul>
The only way for you to interact with the device is via the
web interface (unless the installed programs provide other
ways). There will be no HDMI output, no serial console, etc.
</p>
</div>
</div>
<footer class="footer" style="text-align: center">
<p>© 2017 gokrazy authors (Michael Stapelberg and contributors)</p>
</footer>
</div>
</body>
</html>
</div>
</body>
</html>

View File

@ -1 +0,0 @@
User-agent: *

View File

@ -1 +0,0 @@
<!DOCTYPE html><html><head><title>https://gokrazy.org/showcase/</title><link rel="canonical" href="https://gokrazy.org/showcase/"/><meta name="robots" content="noindex"><meta charset="utf-8" /><meta http-equiv="refresh" content="0; url=https://gokrazy.org/showcase/" /></head></html>

View File

@ -1,139 +0,0 @@
<!DOCTYPE html>
<html> <head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>gokrazy showcase</title>
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link href="/jumbotron-narrow.css" rel="stylesheet">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic%7CNoto+Serif:400,400italic,700,700italic%7CDroid+Sans+Mono:400">
<style type="text/css">
body {
font-family: "Open Sans";
}
.table-striped>tr:nth-child(odd){
background-color:red;
}
</style>
</head>
<body>
<div class="container"><div class="header"><nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class=""><a href="/">Home </a></li>
<li role="presentation" class=""><a href="/platforms/">Platforms </a></li>
<li role="presentation" class=""><a href="/quickstart/">Quickstart </a></li>
<li role="presentation" class="active"><a href="/showcase/">Showcase <span class="sr-only">(current)</span></a></li>
<li role="presentation" class=""><a href="https://github.com/gokrazy/gokrazy">Source </a></li>
</ul>
</nav>
<h3 class="text-muted">gokrazy</h3>
</div>
<div class="row">
<div class="col-lg-12">
<h2>Showcase</h2>
<h3>Written for gokrazy</h3>
<p>
The following third-party programs specifically target gokrazy:
</p>
<ul>
<li>
<a href="https://github.com/rtr7/router7"><strong>router7</strong></a><br>
Pure-Go small home internet router
</li>
<li>
<a href="https://github.com/stapelberg/zkj-nas-tools/tree/master/avr-x1100w"><strong>avr-x1100w</strong></a><br>
Automatically switches input sources on a Denon AVR-X1100W A/V receiver
depending on which media source is in use (specific to <a
href="https://github.com/stapelberg">stapelberg</a>s home network).
</li>
<li>
<a href="https://github.com/stapelberg/zkj-nas-tools/tree/master/dornr%C3%B6schen"><strong>dornröschen</strong></a><br>
SSH-based backup and storage sync orchestration (specific to <a
href="https://github.com/stapelberg">stapelberg</a>s home network).
</li>
<li>
<a href="https://github.com/stapelberg/hmgo"><strong>hmgo</strong></a><br>
Minimal HomeMatic house automation central control unit replacement (specific
to <a href="https://github.com/stapelberg">stapelberg</a>s home network).
</li>
<li>
<a href="https://github.com/stapelberg/scan2drive"><strong>scan2drive</strong></a><br>
scan2drive is a Raspberry Pi 3-based appliance (with a web interface)
for scanning, converting and uploading physical documents to Google
Drive.
</li>
<li>
<a href="https://github.com/anisse/beatbox"><strong>beatbox</strong></a><br>
beatbox is a Raspberry Pi 3-based toy that combines a Mir:ror and NFC
figurines for playing music stored on the device or directly from Spotify.
</li>
</ul>
<p>
To get your program listed here, just <a
href="https://github.com/gokrazy/gokrazy.github.io">send us a pull request</a>.
</p>
<h3>Successfully tested</h3>
<p>
The following third-party programs have been successfully used with gokrazy
but might require additional setup:
</p>
<ul>
<li>
<a href="https://prometheus.io/"><strong>Prometheus</strong></a><br>
Monitoring system &amp; time series database
</li>
<li>
<a href="https://github.com/prometheus/node_exporter"><strong>Prometheus
node exporter</strong></a><br> Exposes various metrics of the system on
which it is running for use with the
<a href="https://prometheus.io">prometheus</a> monitoring and alerting system.
</li>
<li>
<a href="https://github.com/prometheus/blackbox_exporter"><strong>Prometheus
blackbox exporter</strong></a><br> allows blackbox probing of endpoints over
HTTP, HTTPS, DNS, TCP and ICMP for use with the
<a href="https://prometheus.io">prometheus</a> monitoring and alerting system.
</li>
<li>
<a href="https://grafana.com/"><strong>Grafana</strong></a><br>
The open platform for beautiful analytics and monitoring
</li>
</ul>
<h3>No Go software for your idea?</h3>
<p>
You can prototype your idea by temporarily using existing software to close
the gap. See <a href="prototyping.html">Prototyping</a>.
</p>
</div>
</div>
<footer class="footer" style="text-align: center">
<p>© 2017 gokrazy authors (Michael Stapelberg and contributors)</p>
</footer>
</div>
</body>
</html>
</div>
</body>
</html>

View File

@ -1,29 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml">
<url>
<loc>https://gokrazy.org/</loc>
</url>
<url>
<loc>https://gokrazy.org/platforms/</loc>
</url>
<url>
<loc>https://gokrazy.org/prototyping/</loc>
</url>
<url>
<loc>https://gokrazy.org/quickstart/</loc>
</url>
<url>
<loc>https://gokrazy.org/showcase/</loc>
</url>
<url>
<loc>https://gokrazy.org/modules/</loc>
</url>
</urlset>