a website for danny
authorErin <erindb@stanford.edu>
Fri, 14 Nov 2014 06:21:03 +0000 (22:21 -0800)
committerdaniel watson <ozzloy@gmail.com>
Sat, 28 Feb 2015 07:32:35 +0000 (23:32 -0800)
29 files changed:
challenge-bot.com/.gitignore [new file with mode: 0644]
challenge-bot.com/_config.yml [new file with mode: 0644]
challenge-bot.com/_sass/_base.scss [new file with mode: 0644]
challenge-bot.com/_sass/_layout.scss [new file with mode: 0644]
challenge-bot.com/_sass/_syntax-highlighting.scss [new file with mode: 0644]
challenge-bot.com/about.md [new file with mode: 0644]
challenge-bot.com/css/main.scss [new file with mode: 0755]
challenge-bot.com/favicon.ico [new file with mode: 0644]
challenge-bot.com/images/IMG_20141113_213443.jpg [new file with mode: 0644]
challenge-bot.com/images/IMG_20141113_213958.jpg [new file with mode: 0644]
challenge-bot.com/images/bunny.png [new file with mode: 0644]
challenge-bot.com/images/bunny.svg [new file with mode: 0644]
challenge-bot.com/images/bunny2.svg [new file with mode: 0644]
challenge-bot.com/images/computerkitty.png [new file with mode: 0644]
challenge-bot.com/images/computerkitty.svg [new file with mode: 0644]
challenge-bot.com/images/danny-bw.png [new file with mode: 0644]
challenge-bot.com/images/danny.png [new file with mode: 0644]
challenge-bot.com/images/erin-bw.png [new file with mode: 0644]
challenge-bot.com/images/erin.png [new file with mode: 0644]
challenge-bot.com/images/kitty.png [new file with mode: 0644]
challenge-bot.com/images/kitty.svg [new file with mode: 0644]
challenge-bot.com/images/kittybunny.png [new file with mode: 0644]
challenge-bot.com/images/robobunny.png [new file with mode: 0644]
challenge-bot.com/images/robobunny.svg [new file with mode: 0644]
challenge-bot.com/index.md [new file with mode: 0644]
challenge-bot.com/source-code.md [new file with mode: 0644]
challenge-bot.com/upcoming-classes.md [new file with mode: 0644]
challenge-bot.com/videos.md [new file with mode: 0644]
challenge-bot.com/what-to-bring.md [new file with mode: 0644]

diff --git a/challenge-bot.com/.gitignore b/challenge-bot.com/.gitignore
new file mode 100644 (file)
index 0000000..badbc02
--- /dev/null
@@ -0,0 +1,2 @@
+_site
+.sass-cache
diff --git a/challenge-bot.com/_config.yml b/challenge-bot.com/_config.yml
new file mode 100644 (file)
index 0000000..f4a57d6
--- /dev/null
@@ -0,0 +1,14 @@
+# Site settings
+title: challenge-bot
+email: ozzloy@gmail.com
+description: > # this means to ignore newlines until "baseurl:"
+  Learn to make your first robot! For professionals, students, kids --
+  anyone who has never made a robot but wants to. The goal of this
+  class is to *empower* you to modify, create, and explore robotics
+  *on your own*, even after the class is over. Hundreds of students
+  have successfully built their first robot in this class.
+baseurl: "" # the subpath of your site, e.g. /blog/
+url: "http://challenge-bot.com" # the base hostname & protocol for your site
+
+# Build settings
+markdown: kramdown
diff --git a/challenge-bot.com/_sass/_base.scss b/challenge-bot.com/_sass/_base.scss
new file mode 100644 (file)
index 0000000..d4c178f
--- /dev/null
@@ -0,0 +1,240 @@
+/**
+ * Reset some basic elements
+ */
+body, h1, h2, h3, h4, h5, h6,
+p, blockquote, pre, hr,
+dl, dd, ol, ul, figure {
+    margin: 0;
+    padding: 0;
+}
+
+
+
+/**
+ * Basic styling
+ */
+body {
+    font-family: $base-font-family;
+    font-size: $base-font-size;
+    line-height: $base-line-height;
+    font-weight: 300;
+    color: $text-color;
+    background-color: $background-color;
+    -webkit-text-size-adjust: 100%;
+}
+
+
+
+/**
+ * Set `margin-bottom` to maintain vertical rhythm
+ */
+h1, h2, h3, h4, h5, h6,
+p, blockquote, pre,
+ul, ol, dl, figure,
+%vertical-rhythm {
+    margin-bottom: $spacing-unit / 2;
+}
+
+
+
+/**
+ * Images
+ */
+img {
+    max-width: 100%;
+    vertical-align: middle;
+}
+
+
+
+/**
+ * Figures
+ */
+figure > img {
+    display: block;
+}
+
+figcaption {
+    font-size: $small-font-size;
+}
+
+
+
+/**
+ * Lists
+ */
+ul, ol {
+    margin-left: $spacing-unit;
+}
+
+li {
+    > ul,
+    > ol {
+         margin-bottom: 0;
+    }
+}
+
+
+
+/**
+ * Headings
+ */
+h1, h2, h3, h4, h5, h6 {
+    font-weight: 300;
+    font-family: $special-font;
+}
+
+strong {
+    font-weight: 800;
+}
+
+h1 {
+    color: darken($brand-color, 20%);
+}
+
+h2 {
+    color: darken($brand-color, 15%);
+}
+
+h3 {
+    color: darken($brand-color, 10%);
+}
+
+
+
+/**
+ * Links
+ */
+a {
+    color: $brand-color;
+    font-family: $special-font;
+    text-decoration: underline;
+
+    /*&:visited {
+        color: darken($brand-color, 15%);
+    }*/
+
+    &:hover {
+        color: lighten($brand-color, 15%);
+        text-decoration: none;
+    }
+}
+
+
+
+/**
+ * Blockquotes
+ */
+blockquote {
+    color: $grey-color;
+    border-left: 4px solid $grey-color-light;
+    padding-left: $spacing-unit / 2;
+    font-size: 18px;
+    letter-spacing: -1px;
+    font-style: italic;
+
+    > :last-child {
+        margin-bottom: 0;
+    }
+}
+
+
+
+/**
+ * Code formatting
+ */
+pre,
+code {
+    font-size: 15px;
+    border: 1px solid $grey-color-light;
+    border-radius: 3px;
+    background-color: #eef;
+}
+
+code {
+    padding: 1px 5px;
+}
+
+pre {
+    padding: 8px 12px;
+    overflow-x: scroll;
+
+    > code {
+        border: 0;
+        padding-right: 0;
+        padding-left: 0;
+    }
+}
+
+
+
+/**
+ * Wrapper
+ */
+.wrapper {
+    max-width: -webkit-calc(800px - (#{$spacing-unit} * 2));
+    max-width:         calc(800px - (#{$spacing-unit} * 2));
+    margin-right: auto;
+    margin-left: auto;
+    padding-right: $spacing-unit;
+    padding-left: $spacing-unit;
+    @extend %clearfix;
+
+    @include media-query($on-laptop) {
+        max-width: -webkit-calc(800px - (#{$spacing-unit}));
+        max-width:         calc(800px - (#{$spacing-unit}));
+        padding-right: $spacing-unit / 2;
+        padding-left: $spacing-unit / 2;
+    }
+}
+.site-header {
+    .wrapper {
+        max-width: -webkit-calc(1000px - (#{$spacing-unit} * 2));
+        max-width:         calc(1000px - (#{$spacing-unit} * 2));
+        margin-right: auto;
+        margin-left: auto;
+        padding-right: $spacing-unit;
+        padding-left: $spacing-unit;
+        @extend %clearfix;
+
+        @include media-query($on-laptop) {
+            max-width: -webkit-calc(800px - (#{$spacing-unit}));
+            max-width:         calc(800px - (#{$spacing-unit}));
+            padding-right: $spacing-unit / 2;
+            padding-left: $spacing-unit / 2;
+        }
+    }
+}
+
+
+
+/**
+ * Clearfix
+ */
+%clearfix {
+
+    &:after {
+        content: "";
+        display: table;
+        clear: both;
+    }
+}
+
+
+
+/**
+ * Icons
+ */
+.icon {
+
+    > svg {
+        display: inline-block;
+        width: 16px;
+        height: 16px;
+        vertical-align: middle;
+
+        path {
+            fill: $grey-color;
+        }
+    }
+}
diff --git a/challenge-bot.com/_sass/_layout.scss b/challenge-bot.com/_sass/_layout.scss
new file mode 100644 (file)
index 0000000..65affb4
--- /dev/null
@@ -0,0 +1,241 @@
+/**
+ * Site header
+ */
+.site-header {
+    border-top: 5px solid $grey-color-dark;
+    border-bottom: 1px solid $grey-color-light;
+    min-height: 56px;
+
+    // Positioning context for the mobile navigation icon
+    position: relative;
+}
+
+.site-title {
+    font-size: 26px;
+    line-height: 56px;
+    letter-spacing: -1px;
+    margin-bottom: 0;
+    float: left;
+    margin-right: 20px;
+
+    /*&,
+    &:visited {
+        color: $grey-color-dark;
+    }*/
+}
+
+.site-nav {
+    float: right;
+    line-height: 56px;
+
+    .menu-icon {
+        display: none;
+    }
+
+    .page-link {
+        /*color: $text-color;*/
+        line-height: $base-line-height;
+        font-size: 1.5*$base-font-size;
+
+        // Gaps between nav items, but not on the first one
+        &:not(:first-child) {
+            margin-left: 20px;
+        }
+    }
+
+    @include media-query($on-palm) {
+        position: absolute;
+        top: 9px;
+        right: 30px;
+        background-color: $background-color;
+        border: 1px solid $grey-color-light;
+        border-radius: 5px;
+        text-align: right;
+
+        .menu-icon {
+            display: block;
+            float: right;
+            width: 36px;
+            height: 26px;
+            line-height: 0;
+            padding-top: 10px;
+            text-align: center;
+
+            > svg {
+                width: 18px;
+                height: 15px;
+
+                path {
+                    fill: $grey-color-dark;
+                }
+            }
+        }
+
+        .trigger {
+            clear: both;
+            display: none;
+        }
+
+        &:hover .trigger {
+            display: block;
+            padding-bottom: 5px;
+        }
+
+        .page-link {
+            display: block;
+            padding: 5px 10px;
+        }
+    }
+}
+
+
+
+/**
+ * Site footer
+ */
+.site-footer {
+    border-top: 1px solid $grey-color-light;
+    padding: $spacing-unit 0;
+}
+
+.footer-heading {
+    font-size: 18px;
+    margin-bottom: $spacing-unit / 2;
+}
+
+.contact-list,
+.social-media-list {
+    list-style: none;
+    margin-left: 0;
+}
+
+.footer-col-wrapper {
+    font-size: 15px;
+    color: $grey-color;
+    margin-left: -$spacing-unit / 2;
+    @extend %clearfix;
+    .text {
+        font-size: 0.95*$base-font-size;
+    }
+}
+
+.footer-col {
+    float: left;
+    margin-bottom: $spacing-unit / 2;
+    padding-left: $spacing-unit / 2;
+}
+
+.footer-col-1 {
+    width: -webkit-calc(35% - (#{$spacing-unit} / 2));
+    width:         calc(35% - (#{$spacing-unit} / 2));
+}
+
+.footer-col-2 {
+    width: -webkit-calc(20% - (#{$spacing-unit} / 2));
+    width:         calc(20% - (#{$spacing-unit} / 2));
+}
+
+.footer-col-3 {
+    width: -webkit-calc(45% - (#{$spacing-unit} / 2));
+    width:         calc(45% - (#{$spacing-unit} / 2));
+}
+
+@include media-query($on-laptop) {
+    .footer-col-1,
+    .footer-col-2 {
+        width: -webkit-calc(50% - (#{$spacing-unit} / 2));
+        width:         calc(50% - (#{$spacing-unit} / 2));
+    }
+
+    .footer-col-3 {
+        width: -webkit-calc(100% - (#{$spacing-unit} / 2));
+        width:         calc(100% - (#{$spacing-unit} / 2));
+    }
+}
+
+@include media-query($on-palm) {
+    .footer-col {
+        float: none;
+        width: -webkit-calc(100% - (#{$spacing-unit} / 2));
+        width:         calc(100% - (#{$spacing-unit} / 2));
+    }
+}
+
+
+
+/**
+ * Page content
+ */
+.page-content {
+    padding: $spacing-unit 0;
+}
+
+.page-heading {
+    font-size: 20px;
+}
+
+.post-list {
+    margin-left: 0;
+    list-style: none;
+
+    > li {
+        margin-bottom: $spacing-unit;
+    }
+}
+
+.post-meta {
+    font-size: $small-font-size;
+    color: $grey-color;
+}
+
+.post-link {
+    display: block;
+    font-size: 24px;
+}
+
+
+
+/**
+ * Posts
+ */
+.post-header {
+    margin-bottom: $spacing-unit;
+}
+
+.post-title {
+    font-size: 42px;
+    letter-spacing: -1px;
+    line-height: 1;
+
+    @include media-query($on-laptop) {
+        font-size: 36px;
+    }
+}
+
+.post-content {
+    margin-bottom: $spacing-unit;
+
+    h2 {
+        font-size: 32px;
+
+        @include media-query($on-laptop) {
+            font-size: 28px;
+        }
+    }
+
+    h3 {
+        font-size: 26px;
+
+        @include media-query($on-laptop) {
+            font-size: 22px;
+        }
+    }
+
+    h4 {
+        font-size: 20px;
+
+        @include media-query($on-laptop) {
+            font-size: 18px;
+        }
+    }
+}
diff --git a/challenge-bot.com/_sass/_syntax-highlighting.scss b/challenge-bot.com/_sass/_syntax-highlighting.scss
new file mode 100644 (file)
index 0000000..e36627d
--- /dev/null
@@ -0,0 +1,67 @@
+/**
+ * Syntax highlighting styles
+ */
+.highlight {
+    background: #fff;
+    @extend %vertical-rhythm;
+
+    .c     { color: #998; font-style: italic } // Comment
+    .err   { color: #a61717; background-color: #e3d2d2 } // Error
+    .k     { font-weight: bold } // Keyword
+    .o     { font-weight: bold } // Operator
+    .cm    { color: #998; font-style: italic } // Comment.Multiline
+    .cp    { color: #999; font-weight: bold } // Comment.Preproc
+    .c1    { color: #998; font-style: italic } // Comment.Single
+    .cs    { color: #999; font-weight: bold; font-style: italic } // Comment.Special
+    .gd    { color: #000; background-color: #fdd } // Generic.Deleted
+    .gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
+    .ge    { font-style: italic } // Generic.Emph
+    .gr    { color: #a00 } // Generic.Error
+    .gh    { color: #999 } // Generic.Heading
+    .gi    { color: #000; background-color: #dfd } // Generic.Inserted
+    .gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
+    .go    { color: #888 } // Generic.Output
+    .gp    { color: #555 } // Generic.Prompt
+    .gs    { font-weight: bold } // Generic.Strong
+    .gu    { color: #aaa } // Generic.Subheading
+    .gt    { color: #a00 } // Generic.Traceback
+    .kc    { font-weight: bold } // Keyword.Constant
+    .kd    { font-weight: bold } // Keyword.Declaration
+    .kp    { font-weight: bold } // Keyword.Pseudo
+    .kr    { font-weight: bold } // Keyword.Reserved
+    .kt    { color: #458; font-weight: bold } // Keyword.Type
+    .m     { color: #099 } // Literal.Number
+    .s     { color: #d14 } // Literal.String
+    .na    { color: #008080 } // Name.Attribute
+    .nb    { color: #0086B3 } // Name.Builtin
+    .nc    { color: #458; font-weight: bold } // Name.Class
+    .no    { color: #008080 } // Name.Constant
+    .ni    { color: #800080 } // Name.Entity
+    .ne    { color: #900; font-weight: bold } // Name.Exception
+    .nf    { color: #900; font-weight: bold } // Name.Function
+    .nn    { color: #555 } // Name.Namespace
+    .nt    { color: #000080 } // Name.Tag
+    .nv    { color: #008080 } // Name.Variable
+    .ow    { font-weight: bold } // Operator.Word
+    .w     { color: #bbb } // Text.Whitespace
+    .mf    { color: #099 } // Literal.Number.Float
+    .mh    { color: #099 } // Literal.Number.Hex
+    .mi    { color: #099 } // Literal.Number.Integer
+    .mo    { color: #099 } // Literal.Number.Oct
+    .sb    { color: #d14 } // Literal.String.Backtick
+    .sc    { color: #d14 } // Literal.String.Char
+    .sd    { color: #d14 } // Literal.String.Doc
+    .s2    { color: #d14 } // Literal.String.Double
+    .se    { color: #d14 } // Literal.String.Escape
+    .sh    { color: #d14 } // Literal.String.Heredoc
+    .si    { color: #d14 } // Literal.String.Interpol
+    .sx    { color: #d14 } // Literal.String.Other
+    .sr    { color: #009926 } // Literal.String.Regex
+    .s1    { color: #d14 } // Literal.String.Single
+    .ss    { color: #990073 } // Literal.String.Symbol
+    .bp    { color: #999 } // Name.Builtin.Pseudo
+    .vc    { color: #008080 } // Name.Variable.Class
+    .vg    { color: #008080 } // Name.Variable.Global
+    .vi    { color: #008080 } // Name.Variable.Instance
+    .il    { color: #099 } // Literal.Number.Integer.Long
+}
diff --git a/challenge-bot.com/about.md b/challenge-bot.com/about.md
new file mode 100644 (file)
index 0000000..b4bde15
--- /dev/null
@@ -0,0 +1,45 @@
+---
+layout: default
+title: about
+permalink: /about/
+---
+
+## What is challenge-bot?
+
+The [challenge-bot](http://goo.gl/fHGKyO) course is an 8-hour long
+ course where we walk you through the process of building your own
+ robot, which you will keep. The goal of this class is to teach you the
+ basics of robotics, get you excited about making stuff, and empower you
+ to go out and create new robotics projects on your own after the class.
+
+## Team
+
+### Daniel Watson
+
+<img class="person" alt="danny" src="/images/danny.png"/>
+
+Daniel simulated a self driving car in a massive online class a few
+ years ago.  Since then he has worked towards making this happen in the
+ real world.  Along the way, he has learned a great deal about
+ electronics, and mechanics.  He now has a very solid understanding of
+ a very basic robot.
+
+He rock climbs, and makes robots.
+
+### Erin Bennett
+
+<img class="person" alt="erin" src="/images/erin.png"/>
+
+Erin learned to program in a Linguistics class, where she explored text
+ corpora and drew pictures of finite state machines. A few years later
+ while programming a remote-controlled robot, she implemented her first
+ finite state machine. She was so happy, she made up a song about it.
+
+She enjoys spending her time juggling, sleeping, drawing, designing
+ webpages, putting together robots, and making computational models of
+ cognition and language.
+
+## Contact Us
+
+For more information or to sign up for classes, contact
+ [Daniel Watson](ozzloy@gmail.com).
diff --git a/challenge-bot.com/css/main.scss b/challenge-bot.com/css/main.scss
new file mode 100755 (executable)
index 0000000..88fe456
--- /dev/null
@@ -0,0 +1,66 @@
+---
+# Only the main Sass file needs front matter (the dashes are enough)
+---
+@charset "utf-8";
+
+
+
+// Our variables
+$base-font-family: monospace;//Helvetica, Arial, sans-serif;
+$special-font: monospace;
+$base-font-size:   12px;
+$small-font-size:  $base-font-size * 0.875;
+$base-line-height: 1.5;
+
+$spacing-unit:     30px;
+
+$text-color:       #111;
+$background-color: #fdfdfd;
+$brand-color:      #00CC00;
+$highlight-color:      #00ff00;
+
+$grey-color:       #828282;
+$grey-color-light: lighten($grey-color, 40%);
+$grey-color-dark:  darken($grey-color, 25%);
+
+$on-palm:          999px;
+$on-laptop:        1000px;
+
+$h1-color:             #267F26;
+$h2-color:             #007F00;
+
+
+
+// Using media queries with like this:
+// @include media-query($palm) {
+//     .wrapper {
+//         padding-right: $spacing-unit / 2;
+//         padding-left: $spacing-unit / 2;
+//     }
+// }
+@mixin media-query($device) {
+    @media screen and (max-width: $device) {
+        @content;
+    }
+}
+
+
+
+// Import partials from `sass_dir` (defaults to `_sass`)
+@import
+        "base",
+        "layout",
+        "syntax-highlighting"
+;
+
+.main {
+       width: 90%;
+}
+.person {
+       width: 30%;
+}
+
+iframe {
+       width: 560;
+       height: 315;
+}
\ No newline at end of file
diff --git a/challenge-bot.com/favicon.ico b/challenge-bot.com/favicon.ico
new file mode 100644 (file)
index 0000000..cdeffa8
Binary files /dev/null and b/challenge-bot.com/favicon.ico differ
diff --git a/challenge-bot.com/images/IMG_20141113_213443.jpg b/challenge-bot.com/images/IMG_20141113_213443.jpg
new file mode 100644 (file)
index 0000000..9248e98
Binary files /dev/null and b/challenge-bot.com/images/IMG_20141113_213443.jpg differ
diff --git a/challenge-bot.com/images/IMG_20141113_213958.jpg b/challenge-bot.com/images/IMG_20141113_213958.jpg
new file mode 100644 (file)
index 0000000..d15c47f
Binary files /dev/null and b/challenge-bot.com/images/IMG_20141113_213958.jpg differ
diff --git a/challenge-bot.com/images/bunny.png b/challenge-bot.com/images/bunny.png
new file mode 100644 (file)
index 0000000..66a1728
Binary files /dev/null and b/challenge-bot.com/images/bunny.png differ
diff --git a/challenge-bot.com/images/bunny.svg b/challenge-bot.com/images/bunny.svg
new file mode 100644 (file)
index 0000000..cb561e8
--- /dev/null
@@ -0,0 +1,145 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="271.34128"
+   height="335.05386"
+   id="svg3246"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="robobunny.svg">
+  <defs
+     id="defs3248" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.35"
+     inkscape:cx="69.357179"
+     inkscape:cy="91.432766"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="457"
+     inkscape:window-height="414"
+     inkscape:window-x="1"
+     inkscape:window-y="48"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata3251">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-534.21425,-60.169655)">
+    <g
+       style="display:inline"
+       id="g4566"
+       transform="translate(222.27699,-2350.1027)">
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path3082"
+         d="m 410.38367,2716.98 c -6.88485,10.0991 -35.04967,18.4445 -34.66028,-9.9894 -14.05949,11.6898 -44.72826,3.4786 -34.66028,-24.26 -16.47041,3.3731 -30.41788,-13.6648 -9.70489,-32.8222 -24.4257,-6.7899 -23.77121,-44.6057 -1.38641,-37.1035 -23.58176,-10.846 -7.55497,-45.9001 8.31847,-38.5305 -15.38105,-11.5662 0.64894,-34.3452 11.0913,-28.5412 -7.91012,-14.9898 22.38174,-25.6376 23.56898,-7.1351 0.13563,-17.1464 12.2959,-10.8589 18.02335,-4.2812 4.88619,-20.3133 17.615,-23.6342 38.50104,-9.2811 4.57638,-5.5251 7.25316,-16.1159 19.40976,-1.4271 8.94307,-10.3141 14.40167,-6.6903 18.02335,4.2812 0.78064,-9.1115 20.95856,-16.6098 23.56898,7.1353 15.87794,-8.1219 19.41534,-1.8466 19.40977,8.5622 12.58303,-6.7506 20.00712,-5.7628 16.63694,11.4164 9.107,-0.6729 20.65039,-6.8276 19.63692,15.2706 27.01513,5.6319 11.10619,13.8934 11.25051,21.9681 3.48463,7.4506 26.54385,7.0714 6.38641,23.9789 3.86095,8.6143 19.22149,24.8961 -7.84075,32.2599 11.34728,11.8041 4.61371,31.7548 -5.54566,22.8329 5.23513,17.1885 -9.94017,28.7678 -16.63692,21.4058 17.21974,20.5948 -8.30243,30.5684 -18.02335,19.9788 -6.00395,10.2585 -12.48571,19.2429 -26.3418,8.5624 -9.70488,7.4298 -19.40975,11.0814 -29.11463,0 -12.11855,11.9152 -22.42741,9.3528 -31.88747,0 -7.39605,8.2908 -13.29301,6.088 -18.02334,-4.2812 z"
+         style="fill:#e9ddaf;stroke:#000000;stroke-width:2.3454895;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cscc"
+         inkscape:connector-curvature="0"
+         id="path3109"
+         d="m 418.68742,2655.6503 c 1.70784,4.8878 -35.01999,67.188 -20.81246,82.1218 5.87569,6.176 27.74995,-0.5994 27.74995,-0.5994 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="csssscc"
+         inkscape:connector-curvature="0"
+         id="path3107"
+         d="m 417.99367,2658.6475 c 0,0 -22.80307,67.5427 3.46874,83.92 11.33471,7.0659 26.26304,-10.4114 40.23743,-10.1903 13.89189,0.2199 25.84627,13.4028 39.54365,11.3892 8.9376,-1.3139 18.12427,-7.1183 21.50621,-14.3862 8.80822,-18.9295 -10.40622,-60.5424 -10.40622,-60.5424 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="ccsccccccccc"
+         inkscape:connector-curvature="0"
+         id="path2987"
+         d="m 383.66871,2569.8562 c -53.97897,-65.7675 -33.84345,-113.4205 -13.78268,-157.1877 3.49631,-5.5683 25.82818,7.7806 29.72749,15.6539 46.6157,94.1237 34.3487,114.8322 37.13299,129.8848 13.0962,-2.626 31.07928,-4.2299 45.31034,2.7004 -7.82199,-39.9183 -1.09236,-68.5868 14.24037,-90.6044 10.80163,-8.2048 35.86003,-14.7253 73.7911,-6.7115 -14.62161,35.959 -26.32262,70.6563 -45.31032,108.5017 15.72981,11.8194 38.08357,43.7611 26.64996,65.2048 -19.22169,34.9321 -62.48846,38.1079 -95.26274,36.5853 -62.9646,-5.0501 -81.21112,-24.2782 -90.84275,-52.3693 -4.7598,-14.5177 5.67373,-36.4634 18.34624,-51.658 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path2993"
+         d="m 465.9998,2653.1126 c -0.9154,0 -12.58684,-10.6779 -12.58684,-10.6779 l 21.51205,-1.7796 z"
+         style="fill:#d35f5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3177"
+         d="m 492.38845,2561.86 18.32889,6.8856 36.65777,-70.922 -36.65777,-13.7712 c -14.33656,22.3816 -16.46221,50.0387 -18.32889,77.8076 z"
+         style="fill:#f4d7d7;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path3084"
+         d="m 496.09974,2470.6287 c 11.29485,67.2222 22.40959,74.1801 68.89781,121.462 20.84111,-31.3828 23.18514,-79.6405 4.63953,-128.6552 -30.01118,-3.5412 -58.1318,-5.0405 -73.53734,7.1932 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path3157"
+         d="m 399.15025,2567.3685 22.31342,-4.1314 c -7.00383,-45.9337 -18.03876,-90.3747 -39.8454,-130.827 -10.42885,31.8955 -31.03486,55.6037 17.53198,134.9584 z"
+         style="fill:#f4d7d7;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path2989-7"
+         d="m 381.70153,2613.4425 c 17.65026,-25.0577 41.8304,-32.0825 53.53087,-24.7949 13.41929,9.7635 16.83889,16.8119 19.48062,26.4952 6.60302,22.9266 -24.20849,41.575 -44.73875,29.1821 -16.7867,-14.7512 -19.58522,-25.5847 -22.57921,-38.6512"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path2989-7-4"
+         d="m 548.39794,2612.1662 c -17.65026,-25.0577 -41.8304,-32.0825 -53.53087,-24.7949 -13.41929,9.7635 -16.83889,16.8119 -19.48062,26.4952 -6.60302,22.9266 24.20849,41.575 44.73875,29.1821 16.7867,-14.7512 19.58522,-25.5847 22.57921,-38.6512"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         transform="matrix(3.1052191,0,0,2.1212488,29.521835,2164.2041)"
+         d="m 136,214.55386 c 0,6.35128 -3.80558,11.5 -8.5,11.5 -4.69442,0 -8.5,-5.14872 -8.5,-11.5 0,-6.35127 3.80558,-11.5 8.5,-11.5 4.69442,0 8.5,5.14873 8.5,11.5 z"
+         sodipodi:ry="11.5"
+         sodipodi:rx="8.5"
+         sodipodi:cy="214.55386"
+         sodipodi:cx="127.5"
+         id="path3250-3-5"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25122559;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(3.1052191,0,0,2.1212488,111.02182,2162.2041)"
+         d="m 136,214.55386 c 0,6.35128 -3.80558,11.5 -8.5,11.5 -4.69442,0 -8.5,-5.14872 -8.5,-11.5 0,-6.35127 3.80558,-11.5 8.5,-11.5 4.69442,0 8.5,5.14873 8.5,11.5 z"
+         sodipodi:ry="11.5"
+         sodipodi:rx="8.5"
+         sodipodi:cy="214.55386"
+         sodipodi:cx="127.5"
+         id="path3250-3-5-5"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25122559;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+  </g>
+</svg>
diff --git a/challenge-bot.com/images/bunny2.svg b/challenge-bot.com/images/bunny2.svg
new file mode 100644 (file)
index 0000000..77e40df
--- /dev/null
@@ -0,0 +1,1253 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="898.78998"
+   height="530.17023"
+   sodipodi:docname="bunny2.svg"
+   inkscape:export-filename="/home/feste/danny-woodland-creatures/woodland-creatures-and-robots.png"
+   inkscape:export-xdpi="100"
+   inkscape:export-ydpi="100">
+  <metadata
+     id="metadata8">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1440"
+     inkscape:window-height="850"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="1"
+     inkscape:cx="442.18215"
+     inkscape:cy="292.23123"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="layer2"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" />
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="robots"
+     style="display:none"
+     transform="translate(43.1909,100.35666)">
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 96.45628,196.8262 c 3.61965,-9.6968 7.58512,-19.6824 29.11873,-19.2823 14.63516,1.7704 27.64254,22.9231 27.33814,31.3885 1.7546,12.7146 -14.31624,29.7349 -38.82029,20.1455 -9.961,-6.6375 -20.9174,-20.8695 -17.63658,-32.2517 z"
+       id="path2991-2"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <g
+       style="display:inline"
+       id="g3686"
+       transform="translate(-103.93726,-2479.2724)">
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,685.41661,2369.4564)"
+         d="m 420,266.55386 a 26,29 0 1 1 -52,0 26,29 0 1 1 52,0 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-8"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1036.9209,2643.5927 33.5,32 c -15.4079,-17.8989 12.167,-32.8673 21,-23.5 l -34,-29.5 c -14.2456,-10.5477 -31.809,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.9396,15.5 -15.5,15.5 -8.5604,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.9396,-15.5 15.5,-15.5 8.5604,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         id="path3171-8" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-7"
+         d="m 1029.9209,2608.5927 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-2"
+         d="m 1036.9209,2606.5927 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142"
+         d="m 747.43726,2609.3263 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         transform="matrix(0.82973503,0,0,0.85270853,479.70235,2487.332)"
+         d="m 608.5,285.55386 a 13.75,12.5 0 1 1 -27.5,0 13.75,12.5 0 1 1 27.5,0 z"
+         sodipodi:ry="12.5"
+         sodipodi:rx="13.75"
+         sodipodi:cy="285.55386"
+         sodipodi:cx="594.75"
+         id="path3240"
+         style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.37771606;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccsssss"
+         inkscape:connector-curvature="0"
+         d="m 958.43726,2688.8263 1.5,39 c 9.45461,5.4248 18.37747,6.0639 26.5,-0.5 l -0.5,-38 c -8.7559,0.6548 -17.44911,1.4351 -27.5,-0.5 z m 48.50004,-8 c 0,5.2467 -14.66271,9.5 -32.75004,9.5 -18.08733,0 -32.75,-4.2533 -32.75,-9.5 0,-5.2467 14.66267,-9.5 32.75,-9.5 18.08733,0 32.75004,4.2533 32.75004,9.5 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3236" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path2997"
+         d="m 736.93726,2599.3349 99,94 300.00004,-1 -104,-90 -295.00004,-3 z m 38,9 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39.00004,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -210.75004,19.6875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00004,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8.00004,-2.0147 -8.00004,-4.5 0,-2.4853 3.58174,-4.5 8.00004,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -217.50004,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00004,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -213.50004,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.50004,0.875 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 40,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z"
+         style="fill:#c87137;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144"
+         d="m 736.43726,2611.3263 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 719.43726,2646.3263 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3171" />
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,333.93297,2374.19)"
+         d="m 420,266.55386 a 26,29 0 1 1 -52,0 26,29 0 1 1 52,0 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <rect
+         y="2576.4688"
+         x="834.07983"
+         height="117.71489"
+         width="32.71489"
+         id="rect3635"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2580.5693"
+         x="837.46136"
+         height="50.179657"
+         width="25.951843"
+         id="rect3637"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(1.2975921,0,0,1.2091484,177.63574,2344.7201)"
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.2975921,0,0,1.2091484,178.28454,2367.3917)" />
+      <rect
+         y="2573.4771"
+         x="1103.5881"
+         height="117.69823"
+         width="33.198231"
+         id="rect3635-8"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2577.5952"
+         x="1107.0363"
+         height="51.637249"
+         width="26.301964"
+         id="rect3637-8"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-38"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,438.30884,2334.8953)" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-6"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,438.96638,2358.2253)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4030"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,679.2257,2521.3016)"
+         d="m 420,266.55386 a 26,29 0 1 1 -52,0 26,29 0 1 1 52,0 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-8-3"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1030.73,2795.4379 33.5,32 c -15.4079,-17.8989 12.167,-32.8673 21,-23.5 l -34,-29.5 c -14.2456,-10.5477 -31.809,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.9396,15.5 -15.5,15.5 -8.5604,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.9396,-15.5 15.5,-15.5 8.5604,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         id="path3171-8-5" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-7-2"
+         d="m 1023.73,2760.4379 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-2-1"
+         d="m 1030.73,2758.4379 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4354"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         transform="matrix(0.82973503,0,0,0.85270853,473.51144,2639.1772)"
+         d="m 608.5,285.55386 a 13.75,12.5 0 1 1 -27.5,0 13.75,12.5 0 1 1 27.5,0 z"
+         sodipodi:ry="12.5"
+         sodipodi:rx="13.75"
+         sodipodi:cy="285.55386"
+         sodipodi:cx="594.75"
+         id="path3240-2"
+         style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.37771606;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccsssss"
+         inkscape:connector-curvature="0"
+         d="m 952.24635,2840.6715 1.5,39 c 9.45461,5.4248 18.37747,6.0639 26.5,-0.5 l -0.5,-38 c -8.7559,0.6548 -17.44911,1.4351 -27.5,-0.5 z m 48.50005,-8 c 0,5.2467 -14.66272,9.5 -32.75005,9.5 -18.08733,0 -32.75,-4.2533 -32.75,-9.5 0,-5.2467 14.66267,-9.5 32.75,-9.5 18.08733,0 32.75005,4.2533 32.75005,9.5 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3236-0" />
+    </g>
+    <path
+       style="fill:#c87137;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 597.80909,302.90766 98.99995,94 300.0001,-1 -104,-90 -295.00005,-3 z m 38,9 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 38.99995,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39.0001,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -210.75005,19.6875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39.99995,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40.0001,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8.0001,-2.0147 -8.0001,-4.5 0,-2.4853 3.5818,-4.5 8.0001,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -217.5001,17.125 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.41823,0 -7.99995,-2.0147 -7.99995,-4.5 0,-2.4853 3.58172,-4.5 7.99995,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40.0001,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -213.5001,17.125 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5001,0.875 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 40,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z"
+       id="path2997-8"
+       inkscape:connector-curvature="0" />
+    <g
+       style="display:inline"
+       id="g4024"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-24"
+         d="m 741.24635,2761.1715 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-4"
+         d="m 730.24635,2763.1715 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 713.24635,2798.1715 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3171-7" />
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,327.74206,2526.0352)"
+         d="m 420,266.55386 a 26,29 0 1 1 -52,0 26,29 0 1 1 52,0 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-5"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       id="g3626"
+       transform="translate(-152.93726,-2169.2724)"
+       style="stroke-width:2;display:inline">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3242"
+         d="m 881.43726,2503.3263 75.5,0 38,40.5 -78.5,0.5 z"
+         style="opacity:0.86000001;fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244"
+         d="m 891.93726,2507.3263 27,33"
+         style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0"
+         d="m 898.43726,2507.8263 27,33"
+         style="fill:#0000ff;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-6"
+         d="m 947.68726,2506.5763 27,33"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-7"
+         d="m 954.18726,2507.0763 27,33"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 963.65601,2537.7013 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.15625,-3.875 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z"
+         style="opacity:0.86000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3289-9-2-1-1-4" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3287"
+         d="m 925.93726,2516.3263 10.5,0 10,11 -10,-0.5 z"
+         style="fill:#4d4d4d;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3626-9"
+       transform="translate(-131.18726,-2463.7724)">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3242-1"
+         d="m 881.43726,2503.3263 75.5,0 38,40.5 -78.5,0.5 z"
+         style="opacity:0.86000001;fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-7"
+         d="m 891.93726,2507.3263 27,33"
+         style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-5"
+         d="m 898.43726,2507.8263 27,33"
+         style="fill:#0000ff;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-6-4"
+         d="m 947.68726,2506.5763 27,33"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-7-7"
+         d="m 954.18726,2507.0763 27,33"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 963.65601,2537.7013 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.15625,-3.875 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z"
+         style="opacity:0.86000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3289-9-2-1-1-4-4" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3287-7"
+         d="m 925.93726,2516.3263 10.5,0 10,11 -10,-0.5 z"
+         style="fill:#4d4d4d;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3939"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="rect3821"
+         d="m 938.93726,2783.3263 77.00004,0 27,29 -77.00004,0 z"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccc"
+         inkscape:connector-curvature="0"
+         d="m 656.9022,392.15274 0.35355,5.48007 4.77297,3.00521 65.58416,0.17677 -0.35356,-5.12652 -64.70026,-0.35355 z m -21.30515,-22.24839 -0.0125,6.54343 2.53411,3.13111 59.88136,0.22501 15.665,12.6835 5.552,0.2213 -20.5088,-18.5035 -60.24779,-0.9278 M 636,370.3039 l 64.25004,0.75 26.9268,24.5 c -21.6705,-0.18 -43.34174,-0.2678 -65.01263,-0.3891 l -4.59619,-3.2751 61.76772,0.8661 -20.5857,-18.4519 L 638.5,373.3342 c -1.52485,-1.8308 -2.0697,-2.48862 -2.5,-3.0303 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         transform="translate(311.93726,2408.2724)"
+         id="path3837" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4036"
+       transform="translate(-132.93726,-2448.2724)">
+      <rect
+         y="2728.314"
+         x="827.88892"
+         height="117.71489"
+         width="32.71489"
+         id="rect3635-0"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2732.4146"
+         x="831.27045"
+         height="50.179657"
+         width="25.951843"
+         id="rect3637-2"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(1.2975921,0,0,1.2091484,171.44483,2496.5653)"
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-5"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-9"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.2975921,0,0,1.2091484,172.09363,2519.2369)" />
+      <rect
+         y="2725.3223"
+         x="1097.3972"
+         height="117.69823"
+         width="33.198231"
+         id="rect3635-8-9"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2729.4404"
+         x="1100.8453"
+         height="51.637249"
+         width="26.301964"
+         id="rect3637-8-6"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-38-9"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.11793,2486.7405)" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-6-7"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.77547,2510.0705)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4327"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3824"
+         d="m 610.5,391.05386 c -1.72986,-30.59243 5.62488,-23.938 10,-29.5"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3826"
+         d="m 613,395.05386 c 9.12925,-57.54336 11.25419,-58.11579 9.75,-33.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3868"
+         d="m 590.5,386.80386 c -8.56524,-19.39284 -18.51819,-21.43923 -29.75,-7.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3828"
+         d="m 596.5,390.55386 c -7.7447,-11.73764 -55.08005,-11.27012 -46.5,8.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3840"
+         d="m 548.5,340.55386 c 8.58025,20.07082 22.07432,21.69492 24.25,45.25"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3842"
+         d="m 549,328.30386 c 6.51884,22.23202 6.33296,49.59958 22.75,64.25"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3844"
+         d="m 549.5,334.80386 c 35.96957,-10.40282 66.15985,17.99812 97.75,37"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3846"
+         d="m 548.75,338.05386 c 23.62337,48.44848 25.43799,5.01763 102.5,33.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3848"
+         d="m 785.5,321.80386 c -77.75874,1.86668 -91.1735,58.49418 -136.75,87.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3850"
+         d="m 785,326.05386 c 7.95622,102.26096 -75.70327,24.65477 -143,83.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3852"
+         d="m 785.5,331.80386 c -66.20443,-1.37723 -96.34367,17.4639 -119,40.5"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3854"
+         d="m 785,335.55386 c -57.1417,-10.19765 -110.37125,-15.92429 -112.5,36.75"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3858"
+         d="m 655.5,371.55386 c -18.54382,-34.58431 -34.3177,-32.23597 -46.5,18"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3860"
+         d="m 660.25,371.30386 c -55.17118,-30.89216 -71.11036,-24.06125 -52.75,15.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3862"
+         d="m 679.25,372.05386 c -29,5.41667 -33.70349,-30.3651 -87,16.25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3864"
+         d="m 683.25,372.30386 c -27.33333,8.08333 -68.03899,-54.03803 -82,24.25"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3870"
+         d="m 623.75,397.30386 c 0.80637,-21.72071 2.3829,-31.42674 6.5,-1.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3872"
+         d="m 578.25,392.55386 c 8.68949,-37.34071 12.56535,-6.32795 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3830"
+         d="m 600.75,395.80386 c -21.5,-45.5 -51.25,6.25 -51.25,6.25"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3874"
+         d="m 579.75,394.80386 c 7.04126,-22.84459 12.466,-7.70109 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3876"
+         d="m 610.75,391.30386 c 12.37569,-37.52213 16.64953,-19.00647 21.25,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3878"
+         d="m 611.25,393.55386 c 11.53324,-32.27663 17.23646,-22.68305 21.5,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3856"
+         d="m 653.75,371.30386 c -9.54644,-79.5343 -23.09167,-10.8278 -35.75,25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3866"
+         d="m 686.25,372.05386 c -28.16667,8.75 -41.90747,-25.77758 -84.5,26.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3880"
+         d="m 588.5,405.80386 c 23.41611,-8.30112 67.82862,-12.54586 54,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="bunny"
+     style="display:inline"
+     transform="translate(-268.74636,-2307.9157)">
+    <g
+       transform="translate(-536.66042,-126.88226)"
+       style="display:inline"
+       id="g4354-8">
+      <path
+         transform="matrix(0.82973503,0,0,0.85270853,473.51144,2639.1772)"
+         d="m 608.5,285.55386 a 13.75,12.5 0 1 1 -27.5,0 13.75,12.5 0 1 1 27.5,0 z"
+         sodipodi:ry="12.5"
+         sodipodi:rx="13.75"
+         sodipodi:cy="285.55386"
+         sodipodi:cx="594.75"
+         id="path3240-2-5"
+         style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.37771606;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccsssss"
+         inkscape:connector-curvature="0"
+         d="m 952.24635,2840.6715 1.5,39 c 9.45461,5.4248 18.37747,6.0639 26.5,-0.5 l -0.5,-38 c -8.7559,0.6548 -17.44911,1.4351 -27.5,-0.5 z m 48.50005,-8 c 0,5.2467 -14.66272,9.5 -32.75005,9.5 -18.08733,0 -32.75,-4.2533 -32.75,-9.5 0,-5.2467 14.66267,-9.5 32.75,-9.5 18.08733,0 32.75005,4.2533 32.75005,9.5 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3236-0-1" />
+    </g>
+    <g
+       id="g4611">
+      <path
+         transform="matrix(1.0500182,0,0,1.1869584,239.46813,2479.6913)"
+         d="m 420,266.55386 a 26,29 0 1 1 -52,0 26,29 0 1 1 52,0 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-5-0-5"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-4-7-6"
+         d="m 633.10424,2760.4792 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-24-3-5"
+         d="m 638.10424,2758.4792 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 600.10424,2787.4792 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         id="path3171-7-4-4" />
+    </g>
+    <path
+       style="fill:#c87137;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 269.74636,2692.1801 99,94 300.00005,-1 -104,-90 -295.00005,-3 z m 38,9 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39.00005,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -210.75005,19.6875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00004,0.5 c 4.41821,0 8.00001,2.0147 8.00001,4.5 0,2.4853 -3.5818,4.5 -8.00001,4.5 -4.4183,0 -8.00004,-2.0147 -8.00004,-4.5 0,-2.4853 3.58174,-4.5 8.00004,-4.5 z m 39.00001,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -217.50005,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00005,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -213.50005,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.50005,0.875 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 40,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z"
+       id="path2997-8-8"
+       inkscape:connector-curvature="0" />
+    <path
+       id="path3171-7-4"
+       style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 329.17886,2791.9827 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 343.17886,2762.9827 0,21 13,13 0,-22 z"
+       id="path3142-24-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 332.17886,2764.9827 29,25 -2,33 -29,-27 z"
+       id="path3144-4-7"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path3173-5-0"
+       sodipodi:cx="394"
+       sodipodi:cy="266.55386"
+       sodipodi:rx="26"
+       sodipodi:ry="29"
+       d="m 420,266.55386 a 26,29 0 1 1 -52,0 26,29 0 1 1 52,0 z"
+       transform="matrix(1.0500182,0,0,1.1869584,-83.45725,2486.1948)" />
+    <g
+       id="g3626-0"
+       transform="translate(-480.99999,219.99999)"
+       style="stroke-width:2;display:inline">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3242-0"
+         d="m 881.43726,2503.3263 75.5,0 38,40.5 -78.5,0.5 z"
+         style="opacity:0.86000001;fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-02"
+         d="m 891.93726,2507.3263 27,33"
+         style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-0"
+         d="m 898.43726,2507.8263 27,33"
+         style="fill:#0000ff;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-6-3"
+         d="m 947.68726,2506.5763 27,33"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-7-6"
+         d="m 954.18726,2507.0763 27,33"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 963.65601,2537.7013 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.15625,-3.875 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z"
+         style="opacity:0.86000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3289-9-2-1-1-4-48" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3287-2"
+         d="m 925.93726,2516.3263 10.5,0 10,11 -10,-0.5 z"
+         style="fill:#4d4d4d;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <path
+       style="fill:#00ffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 248.5,320.55386 c 86.37365,-75.19603 181.94772,170.62675 252,29 l 4,5.5 c -68.53277,148.8333 -178.81487,-97.98413 -251.5,-30 z"
+       id="path4896"
+       inkscape:connector-curvature="0"
+       transform="translate(311.93726,2408.2724)"
+       sodipodi:nodetypes="ccccc" />
+    <g
+       transform="translate(-460.99999,-59.000005)"
+       style="display:inline"
+       id="g3939-7">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="rect3821-2"
+         d="m 938.93726,2783.3263 77.00004,0 27,29 -77.00004,0 z"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccc"
+         inkscape:connector-curvature="0"
+         d="m 656.9022,392.15274 0.35355,5.48007 4.77297,3.00521 65.58416,0.17677 -0.35356,-5.12652 -64.70026,-0.35355 z m -21.30515,-22.24839 -0.0125,6.54343 2.53411,3.13111 59.88136,0.22501 15.665,12.6835 5.552,0.2213 -20.5088,-18.5035 -60.24779,-0.9278 M 636,370.3039 l 64.25004,0.75 26.9268,24.5 c -21.6705,-0.18 -43.34174,-0.2678 -65.01263,-0.3891 l -4.59619,-3.2751 61.76772,0.8661 -20.5857,-18.4519 L 638.5,373.3342 c -1.52485,-1.8308 -2.0697,-2.48862 -2.5,-3.0303 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         transform="translate(311.93726,2408.2724)"
+         id="path3837-9" />
+    </g>
+    <g
+       id="g4566"
+       transform="translate(-34,-8)">
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path3082"
+         d="m 410.38367,2716.98 c -6.88485,10.0991 -35.04967,18.4445 -34.66028,-9.9894 -14.05949,11.6898 -44.72826,3.4786 -34.66028,-24.26 -16.47041,3.3731 -30.41788,-13.6648 -9.70489,-32.8222 -24.4257,-6.7899 -23.77121,-44.6057 -1.38641,-37.1035 -23.58176,-10.846 -7.55497,-45.9001 8.31847,-38.5305 -15.38105,-11.5662 0.64894,-34.3452 11.0913,-28.5412 -7.91012,-14.9898 22.38174,-25.6376 23.56898,-7.1351 0.13563,-17.1464 12.2959,-10.8589 18.02335,-4.2812 4.88619,-20.3133 17.615,-23.6342 38.50104,-9.2811 4.57638,-5.5251 7.25316,-16.1159 19.40976,-1.4271 8.94307,-10.3141 14.40167,-6.6903 18.02335,4.2812 0.78064,-9.1115 20.95856,-16.6098 23.56898,7.1353 15.87794,-8.1219 19.41534,-1.8466 19.40977,8.5622 12.58303,-6.7506 20.00712,-5.7628 16.63694,11.4164 9.107,-0.6729 20.65039,-6.8276 19.63692,15.2706 27.01513,5.6319 11.10619,13.8934 11.25051,21.9681 3.48463,7.4506 26.54385,7.0714 6.38641,23.9789 3.86095,8.6143 19.22149,24.8961 -7.84075,32.2599 11.34728,11.8041 4.61371,31.7548 -5.54566,22.8329 5.23513,17.1885 -9.94017,28.7678 -16.63692,21.4058 17.21974,20.5948 -8.30243,30.5684 -18.02335,19.9788 -6.00395,10.2585 -12.48571,19.2429 -26.3418,8.5624 -9.70488,7.4298 -19.40975,11.0814 -29.11463,0 -12.11855,11.9152 -22.42741,9.3528 -31.88747,0 -7.39605,8.2908 -13.29301,6.088 -18.02334,-4.2812 z"
+         style="fill:#e9ddaf;stroke:#000000;stroke-width:2.3454895;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cscc"
+         inkscape:connector-curvature="0"
+         id="path3109"
+         d="m 418.68742,2655.6503 c 1.70784,4.8878 -35.01999,67.188 -20.81246,82.1218 5.87569,6.176 27.74995,-0.5994 27.74995,-0.5994 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="csssscc"
+         inkscape:connector-curvature="0"
+         id="path3107"
+         d="m 417.99367,2658.6475 c 0,0 -22.80307,67.5427 3.46874,83.92 11.33471,7.0659 26.26304,-10.4114 40.23743,-10.1903 13.89189,0.2199 25.84627,13.4028 39.54365,11.3892 8.9376,-1.3139 18.12427,-7.1183 21.50621,-14.3862 8.80822,-18.9295 -10.40622,-60.5424 -10.40622,-60.5424 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="ccsccccccccc"
+         inkscape:connector-curvature="0"
+         id="path2987"
+         d="m 383.66871,2569.8562 c -53.97897,-65.7675 -33.84345,-113.4205 -13.78268,-157.1877 3.49631,-5.5683 25.82818,7.7806 29.72749,15.6539 46.6157,94.1237 34.3487,114.8322 37.13299,129.8848 13.0962,-2.626 31.07928,-4.2299 45.31034,2.7004 -7.82199,-39.9183 -1.09236,-68.5868 14.24037,-90.6044 10.80163,-8.2048 35.86003,-14.7253 73.7911,-6.7115 -14.62161,35.959 -26.32262,70.6563 -45.31032,108.5017 15.72981,11.8194 38.08357,43.7611 26.64996,65.2048 -19.22169,34.9321 -62.48846,38.1079 -95.26274,36.5853 -62.9646,-5.0501 -81.21112,-24.2782 -90.84275,-52.3693 -4.7598,-14.5177 5.67373,-36.4634 18.34624,-51.658 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path2993"
+         d="m 465.9998,2653.1126 c -0.9154,0 -12.58684,-10.6779 -12.58684,-10.6779 l 21.51205,-1.7796 z"
+         style="fill:#d35f5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3177"
+         d="m 492.38845,2561.86 18.32889,6.8856 36.65777,-70.922 -36.65777,-13.7712 c -14.33656,22.3816 -16.46221,50.0387 -18.32889,77.8076 z"
+         style="fill:#f4d7d7;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path3084"
+         d="m 496.09974,2470.6287 c 11.29485,67.2222 22.40959,74.1801 68.89781,121.462 20.84111,-31.3828 23.18514,-79.6405 4.63953,-128.6552 -30.01118,-3.5412 -58.1318,-5.0405 -73.53734,7.1932 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path3157"
+         d="m 399.15025,2567.3685 22.31342,-4.1314 c -7.00383,-45.9337 -18.03876,-90.3747 -39.8454,-130.827 -10.42885,31.8955 -31.03486,55.6037 17.53198,134.9584 z"
+         style="fill:#f4d7d7;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path2989-7"
+         d="m 381.70153,2613.4425 c 17.65026,-25.0577 41.8304,-32.0825 53.53087,-24.7949 13.41929,9.7635 16.83889,16.8119 19.48062,26.4952 6.60302,22.9266 -24.20849,41.575 -44.73875,29.1821 -16.7867,-14.7512 -19.58522,-25.5847 -22.57921,-38.6512"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path2989-7-4"
+         d="m 548.39794,2612.1662 c -17.65026,-25.0577 -41.8304,-32.0825 -53.53087,-24.7949 -13.41929,9.7635 -16.83889,16.8119 -19.48062,26.4952 -6.60302,22.9266 24.20849,41.575 44.73875,29.1821 16.7867,-14.7512 19.58522,-25.5847 22.57921,-38.6512"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         transform="matrix(3.1052191,0,0,2.1212488,29.521835,2164.2041)"
+         d="m 136,214.55386 a 8.5,11.5 0 1 1 -17,0 8.5,11.5 0 1 1 17,0 z"
+         sodipodi:ry="11.5"
+         sodipodi:rx="8.5"
+         sodipodi:cy="214.55386"
+         sodipodi:cx="127.5"
+         id="path3250-3-5"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25122559;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(3.1052191,0,0,2.1212488,111.02182,2162.2041)"
+         d="m 136,214.55386 a 8.5,11.5 0 1 1 -17,0 8.5,11.5 0 1 1 17,0 z"
+         sodipodi:ry="11.5"
+         sodipodi:rx="8.5"
+         sodipodi:cy="214.55386"
+         sodipodi:cx="127.5"
+         id="path3250-3-5-5"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25122559;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       transform="translate(-460.99999,-59.000005)"
+       style="display:inline"
+       id="g4327-5">
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3824-4"
+         d="m 610.5,391.05386 c -1.72986,-30.59243 5.62488,-23.938 10,-29.5"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3826-5"
+         d="m 613,395.05386 c 9.12925,-57.54336 11.25419,-58.11579 9.75,-33.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3868-3"
+         d="m 590.5,386.80386 c -8.56524,-19.39284 -18.51819,-21.43923 -29.75,-7.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3828-6"
+         d="m 596.5,390.55386 c -7.7447,-11.73764 -55.08005,-11.27012 -46.5,8.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3840-8"
+         d="m 548.5,340.55386 c 8.58025,20.07082 22.07432,21.69492 24.25,45.25"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3842-1"
+         d="m 549,328.30386 c 6.51884,22.23202 6.33296,49.59958 22.75,64.25"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3844-2"
+         d="m 549.5,334.80386 c 35.96957,-10.40282 66.15985,17.99812 97.75,37"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3846-9"
+         d="m 548.75,338.05386 c 23.62337,48.44848 25.43799,5.01763 102.5,33.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3848-3"
+         d="m 785.5,321.80386 c -77.75874,1.86668 -91.1735,58.49418 -136.75,87.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3850-3"
+         d="m 785,326.05386 c 7.95622,102.26096 -75.70327,24.65477 -143,83.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3852-1"
+         d="m 785.5,331.80386 c -66.20443,-1.37723 -96.34367,17.4639 -119,40.5"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3854-5"
+         d="m 785,335.55386 c -57.1417,-10.19765 -110.37125,-15.92429 -112.5,36.75"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3858-5"
+         d="m 655.5,371.55386 c -18.54382,-34.58431 -34.3177,-32.23597 -46.5,18"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3860-6"
+         d="m 660.25,371.30386 c -55.17118,-30.89216 -71.11036,-24.06125 -52.75,15.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3862-1"
+         d="m 679.25,372.05386 c -29,5.41667 -33.70349,-30.3651 -87,16.25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3864-1"
+         d="m 683.25,372.30386 c -27.33333,8.08333 -68.03899,-54.03803 -82,24.25"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3870-4"
+         d="m 623.75,397.30386 c 0.80637,-21.72071 2.3829,-31.42674 6.5,-1.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3872-5"
+         d="m 578.25,392.55386 c 8.68949,-37.34071 12.56535,-6.32795 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3830-0"
+         d="m 600.75,395.80386 c -21.5,-45.5 -51.25,6.25 -51.25,6.25"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3874-9"
+         d="m 579.75,394.80386 c 7.04126,-22.84459 12.466,-7.70109 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3876-4"
+         d="m 610.75,391.30386 c 12.37569,-37.52213 16.64953,-19.00647 21.25,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3878-1"
+         d="m 611.25,393.55386 c 11.53324,-32.27663 17.23646,-22.68305 21.5,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3856-3"
+         d="m 653.75,371.30386 c -9.54644,-79.5343 -23.09167,-10.8278 -35.75,25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3866-8"
+         d="m 686.25,372.05386 c -28.16667,8.75 -41.90747,-25.77758 -84.5,26.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3880-1"
+         d="m 588.5,405.80386 c 23.41611,-8.30112 67.82862,-12.54586 54,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       transform="translate(-460.99999,-59.000005)"
+       style="display:inline"
+       id="g4036-0">
+      <rect
+         y="2728.314"
+         x="827.88892"
+         height="117.71489"
+         width="32.71489"
+         id="rect3635-0-2"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2732.4146"
+         x="831.27045"
+         height="50.179657"
+         width="25.951843"
+         id="rect3637-2-4"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(1.2975921,0,0,1.2091484,171.44483,2496.5653)"
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-5-8"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-9-1"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.2975921,0,0,1.2091484,172.09363,2519.2369)" />
+      <rect
+         y="2725.3223"
+         x="1097.3972"
+         height="117.69823"
+         width="33.198231"
+         id="rect3635-8-9-4"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2729.4404"
+         x="1100.8453"
+         height="51.637249"
+         width="26.301964"
+         id="rect3637-8-6-5"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-38-9-9"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.11793,2486.7405)" />
+      <path
+         d="m 526,205.80386 a 7,7.25 0 1 1 -14,0 7,7.25 0 1 1 14,0 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-6-7-2"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.77547,2510.0705)" />
+    </g>
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 809.43726,2756.3263 10.5,7 6,-5.5 -10,-6.5 z"
+       id="path4901"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="color:#000000;fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 777.93726,2729.3263 281.00004,0 82,49 -281.00004,0 z"
+       id="rect4898"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 798.5734,2698.7372 c 0,0 -192.16762,-156.7463 -179.77857,-261.9109 6.9547,-59.035 73.40534,-111.6708 132.32432,-119.5482 51.37469,-6.8687 86.88191,70.6396 138.7124,70.2688 55.64943,-0.3981 93.43154,-89.2711 147.83825,-77.5694 64.1907,13.8061 117.5457,89.5918 121.3733,155.1389 4.4646,76.4553 -21.7541,86.1758 -71.5482,139.205 -3.6898,3.9295 -11.342,7.9763 -15.5139,4.5629 -5.4353,-4.4472 -2.5754,-15.5162 1.8252,-20.9894 43.0619,-53.5581 61.9198,-51.4022 57.8595,-120.0408 -3.1762,-53.6926 -46.008,-116.2991 -98.5588,-127.7614 -51.71475,-11.28 -87.60912,73.4449 -140.5376,73.9191 -51.4211,0.4607 -86.76882,-75.6949 -137.79982,-69.3562 -47.51041,5.9013 -101.98377,46.5794 -108.5972,93.9959 -13.4147,96.1798 159.70177,243.6593 159.70177,243.6593 z"
+       id="path4972"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssssssssscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 851.50313,2590.1401 c -0.71317,5.4881 -54.11515,75.969 -55.66748,118.6356 -0.65991,18.1379 37.56586,37.0403 52.92973,27.3774 40.55506,-25.5067 30.11519,-140.5375 30.11519,-140.5375 z"
+       id="path4970"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="csscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 856.97861,2595.6156 c 0,0 -54.59847,128.7678 -26.46486,148.7508 22.31043,15.8467 44.75263,-18.4923 72.09394,-17.3391 27.48283,1.1592 51.82196,38.8003 74.83169,23.7271 31.44682,-20.6002 -25.55228,-155.1388 -25.55228,-155.1388 z"
+       id="path4968"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 817.87405,2434.3893 c -30.24493,37.3226 -32.44028,105.7068 -8.34968,136.5866 24.62942,30.4884 63.03188,32.167 102.20914,31.0277 33.46376,-0.9731 57.33772,0.5863 85.78266,-28.29 33.91363,-34.5813 10.73183,-107.3915 -27.30065,-139.4117 -13.70697,3.8624 -28.23372,20.2509 -41.97875,39.241 -27.92213,-8.1403 -44.35331,-4.7896 -61.9959,-2.6504 -9.66737,-13.9806 -25.98249,-28.5276 -48.36682,-36.5032 z"
+       id="path4905"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccsccccc" />
+    <path
+       style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 809.06808,2549.5302 c -8.07935,-5.9035 8.24805,-42.5532 40.15359,-42.8913 34.00489,-0.3605 43.96523,36.0833 45.17279,40.6098 -24.93603,22.5958 -66.25903,13.2342 -85.32638,2.2815 z"
+       id="path4907"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscc" />
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 831.42633,2511.2018 c -15.92053,15.7522 -15.94847,37.3071 0,46.5416 13.38453,3.7442 26.76906,3.6999 40.15359,1.3689 14.85412,-9.622 16.60483,-31.4905 -3.19404,-47.9105 -12.90234,-5.825 -25.27353,-6.3385 -36.95955,0 z"
+       id="path4909"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 999.00186,2548.7627 c 8.07934,-5.9035 -8.24805,-42.5531 -40.15359,-42.8913 -34.00489,-0.3604 -43.96523,36.0834 -45.17279,40.6099 24.93603,22.5957 66.25904,13.2342 85.32638,2.2814 z"
+       id="path4907-7"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscc" />
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 936.58111,2511.8032 c -15.92053,15.7522 -13.21073,37.7635 2.73775,46.9979 13.51439,3.8741 30.62146,1.1642 41.97875,-3.194 13.94154,-9.622 8.3916,-36.5097 -4.56291,-45.1728 -12.90234,-5.8249 -28.46757,-4.9695 -40.15359,1.3689 z"
+       id="path4909-2"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#e9afaf;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 903.06398,2556.3746 c -3.65032,1.3688 -14.14501,6.388 -14.14501,6.388 l 15.51389,9.1258 13.23243,-10.0384 z"
+       id="path4932"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 846.94022,2569.1507 c -5.47549,0 -78.48202,-10.0384 -78.48202,-10.0384"
+       id="path4934"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 846.94022,2576.4513 -88.52041,9.1259"
+       id="path4936"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 850.59054,2584.6646 -62.05554,17.339"
+       id="path4938"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 956.9063,2567.7818 c 5.47548,0 78.4821,-10.0384 78.4821,-10.0384"
+       id="path4934-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 956.9063,2575.0825 88.5204,9.1258"
+       id="path4936-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 953.25597,2583.2957 62.05553,17.3391"
+       id="path4938-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 884.81235,2579.6454 c 9.93157,4.6534 16.53033,-1.0092 19.16422,-7.3007 3.67805,9.9552 11.9466,11.1582 18.25163,8.6696"
+       id="path4966"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <rect
+       style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect4903"
+       width="283"
+       height="145"
+       x="857.93726"
+       y="2634.3262" />
+  </g>
+</svg>
diff --git a/challenge-bot.com/images/computerkitty.png b/challenge-bot.com/images/computerkitty.png
new file mode 100644 (file)
index 0000000..dbae0c6
Binary files /dev/null and b/challenge-bot.com/images/computerkitty.png differ
diff --git a/challenge-bot.com/images/computerkitty.svg b/challenge-bot.com/images/computerkitty.svg
new file mode 100644 (file)
index 0000000..f036064
--- /dev/null
@@ -0,0 +1,765 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="543.31256"
+   height="472.41043"
+   sodipodi:docname="favicon.svg"
+   inkscape:export-filename="/home/feste/danny-woodland-creatures/woodland-creatures-and-robots.png"
+   inkscape:export-xdpi="100"
+   inkscape:export-ydpi="100">
+  <metadata
+     id="metadata8">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1440"
+     inkscape:window-height="850"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="1"
+     inkscape:cx="93.707974"
+     inkscape:cy="234.47147"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="layer2"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" />
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="robots"
+     style="display:none"
+     transform="translate(-305.28328,100.35662)">
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 96.45628,196.8262 c 3.61965,-9.6968 7.58512,-19.6824 29.11873,-19.2823 14.63516,1.7704 27.64254,22.9231 27.33814,31.3885 1.7546,12.7146 -14.31624,29.7349 -38.82029,20.1455 -9.961,-6.6375 -20.9174,-20.8695 -17.63658,-32.2517 z"
+       id="path2991-2"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <g
+       style="display:inline"
+       id="g3686"
+       transform="translate(-103.93726,-2479.2724)">
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,685.41661,2369.4564)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-8"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1036.9209,2643.5927 33.5,32 c -15.4079,-17.8989 12.167,-32.8673 21,-23.5 l -34,-29.5 c -14.2456,-10.5477 -31.809,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.9396,15.5 -15.5,15.5 -8.5604,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.9396,-15.5 15.5,-15.5 8.5604,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         id="path3171-8" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-7"
+         d="m 1029.9209,2608.5927 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-2"
+         d="m 1036.9209,2606.5927 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142"
+         d="m 747.43726,2609.3263 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         transform="matrix(0.82973503,0,0,0.85270853,479.70235,2487.332)"
+         d="m 608.5,285.55386 c 0,6.90356 -6.15608,12.5 -13.75,12.5 -7.59392,0 -13.75,-5.59644 -13.75,-12.5 0,-6.90356 6.15608,-12.5 13.75,-12.5 7.59392,0 13.75,5.59644 13.75,12.5 z"
+         sodipodi:ry="12.5"
+         sodipodi:rx="13.75"
+         sodipodi:cy="285.55386"
+         sodipodi:cx="594.75"
+         id="path3240"
+         style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.37771606;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccsssss"
+         inkscape:connector-curvature="0"
+         d="m 958.43726,2688.8263 1.5,39 c 9.45461,5.4248 18.37747,6.0639 26.5,-0.5 l -0.5,-38 c -8.7559,0.6548 -17.44911,1.4351 -27.5,-0.5 z m 48.50004,-8 c 0,5.2467 -14.66271,9.5 -32.75004,9.5 -18.08733,0 -32.75,-4.2533 -32.75,-9.5 0,-5.2467 14.66267,-9.5 32.75,-9.5 18.08733,0 32.75004,4.2533 32.75004,9.5 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3236" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path2997"
+         d="m 736.93726,2599.3349 99,94 300.00004,-1 -104,-90 -295.00004,-3 z m 38,9 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39.00004,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -210.75004,19.6875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00004,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8.00004,-2.0147 -8.00004,-4.5 0,-2.4853 3.58174,-4.5 8.00004,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -217.50004,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00004,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -213.50004,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.50004,0.875 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 40,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z"
+         style="fill:#c87137;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144"
+         d="m 736.43726,2611.3263 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 719.43726,2646.3263 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3171" />
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,333.93297,2374.19)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <rect
+         y="2576.4688"
+         x="834.07983"
+         height="117.71489"
+         width="32.71489"
+         id="rect3635"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2580.5693"
+         x="837.46136"
+         height="50.179657"
+         width="25.951843"
+         id="rect3637"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(1.2975921,0,0,1.2091484,177.63574,2344.7201)"
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.2975921,0,0,1.2091484,178.28454,2367.3917)" />
+      <rect
+         y="2573.4771"
+         x="1103.5881"
+         height="117.69823"
+         width="33.198231"
+         id="rect3635-8"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2577.5952"
+         x="1107.0363"
+         height="51.637249"
+         width="26.301964"
+         id="rect3637-8"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-38"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,438.30884,2334.8953)" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-6"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,438.96638,2358.2253)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4030"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,679.2257,2521.3016)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-8-3"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1030.73,2795.4379 33.5,32 c -15.4079,-17.8989 12.167,-32.8673 21,-23.5 l -34,-29.5 c -14.2456,-10.5477 -31.809,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.9396,15.5 -15.5,15.5 -8.5604,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.9396,-15.5 15.5,-15.5 8.5604,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         id="path3171-8-5" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-7-2"
+         d="m 1023.73,2760.4379 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-2-1"
+         d="m 1030.73,2758.4379 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4354"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         transform="matrix(0.82973503,0,0,0.85270853,473.51144,2639.1772)"
+         d="m 608.5,285.55386 c 0,6.90356 -6.15608,12.5 -13.75,12.5 -7.59392,0 -13.75,-5.59644 -13.75,-12.5 0,-6.90356 6.15608,-12.5 13.75,-12.5 7.59392,0 13.75,5.59644 13.75,12.5 z"
+         sodipodi:ry="12.5"
+         sodipodi:rx="13.75"
+         sodipodi:cy="285.55386"
+         sodipodi:cx="594.75"
+         id="path3240-2"
+         style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.37771606;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccsssss"
+         inkscape:connector-curvature="0"
+         d="m 952.24635,2840.6715 1.5,39 c 9.45461,5.4248 18.37747,6.0639 26.5,-0.5 l -0.5,-38 c -8.7559,0.6548 -17.44911,1.4351 -27.5,-0.5 z m 48.50005,-8 c 0,5.2467 -14.66272,9.5 -32.75005,9.5 -18.08733,0 -32.75,-4.2533 -32.75,-9.5 0,-5.2467 14.66267,-9.5 32.75,-9.5 18.08733,0 32.75005,4.2533 32.75005,9.5 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3236-0" />
+    </g>
+    <path
+       style="fill:#c87137;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 597.80909,302.90766 98.99995,94 300.0001,-1 -104,-90 -295.00005,-3 z m 38,9 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 38.99995,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39.0001,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -210.75005,19.6875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39.99995,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40.0001,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8.0001,-2.0147 -8.0001,-4.5 0,-2.4853 3.5818,-4.5 8.0001,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -217.5001,17.125 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.41823,0 -7.99995,-2.0147 -7.99995,-4.5 0,-2.4853 3.58172,-4.5 7.99995,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40.0001,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -213.5001,17.125 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5001,0.875 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 40,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z"
+       id="path2997-8"
+       inkscape:connector-curvature="0" />
+    <g
+       style="display:inline"
+       id="g4024"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-24"
+         d="m 741.24635,2761.1715 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-4"
+         d="m 730.24635,2763.1715 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 713.24635,2798.1715 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3171-7" />
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,327.74206,2526.0352)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-5"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       id="g3626"
+       transform="translate(-152.93726,-2169.2724)"
+       style="stroke-width:2;display:inline">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3242"
+         d="m 881.43726,2503.3263 75.5,0 38,40.5 -78.5,0.5 z"
+         style="opacity:0.86000001;fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244"
+         d="m 891.93726,2507.3263 27,33"
+         style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0"
+         d="m 898.43726,2507.8263 27,33"
+         style="fill:#0000ff;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-6"
+         d="m 947.68726,2506.5763 27,33"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-7"
+         d="m 954.18726,2507.0763 27,33"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 963.65601,2537.7013 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.15625,-3.875 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z"
+         style="opacity:0.86000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3289-9-2-1-1-4" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3287"
+         d="m 925.93726,2516.3263 10.5,0 10,11 -10,-0.5 z"
+         style="fill:#4d4d4d;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3626-9"
+       transform="translate(-131.18726,-2463.7724)">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3242-1"
+         d="m 881.43726,2503.3263 75.5,0 38,40.5 -78.5,0.5 z"
+         style="opacity:0.86000001;fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-7"
+         d="m 891.93726,2507.3263 27,33"
+         style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-5"
+         d="m 898.43726,2507.8263 27,33"
+         style="fill:#0000ff;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-6-4"
+         d="m 947.68726,2506.5763 27,33"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-7-7"
+         d="m 954.18726,2507.0763 27,33"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 963.65601,2537.7013 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.15625,-3.875 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z"
+         style="opacity:0.86000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3289-9-2-1-1-4-4" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3287-7"
+         d="m 925.93726,2516.3263 10.5,0 10,11 -10,-0.5 z"
+         style="fill:#4d4d4d;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3939"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="rect3821"
+         d="m 938.93726,2783.3263 77.00004,0 27,29 -77.00004,0 z"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccc"
+         inkscape:connector-curvature="0"
+         d="m 656.9022,392.15274 0.35355,5.48007 4.77297,3.00521 65.58416,0.17677 -0.35356,-5.12652 -64.70026,-0.35355 z m -21.30515,-22.24839 -0.0125,6.54343 2.53411,3.13111 59.88136,0.22501 15.665,12.6835 5.552,0.2213 -20.5088,-18.5035 -60.24779,-0.9278 M 636,370.3039 l 64.25004,0.75 26.9268,24.5 c -21.6705,-0.18 -43.34174,-0.2678 -65.01263,-0.3891 l -4.59619,-3.2751 61.76772,0.8661 -20.5857,-18.4519 L 638.5,373.3342 c -1.52485,-1.8308 -2.0697,-2.48862 -2.5,-3.0303 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         transform="translate(311.93726,2408.2724)"
+         id="path3837" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4036"
+       transform="translate(-132.93726,-2448.2724)">
+      <rect
+         y="2728.314"
+         x="827.88892"
+         height="117.71489"
+         width="32.71489"
+         id="rect3635-0"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2732.4146"
+         x="831.27045"
+         height="50.179657"
+         width="25.951843"
+         id="rect3637-2"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(1.2975921,0,0,1.2091484,171.44483,2496.5653)"
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-5"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-9"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.2975921,0,0,1.2091484,172.09363,2519.2369)" />
+      <rect
+         y="2725.3223"
+         x="1097.3972"
+         height="117.69823"
+         width="33.198231"
+         id="rect3635-8-9"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2729.4404"
+         x="1100.8453"
+         height="51.637249"
+         width="26.301964"
+         id="rect3637-8-6"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-38-9"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.11793,2486.7405)" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-6-7"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.77547,2510.0705)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4327"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3824"
+         d="m 610.5,391.05386 c -1.72986,-30.59243 5.62488,-23.938 10,-29.5"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3826"
+         d="m 613,395.05386 c 9.12925,-57.54336 11.25419,-58.11579 9.75,-33.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3868"
+         d="m 590.5,386.80386 c -8.56524,-19.39284 -18.51819,-21.43923 -29.75,-7.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3828"
+         d="m 596.5,390.55386 c -7.7447,-11.73764 -55.08005,-11.27012 -46.5,8.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3840"
+         d="m 548.5,340.55386 c 8.58025,20.07082 22.07432,21.69492 24.25,45.25"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3842"
+         d="m 549,328.30386 c 6.51884,22.23202 6.33296,49.59958 22.75,64.25"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3844"
+         d="m 549.5,334.80386 c 35.96957,-10.40282 66.15985,17.99812 97.75,37"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3846"
+         d="m 548.75,338.05386 c 23.62337,48.44848 25.43799,5.01763 102.5,33.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3848"
+         d="m 785.5,321.80386 c -77.75874,1.86668 -91.1735,58.49418 -136.75,87.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3850"
+         d="m 785,326.05386 c 7.95622,102.26096 -75.70327,24.65477 -143,83.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3852"
+         d="m 785.5,331.80386 c -66.20443,-1.37723 -96.34367,17.4639 -119,40.5"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3854"
+         d="m 785,335.55386 c -57.1417,-10.19765 -110.37125,-15.92429 -112.5,36.75"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3858"
+         d="m 655.5,371.55386 c -18.54382,-34.58431 -34.3177,-32.23597 -46.5,18"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3860"
+         d="m 660.25,371.30386 c -55.17118,-30.89216 -71.11036,-24.06125 -52.75,15.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3862"
+         d="m 679.25,372.05386 c -29,5.41667 -33.70349,-30.3651 -87,16.25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3864"
+         d="m 683.25,372.30386 c -27.33333,8.08333 -68.03899,-54.03803 -82,24.25"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3870"
+         d="m 623.75,397.30386 c 0.80637,-21.72071 2.3829,-31.42674 6.5,-1.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3872"
+         d="m 578.25,392.55386 c 8.68949,-37.34071 12.56535,-6.32795 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3830"
+         d="m 600.75,395.80386 c -21.5,-45.5 -51.25,6.25 -51.25,6.25"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3874"
+         d="m 579.75,394.80386 c 7.04126,-22.84459 12.466,-7.70109 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3876"
+         d="m 610.75,391.30386 c 12.37569,-37.52213 16.64953,-19.00647 21.25,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3878"
+         d="m 611.25,393.55386 c 11.53324,-32.27663 17.23646,-22.68305 21.5,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3856"
+         d="m 653.75,371.30386 c -9.54644,-79.5343 -23.09167,-10.8278 -35.75,25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3866"
+         d="m 686.25,372.05386 c -28.16667,8.75 -41.90747,-25.77758 -84.5,26.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3880"
+         d="m 588.5,405.80386 c 23.41611,-8.30112 67.82862,-12.54586 54,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="bunny"
+     style="display:inline"
+     transform="translate(-617.22054,-2307.9157)">
+    <path
+       style="color:#000000;fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       d="m 777.93726,2729.3263 281.00004,0 82,49 -281.00004,0 z"
+       id="rect4898"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 798.5734,2698.7372 c 0,0 -192.16762,-156.7463 -179.77857,-261.9109 6.9547,-59.035 73.40534,-111.6708 132.32432,-119.5482 51.37469,-6.8687 86.88191,70.6396 138.7124,70.2688 55.64943,-0.3981 93.43154,-89.2711 147.83825,-77.5694 64.1907,13.8061 117.5457,89.5918 121.3733,155.1389 4.4646,76.4553 -21.7541,86.1758 -71.5482,139.205 -3.6898,3.9295 -11.342,7.9763 -15.5139,4.5629 -5.4353,-4.4472 -2.5754,-15.5162 1.8252,-20.9894 43.0619,-53.5581 61.9198,-51.4022 57.8595,-120.0408 -3.1762,-53.6926 -46.008,-116.2991 -98.5588,-127.7614 -51.71475,-11.28 -87.60912,73.4449 -140.5376,73.9191 -51.4211,0.4607 -86.76882,-75.6949 -137.79982,-69.3562 -47.51041,5.9013 -101.98377,46.5794 -108.5972,93.9959 -13.4147,96.1798 159.70177,243.6593 159.70177,243.6593 z"
+       id="path4972"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssssssssscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 851.50313,2590.1401 c -0.71317,5.4881 -54.11515,75.969 -55.66748,118.6356 -0.65991,18.1379 37.56586,37.0403 52.92973,27.3774 40.55506,-25.5067 30.11519,-140.5375 30.11519,-140.5375 z"
+       id="path4970"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="csscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 856.97861,2595.6156 c 0,0 -54.59847,128.7678 -26.46486,148.7508 22.31043,15.8467 44.75263,-18.4923 72.09394,-17.3391 27.48283,1.1592 51.82196,38.8003 74.83169,23.7271 31.44682,-20.6002 -25.55228,-155.1388 -25.55228,-155.1388 z"
+       id="path4968"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 817.87405,2434.3893 c -30.24493,37.3226 -32.44028,105.7068 -8.34968,136.5866 24.62942,30.4884 63.03188,32.167 102.20914,31.0277 33.46376,-0.9731 57.33772,0.5863 85.78266,-28.29 33.91363,-34.5813 10.73183,-107.3915 -27.30065,-139.4117 -13.70697,3.8624 -28.23372,20.2509 -41.97875,39.241 -27.92213,-8.1403 -44.35331,-4.7896 -61.9959,-2.6504 -9.66737,-13.9806 -25.98249,-28.5276 -48.36682,-36.5032 z"
+       id="path4905"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccsccccc" />
+    <path
+       style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 809.06808,2549.5302 c -8.07935,-5.9035 8.24805,-42.5532 40.15359,-42.8913 34.00489,-0.3605 43.96523,36.0833 45.17279,40.6098 -24.93603,22.5958 -66.25903,13.2342 -85.32638,2.2815 z"
+       id="path4907"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscc" />
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 831.42633,2511.2018 c -15.92053,15.7522 -15.94847,37.3071 0,46.5416 13.38453,3.7442 26.76906,3.6999 40.15359,1.3689 14.85412,-9.622 16.60483,-31.4905 -3.19404,-47.9105 -12.90234,-5.825 -25.27353,-6.3385 -36.95955,0 z"
+       id="path4909"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 999.00186,2548.7627 c 8.07934,-5.9035 -8.24805,-42.5531 -40.15359,-42.8913 -34.00489,-0.3604 -43.96523,36.0834 -45.17279,40.6099 24.93603,22.5957 66.25904,13.2342 85.32638,2.2814 z"
+       id="path4907-7"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscc" />
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 936.58111,2511.8032 c -15.92053,15.7522 -13.21073,37.7635 2.73775,46.9979 13.51439,3.8741 30.62146,1.1642 41.97875,-3.194 13.94154,-9.622 8.3916,-36.5097 -4.56291,-45.1728 -12.90234,-5.8249 -28.46757,-4.9695 -40.15359,1.3689 z"
+       id="path4909-2"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#e9afaf;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 903.06398,2556.3746 c -3.65032,1.3688 -14.14501,6.388 -14.14501,6.388 l 15.51389,9.1258 13.23243,-10.0384 z"
+       id="path4932"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 846.94022,2569.1507 c -5.47549,0 -78.48202,-10.0384 -78.48202,-10.0384"
+       id="path4934"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 846.94022,2576.4513 -88.52041,9.1259"
+       id="path4936"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 850.59054,2584.6646 -62.05554,17.339"
+       id="path4938"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 956.9063,2567.7818 c 5.47548,0 78.4821,-10.0384 78.4821,-10.0384"
+       id="path4934-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 956.9063,2575.0825 88.5204,9.1258"
+       id="path4936-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 953.25597,2583.2957 62.05553,17.3391"
+       id="path4938-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 884.81235,2579.6454 c 9.93157,4.6534 16.53033,-1.0092 19.16422,-7.3007 3.67805,9.9552 11.9466,11.1582 18.25163,8.6696"
+       id="path4966"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+    <rect
+       style="color:#000000;fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="rect4903"
+       width="283"
+       height="145"
+       x="857.93726"
+       y="2634.3262" />
+  </g>
+</svg>
diff --git a/challenge-bot.com/images/danny-bw.png b/challenge-bot.com/images/danny-bw.png
new file mode 100644 (file)
index 0000000..7a4276b
Binary files /dev/null and b/challenge-bot.com/images/danny-bw.png differ
diff --git a/challenge-bot.com/images/danny.png b/challenge-bot.com/images/danny.png
new file mode 100644 (file)
index 0000000..0dad6ac
Binary files /dev/null and b/challenge-bot.com/images/danny.png differ
diff --git a/challenge-bot.com/images/erin-bw.png b/challenge-bot.com/images/erin-bw.png
new file mode 100644 (file)
index 0000000..b1c81a6
Binary files /dev/null and b/challenge-bot.com/images/erin-bw.png differ
diff --git a/challenge-bot.com/images/erin.png b/challenge-bot.com/images/erin.png
new file mode 100644 (file)
index 0000000..c139593
Binary files /dev/null and b/challenge-bot.com/images/erin.png differ
diff --git a/challenge-bot.com/images/kitty.png b/challenge-bot.com/images/kitty.png
new file mode 100644 (file)
index 0000000..2807ec9
Binary files /dev/null and b/challenge-bot.com/images/kitty.png differ
diff --git a/challenge-bot.com/images/kitty.svg b/challenge-bot.com/images/kitty.svg
new file mode 100644 (file)
index 0000000..db34c33
--- /dev/null
@@ -0,0 +1,752 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   id="svg2"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   width="543.31256"
+   height="447.39536"
+   sodipodi:docname="computerkitty.svg"
+   inkscape:export-filename="/home/feste/danny-woodland-creatures/woodland-creatures-and-robots.png"
+   inkscape:export-xdpi="100"
+   inkscape:export-ydpi="100">
+  <metadata
+     id="metadata8">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <defs
+     id="defs6" />
+  <sodipodi:namedview
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1"
+     objecttolerance="10"
+     gridtolerance="10"
+     guidetolerance="10"
+     inkscape:pageopacity="0"
+     inkscape:pageshadow="2"
+     inkscape:window-width="1440"
+     inkscape:window-height="850"
+     id="namedview4"
+     showgrid="false"
+     inkscape:zoom="1"
+     inkscape:cx="93.707977"
+     inkscape:cy="209.45644"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:current-layer="layer2"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0" />
+  <g
+     inkscape:groupmode="layer"
+     id="layer3"
+     inkscape:label="robots"
+     style="display:none"
+     transform="translate(-305.28328,100.35658)">
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 96.45628,196.8262 c 3.61965,-9.6968 7.58512,-19.6824 29.11873,-19.2823 14.63516,1.7704 27.64254,22.9231 27.33814,31.3885 1.7546,12.7146 -14.31624,29.7349 -38.82029,20.1455 -9.961,-6.6375 -20.9174,-20.8695 -17.63658,-32.2517 z"
+       id="path2991-2"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <g
+       style="display:inline"
+       id="g3686"
+       transform="translate(-103.93726,-2479.2724)">
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,685.41661,2369.4564)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-8"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1036.9209,2643.5927 33.5,32 c -15.4079,-17.8989 12.167,-32.8673 21,-23.5 l -34,-29.5 c -14.2456,-10.5477 -31.809,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.9396,15.5 -15.5,15.5 -8.5604,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.9396,-15.5 15.5,-15.5 8.5604,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         id="path3171-8" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-7"
+         d="m 1029.9209,2608.5927 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-2"
+         d="m 1036.9209,2606.5927 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142"
+         d="m 747.43726,2609.3263 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         transform="matrix(0.82973503,0,0,0.85270853,479.70235,2487.332)"
+         d="m 608.5,285.55386 c 0,6.90356 -6.15608,12.5 -13.75,12.5 -7.59392,0 -13.75,-5.59644 -13.75,-12.5 0,-6.90356 6.15608,-12.5 13.75,-12.5 7.59392,0 13.75,5.59644 13.75,12.5 z"
+         sodipodi:ry="12.5"
+         sodipodi:rx="13.75"
+         sodipodi:cy="285.55386"
+         sodipodi:cx="594.75"
+         id="path3240"
+         style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.37771606;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccsssss"
+         inkscape:connector-curvature="0"
+         d="m 958.43726,2688.8263 1.5,39 c 9.45461,5.4248 18.37747,6.0639 26.5,-0.5 l -0.5,-38 c -8.7559,0.6548 -17.44911,1.4351 -27.5,-0.5 z m 48.50004,-8 c 0,5.2467 -14.66271,9.5 -32.75004,9.5 -18.08733,0 -32.75,-4.2533 -32.75,-9.5 0,-5.2467 14.66267,-9.5 32.75,-9.5 18.08733,0 32.75004,4.2533 32.75004,9.5 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3236" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path2997"
+         d="m 736.93726,2599.3349 99,94 300.00004,-1 -104,-90 -295.00004,-3 z m 38,9 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39.00004,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -210.75004,19.6875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00004,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8.00004,-2.0147 -8.00004,-4.5 0,-2.4853 3.58174,-4.5 8.00004,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -217.50004,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00004,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -213.50004,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.50004,0.875 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 40,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z"
+         style="fill:#c87137;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144"
+         d="m 736.43726,2611.3263 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 719.43726,2646.3263 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3171" />
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,333.93297,2374.19)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <rect
+         y="2576.4688"
+         x="834.07983"
+         height="117.71489"
+         width="32.71489"
+         id="rect3635"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2580.5693"
+         x="837.46136"
+         height="50.179657"
+         width="25.951843"
+         id="rect3637"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(1.2975921,0,0,1.2091484,177.63574,2344.7201)"
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.2975921,0,0,1.2091484,178.28454,2367.3917)" />
+      <rect
+         y="2573.4771"
+         x="1103.5881"
+         height="117.69823"
+         width="33.198231"
+         id="rect3635-8"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2577.5952"
+         x="1107.0363"
+         height="51.637249"
+         width="26.301964"
+         id="rect3637-8"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-38"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,438.30884,2334.8953)" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-6"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,438.96638,2358.2253)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4030"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,679.2257,2521.3016)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-8-3"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1030.73,2795.4379 33.5,32 c -15.4079,-17.8989 12.167,-32.8673 21,-23.5 l -34,-29.5 c -14.2456,-10.5477 -31.809,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.9396,15.5 -15.5,15.5 -8.5604,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.9396,-15.5 15.5,-15.5 8.5604,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         id="path3171-8-5" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-7-2"
+         d="m 1023.73,2760.4379 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-2-1"
+         d="m 1030.73,2758.4379 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4354"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         transform="matrix(0.82973503,0,0,0.85270853,473.51144,2639.1772)"
+         d="m 608.5,285.55386 c 0,6.90356 -6.15608,12.5 -13.75,12.5 -7.59392,0 -13.75,-5.59644 -13.75,-12.5 0,-6.90356 6.15608,-12.5 13.75,-12.5 7.59392,0 13.75,5.59644 13.75,12.5 z"
+         sodipodi:ry="12.5"
+         sodipodi:rx="13.75"
+         sodipodi:cy="285.55386"
+         sodipodi:cx="594.75"
+         id="path3240-2"
+         style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.37771606;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccsssss"
+         inkscape:connector-curvature="0"
+         d="m 952.24635,2840.6715 1.5,39 c 9.45461,5.4248 18.37747,6.0639 26.5,-0.5 l -0.5,-38 c -8.7559,0.6548 -17.44911,1.4351 -27.5,-0.5 z m 48.50005,-8 c 0,5.2467 -14.66272,9.5 -32.75005,9.5 -18.08733,0 -32.75,-4.2533 -32.75,-9.5 0,-5.2467 14.66267,-9.5 32.75,-9.5 18.08733,0 32.75005,4.2533 32.75005,9.5 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3236-0" />
+    </g>
+    <path
+       style="fill:#c87137;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 597.80909,302.90766 98.99995,94 300.0001,-1 -104,-90 -295.00005,-3 z m 38,9 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 38.99995,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39.0001,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -210.75005,19.6875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39.99995,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40.0001,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8.0001,-2.0147 -8.0001,-4.5 0,-2.4853 3.5818,-4.5 8.0001,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -217.5001,17.125 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.41823,0 -7.99995,-2.0147 -7.99995,-4.5 0,-2.4853 3.58172,-4.5 7.99995,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5,0.875 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40.0001,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -213.5001,17.125 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 39,0.75 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 40,0.5 c 4.4183,0 8,2.0147 8,4.5 0,2.4853 -3.5817,4.5 -8,4.5 -4.4182,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5818,-4.5 8,-4.5 z m 42.5001,0.875 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 40,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z"
+       id="path2997-8"
+       inkscape:connector-curvature="0" />
+    <g
+       style="display:inline"
+       id="g4024"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-24"
+         d="m 741.24635,2761.1715 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-4"
+         d="m 730.24635,2763.1715 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 713.24635,2798.1715 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3171-7" />
+      <path
+         transform="matrix(0.99874185,0,0,1.0678375,327.74206,2526.0352)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-5"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       id="g3626"
+       transform="translate(-152.93726,-2169.2724)"
+       style="stroke-width:2;display:inline">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3242"
+         d="m 881.43726,2503.3263 75.5,0 38,40.5 -78.5,0.5 z"
+         style="opacity:0.86000001;fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244"
+         d="m 891.93726,2507.3263 27,33"
+         style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0"
+         d="m 898.43726,2507.8263 27,33"
+         style="fill:#0000ff;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-6"
+         d="m 947.68726,2506.5763 27,33"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-7"
+         d="m 954.18726,2507.0763 27,33"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 963.65601,2537.7013 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.15625,-3.875 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z"
+         style="opacity:0.86000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3289-9-2-1-1-4" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3287"
+         d="m 925.93726,2516.3263 10.5,0 10,11 -10,-0.5 z"
+         style="fill:#4d4d4d;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3626-9"
+       transform="translate(-131.18726,-2463.7724)">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3242-1"
+         d="m 881.43726,2503.3263 75.5,0 38,40.5 -78.5,0.5 z"
+         style="opacity:0.86000001;fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-7"
+         d="m 891.93726,2507.3263 27,33"
+         style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-5"
+         d="m 898.43726,2507.8263 27,33"
+         style="fill:#0000ff;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-6-4"
+         d="m 947.68726,2506.5763 27,33"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-7-7"
+         d="m 954.18726,2507.0763 27,33"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 963.65601,2537.7013 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.15625,-3.875 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z"
+         style="opacity:0.86000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3289-9-2-1-1-4-4" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3287-7"
+         d="m 925.93726,2516.3263 10.5,0 10,11 -10,-0.5 z"
+         style="fill:#4d4d4d;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       style="display:inline"
+       id="g3939"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="rect3821"
+         d="m 938.93726,2783.3263 77.00004,0 27,29 -77.00004,0 z"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccc"
+         inkscape:connector-curvature="0"
+         d="m 656.9022,392.15274 0.35355,5.48007 4.77297,3.00521 65.58416,0.17677 -0.35356,-5.12652 -64.70026,-0.35355 z m -21.30515,-22.24839 -0.0125,6.54343 2.53411,3.13111 59.88136,0.22501 15.665,12.6835 5.552,0.2213 -20.5088,-18.5035 -60.24779,-0.9278 M 636,370.3039 l 64.25004,0.75 26.9268,24.5 c -21.6705,-0.18 -43.34174,-0.2678 -65.01263,-0.3891 l -4.59619,-3.2751 61.76772,0.8661 -20.5857,-18.4519 L 638.5,373.3342 c -1.52485,-1.8308 -2.0697,-2.48862 -2.5,-3.0303 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         transform="translate(311.93726,2408.2724)"
+         id="path3837" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4036"
+       transform="translate(-132.93726,-2448.2724)">
+      <rect
+         y="2728.314"
+         x="827.88892"
+         height="117.71489"
+         width="32.71489"
+         id="rect3635-0"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2732.4146"
+         x="831.27045"
+         height="50.179657"
+         width="25.951843"
+         id="rect3637-2"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(1.2975921,0,0,1.2091484,171.44483,2496.5653)"
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-5"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-9"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.2975921,0,0,1.2091484,172.09363,2519.2369)" />
+      <rect
+         y="2725.3223"
+         x="1097.3972"
+         height="117.69823"
+         width="33.198231"
+         id="rect3635-8-9"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2729.4404"
+         x="1100.8453"
+         height="51.637249"
+         width="26.301964"
+         id="rect3637-8-6"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-38-9"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.11793,2486.7405)" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-6-7"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.77547,2510.0705)" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4327"
+       transform="translate(-132.93726,-2448.2724)">
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3824"
+         d="m 610.5,391.05386 c -1.72986,-30.59243 5.62488,-23.938 10,-29.5"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3826"
+         d="m 613,395.05386 c 9.12925,-57.54336 11.25419,-58.11579 9.75,-33.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3868"
+         d="m 590.5,386.80386 c -8.56524,-19.39284 -18.51819,-21.43923 -29.75,-7.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3828"
+         d="m 596.5,390.55386 c -7.7447,-11.73764 -55.08005,-11.27012 -46.5,8.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3840"
+         d="m 548.5,340.55386 c 8.58025,20.07082 22.07432,21.69492 24.25,45.25"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3842"
+         d="m 549,328.30386 c 6.51884,22.23202 6.33296,49.59958 22.75,64.25"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3844"
+         d="m 549.5,334.80386 c 35.96957,-10.40282 66.15985,17.99812 97.75,37"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3846"
+         d="m 548.75,338.05386 c 23.62337,48.44848 25.43799,5.01763 102.5,33.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3848"
+         d="m 785.5,321.80386 c -77.75874,1.86668 -91.1735,58.49418 -136.75,87.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3850"
+         d="m 785,326.05386 c 7.95622,102.26096 -75.70327,24.65477 -143,83.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3852"
+         d="m 785.5,331.80386 c -66.20443,-1.37723 -96.34367,17.4639 -119,40.5"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3854"
+         d="m 785,335.55386 c -57.1417,-10.19765 -110.37125,-15.92429 -112.5,36.75"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3858"
+         d="m 655.5,371.55386 c -18.54382,-34.58431 -34.3177,-32.23597 -46.5,18"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3860"
+         d="m 660.25,371.30386 c -55.17118,-30.89216 -71.11036,-24.06125 -52.75,15.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3862"
+         d="m 679.25,372.05386 c -29,5.41667 -33.70349,-30.3651 -87,16.25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3864"
+         d="m 683.25,372.30386 c -27.33333,8.08333 -68.03899,-54.03803 -82,24.25"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3870"
+         d="m 623.75,397.30386 c 0.80637,-21.72071 2.3829,-31.42674 6.5,-1.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3872"
+         d="m 578.25,392.55386 c 8.68949,-37.34071 12.56535,-6.32795 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3830"
+         d="m 600.75,395.80386 c -21.5,-45.5 -51.25,6.25 -51.25,6.25"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3874"
+         d="m 579.75,394.80386 c 7.04126,-22.84459 12.466,-7.70109 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3876"
+         d="m 610.75,391.30386 c 12.37569,-37.52213 16.64953,-19.00647 21.25,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3878"
+         d="m 611.25,393.55386 c 11.53324,-32.27663 17.23646,-22.68305 21.5,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3856"
+         d="m 653.75,371.30386 c -9.54644,-79.5343 -23.09167,-10.8278 -35.75,25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3866"
+         d="m 686.25,372.05386 c -28.16667,8.75 -41.90747,-25.77758 -84.5,26.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3880"
+         d="m 588.5,405.80386 c 23.41611,-8.30112 67.82862,-12.54586 54,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer2"
+     inkscape:label="bunny"
+     style="display:inline"
+     transform="translate(-617.22054,-2307.9157)">
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 798.5734,2698.7372 c 0,0 -192.16762,-156.7463 -179.77857,-261.9109 6.9547,-59.035 73.40534,-111.6708 132.32432,-119.5482 51.37469,-6.8687 86.88191,70.6396 138.7124,70.2688 55.64943,-0.3981 93.43154,-89.2711 147.83825,-77.5694 64.1907,13.8061 117.5457,89.5918 121.3733,155.1389 4.4646,76.4553 -21.7541,86.1758 -71.5482,139.205 -3.6898,3.9295 -11.342,7.9763 -15.5139,4.5629 -5.4353,-4.4472 -2.5754,-15.5162 1.8252,-20.9894 43.0619,-53.5581 61.9198,-51.4022 57.8595,-120.0408 -3.1762,-53.6926 -46.008,-116.2991 -98.5588,-127.7614 -51.71475,-11.28 -87.60912,73.4449 -140.5376,73.9191 -51.4211,0.4607 -86.76882,-75.6949 -137.79982,-69.3562 -47.51041,5.9013 -101.98377,46.5794 -108.5972,93.9959 -13.4147,96.1798 159.70177,243.6593 159.70177,243.6593 z"
+       id="path4972"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssssssssssssscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 851.50313,2590.1401 c -0.71317,5.4881 -54.11515,75.969 -55.66748,118.6356 -0.65991,18.1379 37.56586,37.0403 52.92973,27.3774 40.55506,-25.5067 30.11519,-140.5375 30.11519,-140.5375 z"
+       id="path4970"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="csscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 856.97861,2595.6156 c 0,0 -54.59847,128.7678 -26.46486,148.7508 22.31043,15.8467 44.75263,-18.4923 72.09394,-17.3391 27.48283,1.1592 51.82196,38.8003 74.83169,23.7271 31.44682,-20.6002 -25.55228,-155.1388 -25.55228,-155.1388 z"
+       id="path4968"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cssscc" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 817.87405,2434.3893 c -30.24493,37.3226 -32.44028,105.7068 -8.34968,136.5866 24.62942,30.4884 63.03188,32.167 102.20914,31.0277 33.46376,-0.9731 57.33772,0.5863 85.78266,-28.29 33.91363,-34.5813 10.73183,-107.3915 -27.30065,-139.4117 -13.70697,3.8624 -28.23372,20.2509 -41.97875,39.241 -27.92213,-8.1403 -44.35331,-4.7896 -61.9959,-2.6504 -9.66737,-13.9806 -25.98249,-28.5276 -48.36682,-36.5032 z"
+       id="path4905"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccsccccc" />
+    <path
+       style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 809.06808,2549.5302 c -8.07935,-5.9035 8.24805,-42.5532 40.15359,-42.8913 34.00489,-0.3605 43.96523,36.0833 45.17279,40.6098 -24.93603,22.5958 -66.25903,13.2342 -85.32638,2.2815 z"
+       id="path4907"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscc" />
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 831.42633,2511.2018 c -15.92053,15.7522 -15.94847,37.3071 0,46.5416 13.38453,3.7442 26.76906,3.6999 40.15359,1.3689 14.85412,-9.622 16.60483,-31.4905 -3.19404,-47.9105 -12.90234,-5.825 -25.27353,-6.3385 -36.95955,0 z"
+       id="path4909"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 999.00186,2548.7627 c 8.07934,-5.9035 -8.24805,-42.5531 -40.15359,-42.8913 -34.00489,-0.3604 -43.96523,36.0834 -45.17279,40.6099 24.93603,22.5957 66.25904,13.2342 85.32638,2.2814 z"
+       id="path4907-7"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cscc" />
+    <path
+       style="fill:#000000;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 936.58111,2511.8032 c -15.92053,15.7522 -13.21073,37.7635 2.73775,46.9979 13.51439,3.8741 30.62146,1.1642 41.97875,-3.194 13.94154,-9.622 8.3916,-36.5097 -4.56291,-45.1728 -12.90234,-5.8249 -28.46757,-4.9695 -40.15359,1.3689 z"
+       id="path4909-2"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:#e9afaf;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 903.06398,2556.3746 c -3.65032,1.3688 -14.14501,6.388 -14.14501,6.388 l 15.51389,9.1258 13.23243,-10.0384 z"
+       id="path4932"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccccc" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 846.94022,2569.1507 c -5.47549,0 -78.48202,-10.0384 -78.48202,-10.0384"
+       id="path4934"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 846.94022,2576.4513 -88.52041,9.1259"
+       id="path4936"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 850.59054,2584.6646 -62.05554,17.339"
+       id="path4938"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 956.9063,2567.7818 c 5.47548,0 78.4821,-10.0384 78.4821,-10.0384"
+       id="path4934-9"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 956.9063,2575.0825 88.5204,9.1258"
+       id="path4936-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 953.25597,2583.2957 62.05553,17.3391"
+       id="path4938-5"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+       d="m 884.81235,2579.6454 c 9.93157,4.6534 16.53033,-1.0092 19.16422,-7.3007 3.67805,9.9552 11.9466,11.1582 18.25163,8.6696"
+       id="path4966"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ccc" />
+  </g>
+</svg>
diff --git a/challenge-bot.com/images/kittybunny.png b/challenge-bot.com/images/kittybunny.png
new file mode 100644 (file)
index 0000000..4c996d6
Binary files /dev/null and b/challenge-bot.com/images/kittybunny.png differ
diff --git a/challenge-bot.com/images/robobunny.png b/challenge-bot.com/images/robobunny.png
new file mode 100644 (file)
index 0000000..98ea258
Binary files /dev/null and b/challenge-bot.com/images/robobunny.png differ
diff --git a/challenge-bot.com/images/robobunny.svg b/challenge-bot.com/images/robobunny.svg
new file mode 100644 (file)
index 0000000..5d12d02
--- /dev/null
@@ -0,0 +1,538 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="414.26996"
+   height="435.90891"
+   id="svg3246"
+   version="1.1"
+   inkscape:version="0.48.4 r9939"
+   sodipodi:docname="New document 2">
+  <defs
+     id="defs3248" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="0.35"
+     inkscape:cx="-148.5"
+     inkscape:cy="-36.299795"
+     inkscape:document-units="px"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="457"
+     inkscape:window-height="414"
+     inkscape:window-x="1"
+     inkscape:window-y="48"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata3251">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title></dc:title>
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-523.5,-60.153473)">
+    <g
+       transform="translate(-280.38343,-2468.985)"
+       style="display:inline"
+       id="g4354-8">
+      <path
+         transform="matrix(0.82973503,0,0,0.85270853,473.51144,2639.1772)"
+         d="m 608.5,285.55386 c 0,6.90356 -6.15608,12.5 -13.75,12.5 -7.59392,0 -13.75,-5.59644 -13.75,-12.5 0,-6.90356 6.15608,-12.5 13.75,-12.5 7.59392,0 13.75,5.59644 13.75,12.5 z"
+         sodipodi:ry="12.5"
+         sodipodi:rx="13.75"
+         sodipodi:cy="285.55386"
+         sodipodi:cx="594.75"
+         id="path3240-2-5"
+         style="color:#000000;fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.37771606;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         sodipodi:nodetypes="cccccsssss"
+         inkscape:connector-curvature="0"
+         d="m 952.24635,2840.6715 1.5,39 c 9.45461,5.4248 18.37747,6.0639 26.5,-0.5 l -0.5,-38 c -8.7559,0.6548 -17.44911,1.4351 -27.5,-0.5 z m 48.50005,-8 c 0,5.2467 -14.66272,9.5 -32.75005,9.5 -18.08733,0 -32.75,-4.2533 -32.75,-9.5 0,-5.2467 14.66267,-9.5 32.75,-9.5 18.08733,0 32.75005,4.2533 32.75005,9.5 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         id="path3236-0-1" />
+    </g>
+    <g
+       transform="translate(256.27699,-2342.1027)"
+       style="display:inline"
+       id="g4611">
+      <path
+         transform="matrix(1.0500182,0,0,1.1869584,239.46813,2479.6913)"
+         d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+         sodipodi:ry="29"
+         sodipodi:rx="26"
+         sodipodi:cy="266.55386"
+         sodipodi:cx="394"
+         id="path3173-5-0-5"
+         style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3144-4-7-6"
+         d="m 633.10424,2760.4792 29,25 -2,33 -29,-27 z"
+         style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3142-24-3-5"
+         d="m 638.10424,2758.4792 0,21 13,13 0,-22 z"
+         style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 600.10424,2787.4792 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+         id="path3171-7-4-4" />
+    </g>
+    <path
+       style="fill:#c87137;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 526.02335,350.07743 99,94 300.00005,-1 -104,-90 -295.00005,-3 z m 38,9 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39.00005,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -210.75005,19.6875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00004,0.5 c 4.41821,0 8.00001,2.0147 8.00001,4.5 0,2.4853 -3.5818,4.5 -8.00001,4.5 -4.4183,0 -8.00004,-2.0147 -8.00004,-4.5 0,-2.4853 3.58174,-4.5 8.00004,-4.5 z m 39.00001,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -217.50005,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.5,0.875 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40.00005,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m -213.50005,17.125 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 39,0.75 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 40,0.5 c 4.41828,0 8,2.0147 8,4.5 0,2.4853 -3.58172,4.5 -8,4.5 -4.41828,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.58172,-4.5 8,-4.5 z m 42.50005,0.875 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 40,0.5 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z m 39,0.75 c 4.4182,0 8,2.0147 8,4.5 0,2.4853 -3.5818,4.5 -8,4.5 -4.4183,0 -8,-2.0147 -8,-4.5 0,-2.4853 3.5817,-4.5 8,-4.5 z"
+       id="path2997-8-8"
+       inkscape:connector-curvature="0" />
+    <path
+       id="path3171-7-4"
+       style="fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 585.45585,449.88003 33.5,32 c -15.40787,-17.8989 12.16703,-32.8673 21,-23.5 l -34,-29.5 c -14.24562,-10.5477 -31.80904,5.003 -20.5,21 z m 61,21.5 c 0,8.5604 -6.93959,15.5 -15.5,15.5 -8.56041,0 -15.5,-6.9396 -15.5,-15.5 0,-8.5605 6.93959,-15.5 15.5,-15.5 8.56041,0 15.5,6.9395 15.5,15.5 z"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#999999;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 599.45585,420.88003 0,21 13,13 0,-22 z"
+       id="path3142-24-3"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:#ff6600;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline"
+       d="m 588.45585,422.88003 29,25 -2,33 -29,-27 z"
+       id="path3144-4-7"
+       inkscape:connector-curvature="0" />
+    <path
+       sodipodi:type="arc"
+       style="color:#000000;fill:#ff6600;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.93664849;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+       id="path3173-5-0"
+       sodipodi:cx="394"
+       sodipodi:cy="266.55386"
+       sodipodi:rx="26"
+       sodipodi:ry="29"
+       d="m 420,266.55386 c 0,16.01626 -11.6406,29 -26,29 -14.3594,0 -26,-12.98374 -26,-29 0,-16.01625 11.6406,-29 26,-29 14.3594,0 26,12.98375 26,29 z"
+       transform="matrix(1.0500182,0,0,1.1869584,172.81974,144.09213)" />
+    <g
+       id="g3626-0"
+       transform="translate(-224.723,-2122.1027)"
+       style="stroke-width:2;display:inline">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3242-0"
+         d="m 881.43726,2503.3263 75.5,0 38,40.5 -78.5,0.5 z"
+         style="opacity:0.86000001;fill:#ffffff;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-02"
+         d="m 891.93726,2507.3263 27,33"
+         style="fill:#ff0000;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-0"
+         d="m 898.43726,2507.8263 27,33"
+         style="fill:#0000ff;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-6-3"
+         d="m 947.68726,2506.5763 27,33"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3244-0-7-6"
+         d="m 954.18726,2507.0763 27,33"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 963.65601,2537.7013 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.15625,-3.875 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 27.8125,-4.25 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m 28.625,-4 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.75,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.25,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z m -4.5,0 c 0,0.2761 -0.22386,0.5 -0.5,0.5 -0.27614,0 -0.5,-0.2239 -0.5,-0.5 0,-0.2762 0.22386,-0.5 0.5,-0.5 0.27614,0 0.5,0.2238 0.5,0.5 z"
+         style="opacity:0.86000001;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         id="path3289-9-2-1-1-4-48" />
+      <path
+         inkscape:connector-curvature="0"
+         id="path3287-2"
+         d="m 925.93726,2516.3263 10.5,0 10,11 -10,-0.5 z"
+         style="fill:#4d4d4d;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       transform="translate(-204.723,-2401.1027)"
+       style="display:inline"
+       id="g3939-7">
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="rect3821-2"
+         d="m 938.93726,2783.3263 77.00004,0 27,29 -77.00004,0 z"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccc"
+         inkscape:connector-curvature="0"
+         d="m 656.9022,392.15274 0.35355,5.48007 4.77297,3.00521 65.58416,0.17677 -0.35356,-5.12652 -64.70026,-0.35355 z m -21.30515,-22.24839 -0.0125,6.54343 2.53411,3.13111 59.88136,0.22501 15.665,12.6835 5.552,0.2213 -20.5088,-18.5035 -60.24779,-0.9278 M 636,370.3039 l 64.25004,0.75 26.9268,24.5 c -21.6705,-0.18 -43.34174,-0.2678 -65.01263,-0.3891 l -4.59619,-3.2751 61.76772,0.8661 -20.5857,-18.4519 L 638.5,373.3342 c -1.52485,-1.8308 -2.0697,-2.48862 -2.5,-3.0303 z"
+         style="fill:#333333;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         transform="translate(311.93726,2408.2724)"
+         id="path3837-9" />
+    </g>
+    <g
+       style="display:inline"
+       id="g4566"
+       transform="translate(222.27699,-2350.1027)">
+      <path
+         sodipodi:nodetypes="cccccccccccccccccccccccccc"
+         inkscape:connector-curvature="0"
+         id="path3082"
+         d="m 410.38367,2716.98 c -6.88485,10.0991 -35.04967,18.4445 -34.66028,-9.9894 -14.05949,11.6898 -44.72826,3.4786 -34.66028,-24.26 -16.47041,3.3731 -30.41788,-13.6648 -9.70489,-32.8222 -24.4257,-6.7899 -23.77121,-44.6057 -1.38641,-37.1035 -23.58176,-10.846 -7.55497,-45.9001 8.31847,-38.5305 -15.38105,-11.5662 0.64894,-34.3452 11.0913,-28.5412 -7.91012,-14.9898 22.38174,-25.6376 23.56898,-7.1351 0.13563,-17.1464 12.2959,-10.8589 18.02335,-4.2812 4.88619,-20.3133 17.615,-23.6342 38.50104,-9.2811 4.57638,-5.5251 7.25316,-16.1159 19.40976,-1.4271 8.94307,-10.3141 14.40167,-6.6903 18.02335,4.2812 0.78064,-9.1115 20.95856,-16.6098 23.56898,7.1353 15.87794,-8.1219 19.41534,-1.8466 19.40977,8.5622 12.58303,-6.7506 20.00712,-5.7628 16.63694,11.4164 9.107,-0.6729 20.65039,-6.8276 19.63692,15.2706 27.01513,5.6319 11.10619,13.8934 11.25051,21.9681 3.48463,7.4506 26.54385,7.0714 6.38641,23.9789 3.86095,8.6143 19.22149,24.8961 -7.84075,32.2599 11.34728,11.8041 4.61371,31.7548 -5.54566,22.8329 5.23513,17.1885 -9.94017,28.7678 -16.63692,21.4058 17.21974,20.5948 -8.30243,30.5684 -18.02335,19.9788 -6.00395,10.2585 -12.48571,19.2429 -26.3418,8.5624 -9.70488,7.4298 -19.40975,11.0814 -29.11463,0 -12.11855,11.9152 -22.42741,9.3528 -31.88747,0 -7.39605,8.2908 -13.29301,6.088 -18.02334,-4.2812 z"
+         style="fill:#e9ddaf;stroke:#000000;stroke-width:2.3454895;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cscc"
+         inkscape:connector-curvature="0"
+         id="path3109"
+         d="m 418.68742,2655.6503 c 1.70784,4.8878 -35.01999,67.188 -20.81246,82.1218 5.87569,6.176 27.74995,-0.5994 27.74995,-0.5994 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="csssscc"
+         inkscape:connector-curvature="0"
+         id="path3107"
+         d="m 417.99367,2658.6475 c 0,0 -22.80307,67.5427 3.46874,83.92 11.33471,7.0659 26.26304,-10.4114 40.23743,-10.1903 13.89189,0.2199 25.84627,13.4028 39.54365,11.3892 8.9376,-1.3139 18.12427,-7.1183 21.50621,-14.3862 8.80822,-18.9295 -10.40622,-60.5424 -10.40622,-60.5424 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="ccsccccccccc"
+         inkscape:connector-curvature="0"
+         id="path2987"
+         d="m 383.66871,2569.8562 c -53.97897,-65.7675 -33.84345,-113.4205 -13.78268,-157.1877 3.49631,-5.5683 25.82818,7.7806 29.72749,15.6539 46.6157,94.1237 34.3487,114.8322 37.13299,129.8848 13.0962,-2.626 31.07928,-4.2299 45.31034,2.7004 -7.82199,-39.9183 -1.09236,-68.5868 14.24037,-90.6044 10.80163,-8.2048 35.86003,-14.7253 73.7911,-6.7115 -14.62161,35.959 -26.32262,70.6563 -45.31032,108.5017 15.72981,11.8194 38.08357,43.7611 26.64996,65.2048 -19.22169,34.9321 -62.48846,38.1079 -95.26274,36.5853 -62.9646,-5.0501 -81.21112,-24.2782 -90.84275,-52.3693 -4.7598,-14.5177 5.67373,-36.4634 18.34624,-51.658 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path2993"
+         d="m 465.9998,2653.1126 c -0.9154,0 -12.58684,-10.6779 -12.58684,-10.6779 l 21.51205,-1.7796 z"
+         style="fill:#d35f5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path3177"
+         d="m 492.38845,2561.86 18.32889,6.8856 36.65777,-70.922 -36.65777,-13.7712 c -14.33656,22.3816 -16.46221,50.0387 -18.32889,77.8076 z"
+         style="fill:#f4d7d7;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path3084"
+         d="m 496.09974,2470.6287 c 11.29485,67.2222 22.40959,74.1801 68.89781,121.462 20.84111,-31.3828 23.18514,-79.6405 4.63953,-128.6552 -30.01118,-3.5412 -58.1318,-5.0405 -73.53734,7.1932 z"
+         style="fill:#d3bc5f;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="cccc"
+         inkscape:connector-curvature="0"
+         id="path3157"
+         d="m 399.15025,2567.3685 22.31342,-4.1314 c -7.00383,-45.9337 -18.03876,-90.3747 -39.8454,-130.827 -10.42885,31.8955 -31.03486,55.6037 17.53198,134.9584 z"
+         style="fill:#f4d7d7;stroke:#000000;stroke-width:2.1506362;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path2989-7"
+         d="m 381.70153,2613.4425 c 17.65026,-25.0577 41.8304,-32.0825 53.53087,-24.7949 13.41929,9.7635 16.83889,16.8119 19.48062,26.4952 6.60302,22.9266 -24.20849,41.575 -44.73875,29.1821 -16.7867,-14.7512 -19.58522,-25.5847 -22.57921,-38.6512"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="ccccc"
+         inkscape:connector-curvature="0"
+         id="path2989-7-4"
+         d="m 548.39794,2612.1662 c -17.65026,-25.0577 -41.8304,-32.0825 -53.53087,-24.7949 -13.41929,9.7635 -16.83889,16.8119 -19.48062,26.4952 -6.60302,22.9266 24.20849,41.575 44.73875,29.1821 16.7867,-14.7512 19.58522,-25.5847 22.57921,-38.6512"
+         style="fill:#ffffff;stroke:#000000;stroke-width:2.04885936;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;display:inline" />
+      <path
+         transform="matrix(3.1052191,0,0,2.1212488,29.521835,2164.2041)"
+         d="m 136,214.55386 c 0,6.35128 -3.80558,11.5 -8.5,11.5 -4.69442,0 -8.5,-5.14872 -8.5,-11.5 0,-6.35127 3.80558,-11.5 8.5,-11.5 4.69442,0 8.5,5.14873 8.5,11.5 z"
+         sodipodi:ry="11.5"
+         sodipodi:rx="8.5"
+         sodipodi:cy="214.55386"
+         sodipodi:cx="127.5"
+         id="path3250-3-5"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25122559;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         transform="matrix(3.1052191,0,0,2.1212488,111.02182,2162.2041)"
+         d="m 136,214.55386 c 0,6.35128 -3.80558,11.5 -8.5,11.5 -4.69442,0 -8.5,-5.14872 -8.5,-11.5 0,-6.35127 3.80558,-11.5 8.5,-11.5 4.69442,0 8.5,5.14873 8.5,11.5 z"
+         sodipodi:ry="11.5"
+         sodipodi:rx="8.5"
+         sodipodi:cy="214.55386"
+         sodipodi:cx="127.5"
+         id="path3250-3-5-5"
+         style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.25122559;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+    </g>
+    <g
+       transform="translate(-204.723,-2401.1027)"
+       style="display:inline"
+       id="g4327-5">
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3824-4"
+         d="m 610.5,391.05386 c -1.72986,-30.59243 5.62488,-23.938 10,-29.5"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3826-5"
+         d="m 613,395.05386 c 9.12925,-57.54336 11.25419,-58.11579 9.75,-33.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3868-3"
+         d="m 590.5,386.80386 c -8.56524,-19.39284 -18.51819,-21.43923 -29.75,-7.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3828-6"
+         d="m 596.5,390.55386 c -7.7447,-11.73764 -55.08005,-11.27012 -46.5,8.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3840-8"
+         d="m 548.5,340.55386 c 8.58025,20.07082 22.07432,21.69492 24.25,45.25"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3842-1"
+         d="m 549,328.30386 c 6.51884,22.23202 6.33296,49.59958 22.75,64.25"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3844-2"
+         d="m 549.5,334.80386 c 35.96957,-10.40282 66.15985,17.99812 97.75,37"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3846-9"
+         d="m 548.75,338.05386 c 23.62337,48.44848 25.43799,5.01763 102.5,33.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3848-3"
+         d="m 785.5,321.80386 c -77.75874,1.86668 -91.1735,58.49418 -136.75,87.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3850-3"
+         d="m 785,326.05386 c 7.95622,102.26096 -75.70327,24.65477 -143,83.25"
+         style="fill:none;stroke:#ffffff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3852-1"
+         d="m 785.5,331.80386 c -66.20443,-1.37723 -96.34367,17.4639 -119,40.5"
+         style="fill:none;stroke:#ffff00;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3854-5"
+         d="m 785,335.55386 c -57.1417,-10.19765 -110.37125,-15.92429 -112.5,36.75"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3858-5"
+         d="m 655.5,371.55386 c -18.54382,-34.58431 -34.3177,-32.23597 -46.5,18"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3860-6"
+         d="m 660.25,371.30386 c -55.17118,-30.89216 -71.11036,-24.06125 -52.75,15.75"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3862-1"
+         d="m 679.25,372.05386 c -29,5.41667 -33.70349,-30.3651 -87,16.25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3864-1"
+         d="m 683.25,372.30386 c -27.33333,8.08333 -68.03899,-54.03803 -82,24.25"
+         style="fill:none;stroke:#800080;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3870-4"
+         d="m 623.75,397.30386 c 0.80637,-21.72071 2.3829,-31.42674 6.5,-1.5"
+         style="fill:none;stroke:#ff0000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3872-5"
+         d="m 578.25,392.55386 c 8.68949,-37.34071 12.56535,-6.32795 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3830-0"
+         d="m 600.75,395.80386 c -21.5,-45.5 -51.25,6.25 -51.25,6.25"
+         style="fill:none;stroke:#008000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3874-9"
+         d="m 579.75,394.80386 c 7.04126,-22.84459 12.466,-7.70109 18.25,-1"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3876-4"
+         d="m 610.75,391.30386 c 12.37569,-37.52213 16.64953,-19.00647 21.25,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3878-1"
+         d="m 611.25,393.55386 c 11.53324,-32.27663 17.23646,-22.68305 21.5,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3856-3"
+         d="m 653.75,371.30386 c -9.54644,-79.5343 -23.09167,-10.8278 -35.75,25"
+         style="fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3866-8"
+         d="m 686.25,372.05386 c -28.16667,8.75 -41.90747,-25.77758 -84.5,26.25"
+         style="fill:none;stroke:#ff6600;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+      <path
+         sodipodi:nodetypes="cc"
+         transform="translate(311.93726,2408.2724)"
+         inkscape:connector-curvature="0"
+         id="path3880-1"
+         d="m 588.5,405.80386 c 23.41611,-8.30112 67.82862,-12.54586 54,-2.75"
+         style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       transform="translate(-204.723,-2401.1027)"
+       style="display:inline"
+       id="g4036-0">
+      <rect
+         y="2728.314"
+         x="827.88892"
+         height="117.71489"
+         width="32.71489"
+         id="rect3635-0-2"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2732.4146"
+         x="831.27045"
+         height="50.179657"
+         width="25.951843"
+         id="rect3637-2-4"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         transform="matrix(1.2975921,0,0,1.2091484,171.44483,2496.5653)"
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-5-8"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-9-1"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.59669185;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.2975921,0,0,1.2091484,172.09363,2519.2369)" />
+      <rect
+         y="2725.3223"
+         x="1097.3972"
+         height="117.69823"
+         width="33.198231"
+         id="rect3635-8-9-4"
+         style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <rect
+         y="2729.4404"
+         x="1100.8453"
+         height="51.637249"
+         width="26.301964"
+         id="rect3637-8-6-5"
+         style="color:#000000;fill:#000080;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-38-9-9"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.11793,2486.7405)" />
+      <path
+         d="m 526,205.80386 c 0,4.00407 -3.13401,7.25 -7,7.25 -3.86599,0 -7,-3.24593 -7,-7.25 0,-4.00406 3.13401,-7.25 7,-7.25 3.86599,0 7,3.24594 7,7.25 z"
+         sodipodi:ry="7.25"
+         sodipodi:rx="7"
+         sodipodi:cy="205.80386"
+         sodipodi:cx="519"
+         id="path3639-3-6-7-2"
+         style="color:#000000;fill:#999999;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.56348395;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
+         sodipodi:type="arc"
+         transform="matrix(1.3150982,0,0,1.244271,432.77547,2510.0705)" />
+    </g>
+  </g>
+</svg>
diff --git a/challenge-bot.com/index.md b/challenge-bot.com/index.md
new file mode 100644 (file)
index 0000000..2984eb2
--- /dev/null
@@ -0,0 +1,8 @@
+---
+layout: default
+---
+
+Sign up for the challenge-bot class by emailing
+ [Daniel Watson](ozzloy@gmail.com)!
+
+<img alt="bunny2.svg" src="images/bunny2.svg" class="main"/>
diff --git a/challenge-bot.com/source-code.md b/challenge-bot.com/source-code.md
new file mode 100644 (file)
index 0000000..34ba5c7
--- /dev/null
@@ -0,0 +1,7 @@
+---
+title: source-code
+layout: default
+---
+
+The source code for the challenge-bot is up on
+ [gitorious](//gitorious.org/ozzloy/challenge-bot).
\ No newline at end of file
diff --git a/challenge-bot.com/upcoming-classes.md b/challenge-bot.com/upcoming-classes.md
new file mode 100644 (file)
index 0000000..9c33b97
--- /dev/null
@@ -0,0 +1,19 @@
+---
+title: upcoming-classes
+layout: default
+---
+
+Sign up for the challenge-bot class by emailing
+ [Daniel Watson](ozzloy@gmail.com)!
+
+You can also sign up for
+ [this Google group](https://groups.google.com/forum/#!forum/challenge-bot-announcements)
+ to get announcements when new courses are added.
+
+## November 2014
+
+**Session 0**: 2014-11-16 13:00 - 17:00
+ ([event page @ Hacker Dojo](http://events.hackerdojo.com/event/5898334455726080-challenge-bot-0))
+
+**Session 1**: 2014-11-23 13:00 - 17:00
+ ([event page @ Hacker Dojo](http://events.hackerdojo.com/event/5843037724868608-challenge-bot-1))
diff --git a/challenge-bot.com/videos.md b/challenge-bot.com/videos.md
new file mode 100644 (file)
index 0000000..86a13b9
--- /dev/null
@@ -0,0 +1,23 @@
+---
+title: videos
+layout: default
+---
+
+# Videos!
+
+## challenge-bot in action
+
+<iframe src="//www.youtube.com/embed/qg5WpeSCRZY?list=PLLiYVIuIQg5IhiQzziHun8cUVaD0VHwhP" frameborder="0" allowfullscreen></iframe>
+
+The challenge-bot has two autonomous functions:
+
+1. follow-bot: keep a constant distance from something in front of it
+2. the tabletop challenge: wander around a table without falling off
+
+## instructions for building your challenge-bot
+
+<iframe src="//www.youtube.com/embed/Js6rk4XW_DU?list=PLLiYVIuIQg5L9JdJTJITYFqEnpDYlZaRn" frameborder="0" allowfullscreen></iframe>
+
+Here are instructions for putting together the kit (version 5df1ea8).
+
+The challenge-bot course will walk you through all of these steps.
diff --git a/challenge-bot.com/what-to-bring.md b/challenge-bot.com/what-to-bring.md
new file mode 100644 (file)
index 0000000..212460a
--- /dev/null
@@ -0,0 +1,23 @@
+---
+layout: default
+title: how-to-prepare
+---
+
+## How do I prepare for the challenge-bot class?
+
+We will use some software in the challenge-bot class:
+
+* [openSCAD](//www.openscad.org/downloads)
+* [fritzing](//fritzing.org/download/)
+* [arduino ide](//arduino.cc/en/Main/Software)
+
+You can install the software above ahead of time to save time in class,
+ but we will have this available when you get there.
+
+## What should I bring to the challenge-bot class?
+
+Bring your laptop and that's it!  Tools and materials are provided at
+ the class.
+
+If you don't have a laptop, we might be able to let you borrow one. Just
+ let us know when you contact us to sign up, and we'll try to help.