diff options
Diffstat (limited to 'share')
| -rw-r--r-- | share/extensions/Makefile.am | 8 | ||||
| -rw-r--r-- | share/extensions/hpgl_input.inx | 19 | ||||
| -rw-r--r-- | share/extensions/hpgl_input.py | 113 | ||||
| -rw-r--r-- | share/extensions/render_gear_rack.inx | 21 | ||||
| -rw-r--r-- | share/extensions/render_gear_rack.py | 105 | ||||
| -rw-r--r-- | share/extensions/render_gears.inx (renamed from share/extensions/gears.inx) | 8 | ||||
| -rw-r--r--[-rwxr-xr-x] | share/extensions/render_gears.py (renamed from share/extensions/gears.py) | 0 | ||||
| -rw-r--r-- | share/icons/icons.svg | 538 |
8 files changed, 649 insertions, 163 deletions
diff --git a/share/extensions/Makefile.am b/share/extensions/Makefile.am index ee6bd0ea3..468a8e753 100644 --- a/share/extensions/Makefile.am +++ b/share/extensions/Makefile.am @@ -64,7 +64,8 @@ extensions = \ foldablebox.py \ fractalize.py \ funcplot.py \ - gears.py\ + render_gears.py \ + render_gear_rack.py \ gcodetools.py\ generate_voronoi.py \ gimp_xcf.py \ @@ -74,6 +75,7 @@ extensions = \ guides_creator.py \ guillotine.py \ handles.py \ + hpgl_input.py \ hpgl_output.py \ ill2svg.pl \ ink2canvas.py \ @@ -242,7 +244,8 @@ modules = \ foldablebox.inx \ fractalize.inx \ funcplot.inx \ - gears.inx\ + render_gears.inx \ + render_gear_rack.inx \ gcodetools_about.inx\ gcodetools_area.inx\ gcodetools_check_for_updates.inx\ @@ -262,6 +265,7 @@ modules = \ guides_creator.inx \ guillotine.inx \ handles.inx \ + hpgl_input.inx \ hpgl_output.inx \ ink2canvas.inx \ inkscape_follow_link.inx \ diff --git a/share/extensions/hpgl_input.inx b/share/extensions/hpgl_input.inx new file mode 100644 index 000000000..0d8cad158 --- /dev/null +++ b/share/extensions/hpgl_input.inx @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <_name>HPGL Input</_name> + <id>org.inkscape.input.hpgl</id> + <dependency type="executable" location="extensions">hpgl_input.py</dependency> + <dependency type="executable" location="extensions">inkex.py</dependency> + <param name="resolutionX" type="float" min="1.0" max="4096.0" precision="1" _gui-text="Resolution X (dpi)" _gui-description="The amount of steps in one inch on the X axis (Default: 1016.0)">1016.0</param> + <param name="resolutionY" type="float" min="1.0" max="4096.0" precision="1" _gui-text="Resolution Y (dpi)" _gui-description="The amount of steps in one inch on the Y axis (Default: 1016.0)">1016.0</param> + <param name="showMovements" type="boolean" _gui-text="Show Movements between paths" _gui-description="Show movements between paths in a different color (Default: Un-checked)">false</param> + <input> + <extension>.hpgl</extension> + <mimetype>image/hpgl</mimetype> + <_filetypename>HP Graphics Language file (*.hpgl)</_filetypename> + <_filetypetooltip>Import HP Graphics Language file</_filetypetooltip> + </input> + <script> + <command reldir="extensions" interpreter="python">hpgl_input.py</command> + </script> +</inkscape-extension> diff --git a/share/extensions/hpgl_input.py b/share/extensions/hpgl_input.py new file mode 100644 index 000000000..d20b344f5 --- /dev/null +++ b/share/extensions/hpgl_input.py @@ -0,0 +1,113 @@ +#!/usr/bin/env python +# coding=utf-8 +''' +hpgl_input.py - input a HP Graphics Language file + +Copyright (C) 2013 Sebastian Wüst, sebi@timewaster.de, http://www.timewasters-place.com/ + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +''' + +# standard library +from StringIO import StringIO +# local library +import inkex + +inkex.localize() + +# parse options +parser = inkex.optparse.OptionParser(usage="usage: %prog [options] HPGLfile", option_class=inkex.InkOption) +parser.add_option("-a", "--resolutionX", + action="store", type="float", + dest="resolutionX", default=1016.0, + help="Resolution X (dpi)") +parser.add_option("-b", "--resolutionY", + action="store", type="float", + dest="resolutionY", default=1016.0, + help="Resolution Y (dpi)") +parser.add_option("-c", "--showMovements", + action="store", type="inkbool", + dest="showMovements", default="FALSE", + help="Show Movements between paths") +(options, args) = parser.parse_args(inkex.sys.argv[1:]) + +# global vars +scaleX = options.resolutionX / 90.0 # dots/inch to dots/pixels +scaleY = options.resolutionY / 90.0 # dots/inch to dots/pixels +documentWidth = 210.0 * 3.5433070866 # 210mm to pixels +documentHeight = 297.0 * 3.5433070866 # 297mm to pixels +hasUnknownCommands = False + +def getData(file): + # read file (read only one line, there should not be more than one line) + stream = open(file, 'r') + data = stream.readline().strip() + data = data.split(';') + if len(data) < 2: + inkex.errormsg(_("No HPGL data found.")) + return False + if data[-1].strip() == '': + data.pop() + return data + +def getCoordinates(coord): + # process coordinates + (x, y) = coord.split(',') + x = float(x) / scaleX; # convert to pixels coordinate system + y = documentHeight - float(y) / scaleY; # convert to pixels coordinate system + return (x, y) + +# prepare document +doc = inkex.etree.parse(StringIO('<svg xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" width="%s" height="%s"></svg>' % (documentWidth, documentHeight))) +layerDrawing = inkex.etree.SubElement(doc.getroot(), 'g', {inkex.addNS('groupmode','inkscape'):'layer', inkex.addNS('label','inkscape'):'Drawing'}) +if options.showMovements: + layerMovements = inkex.etree.SubElement(doc.getroot(), 'g', {inkex.addNS('groupmode','inkscape'):'layer', inkex.addNS('label','inkscape'):'Movements'}) + +# load data +data = getData(args[0]) +if data != False: + # parse paths + oldCoordinates = (0.0, documentHeight) + path = '' + for i, command in enumerate(data): + if command.strip() != '': + if command[:2] == 'PU': # if Pen Up command + if " L" in path: + inkex.etree.SubElement(layerDrawing, 'path', {'d':path, 'style':'stroke:#000000; stroke-width:0.2; fill:none;'}) + if options.showMovements and i != len(data) - 1: + path = 'M %f,%f' % oldCoordinates + path += ' L %f,%f' % getCoordinates(command[2:]) + inkex.etree.SubElement(layerMovements, 'path', {'d':path, 'style':'stroke:#ff0000; stroke-width:0.2; fill:none;'}) + path = 'M %f,%f' % getCoordinates(command[2:]) + elif command[:2] == 'PD': # if Pen Down command + path += ' L %f,%f' % getCoordinates(command[2:]) + oldCoordinates = getCoordinates(command[2:]) + elif command[:2] == 'IN': # if Initialize command + pass + elif command[:2] == 'SP': # if Select Pen command + pass + else: + hasUnknownCommands = True + if " L" in path: + inkex.etree.SubElement(layerDrawing, 'path', {'d':path, 'style':'stroke:#000000; stroke-width:0.2; fill:none;'}) + +# deliver document to inkscape +doc.write(inkex.sys.stdout) + +# issue warning if unknown commands where found +if hasUnknownCommands: + inkex.errormsg(_("The HPGL data contained unknown (unsupported) commands, there is a possibility that the drawing is missing some content.")) + +# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99 diff --git a/share/extensions/render_gear_rack.inx b/share/extensions/render_gear_rack.inx new file mode 100644 index 000000000..9da3e36e4 --- /dev/null +++ b/share/extensions/render_gear_rack.inx @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <_name>Rack Gear</_name> + <id>org.bg.filter.rackgear</id> + <dependency type="executable" location="extensions">render_gear_rack.py</dependency> + <dependency type="executable" location="extensions">inkex.py</dependency> + <param name="length" type="float" min="0.1" max="3000.0" _gui-text="Rack Length:">100.</param> + <param name="spacing" type="float" min="0.01" max="100.0" _gui-text="Tooth Spacing:">10.0</param> + <param name="angle" type="float" min="-45.0" max="45.0" _gui-text="Contact Angle:">20.0</param> + <effect> + <object-type>all</object-type> + <effects-menu> + <submenu _name="Render"> + <submenu _name="Gear" /> + </submenu> + </effects-menu> + </effect> + <script> + <command reldir="extensions" interpreter="python">render_gear_rack.py</command> + </script> +</inkscape-extension> diff --git a/share/extensions/render_gear_rack.py b/share/extensions/render_gear_rack.py new file mode 100644 index 000000000..13eaf1017 --- /dev/null +++ b/share/extensions/render_gear_rack.py @@ -0,0 +1,105 @@ +#! /usr/bin/env python +''' +Copyright (C) 2013 Brett Graham (hahahaha @ hahaha.org) + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +''' + +import inkex +import simplestyle +from math import * + + +def involute_intersect_angle(Rb, R): + Rb, R = float(Rb), float(R) + return (sqrt(R**2 - Rb**2) / (Rb)) - (acos(Rb / R)) + + +def point_on_circle(radius, angle): + x = radius * cos(angle) + y = radius * sin(angle) + return (x, y) + + +def points_to_svgd(p): + """ + p: list of 2 tuples (x, y coordinates) + """ + f = p[0] + p = p[1:] + svgd = 'M%.3f,%.3f' % f + for x in p: + svgd += 'L%.3f,%.3f' % x + return svgd + + +class RackGear(inkex.Effect): + def __init__(self): + inkex.Effect.__init__(self) + self.OptionParser.add_option( + "-l", "--length", + action="store", type="float", + dest="length", default=100., + help="Rack Length") + self.OptionParser.add_option( + "-s", "--spacing", + action="store", type="float", + dest="spacing", default=10., + help="Tooth Spacing") + self.OptionParser.add_option( + "-a", "--angle", + action="store", type="float", + dest="angle", default=20., + help="Contact Angle") + + def effect(self): + length = self.options.length + spacing = self.options.spacing + angle = radians(self.options.angle) + + # generate points: list of (x, y) pairs + points = [] + x = 0 + tas = tan(angle) * spacing + while x < length: + # move along path, generating the next 'tooth' + points.append((x, 0)) + points.append((x + tas, spacing)) + points.append((x + spacing, spacing)) + points.append((x + spacing + tas, 0)) + x += spacing * 2. + + path = points_to_svgd(points) + + # Embed gear in group to make animation easier: + # Translate group, Rotate path. + t = 'translate(' + str(self.view_center[0]) + ',' + \ + str(self.view_center[1]) + ')' + g_attribs = { + inkex.addNS('label', 'inkscape'): 'RackGear' + str(length), + 'transform': t} + g = inkex.etree.SubElement(self.current_layer, 'g', g_attribs) + + # Create SVG Path for gear + style = {'stroke': '#000000', 'fill': 'none'} + gear_attribs = { + 'style': simplestyle.formatStyle(style), + 'd': path} + gear = inkex.etree.SubElement( + g, inkex.addNS('path', 'svg'), gear_attribs) + +if __name__ == '__main__': + e = RackGear() + e.affect() diff --git a/share/extensions/gears.inx b/share/extensions/render_gears.inx index 78d556b4a..13a3afd40 100644 --- a/share/extensions/gears.inx +++ b/share/extensions/render_gears.inx @@ -2,7 +2,7 @@ <inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> <_name>Gear</_name> <id>org.ekips.filter.gears</id> - <dependency type="executable" location="extensions">gears.py</dependency> + <dependency type="executable" location="extensions">render_gears.py</dependency> <dependency type="executable" location="extensions">inkex.py</dependency> <param name="teeth" type="int" min="6" max="360" _gui-text="Number of teeth:">24</param> <param name="pitch" type="float" min="0.0" max="1000.0" _gui-text="Circular pitch (tooth size):">20.0</param> @@ -17,10 +17,12 @@ <effect> <object-type>all</object-type> <effects-menu> - <submenu _name="Render"/> + <submenu _name="Render"> + <submenu _name="Gear"/> + </submenu> </effects-menu> </effect> <script> - <command reldir="extensions" interpreter="python">gears.py</command> + <command reldir="extensions" interpreter="python">render_gears.py</command> </script> </inkscape-extension> diff --git a/share/extensions/gears.py b/share/extensions/render_gears.py index a1b3ee666..a1b3ee666 100755..100644 --- a/share/extensions/gears.py +++ b/share/extensions/render_gears.py diff --git a/share/icons/icons.svg b/share/icons/icons.svg index 732d3d8f1..e08b39e2c 100644 --- a/share/icons/icons.svg +++ b/share/icons/icons.svg @@ -8,7 +8,7 @@ xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - inkscape:version="0.48+devel r12063" + inkscape:version="0.48+devel r12070" sodipodi:docname="icons.svg" height="540" width="1250" @@ -5639,16 +5639,6 @@ style="stop-color:#000000;stop-opacity:1.0000000;" /> </linearGradient> <linearGradient - xlink:href="#linearGradient5740-1-4" - y2="180.6826" - x2="164.3598" - y1="172.2059" - x1="161.736" - gradientTransform="matrix(2.499161,0,0,1.671823,-80.46987,-178.7565)" - gradientUnits="userSpaceOnUse" - id="linearGradient5545-0" - inkscape:collect="always" /> - <linearGradient id="linearGradient5740-1-4"> <stop id="stop5742-8-4" @@ -5660,16 +5650,6 @@ style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> </linearGradient> <linearGradient - xlink:href="#linearGradient5740-1-4-4" - y2="180.6826" - x2="164.3598" - y1="172.2059" - x1="161.736" - gradientTransform="matrix(2.499161,0,0,1.671823,-83.92049,-178.7565)" - gradientUnits="userSpaceOnUse" - id="linearGradient5545-0-7" - inkscape:collect="always" /> - <linearGradient id="linearGradient5740-1-4-4"> <stop id="stop5742-8-4-5" @@ -5701,6 +5681,121 @@ offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> </linearGradient> + <linearGradient + id="linearGradient1887-1"> + <stop + id="stop1888-0" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-9" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient10926" + xlink:href="#linearGradient1887-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1887-4"> + <stop + id="stop1888-8" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-7" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(0.533827,0,0,0.532126,-61.18771,-178.1669)" + gradientUnits="userSpaceOnUse" + id="linearGradient11010" + xlink:href="#linearGradient1887-4" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1887-1-0"> + <stop + id="stop1888-0-6" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-9-4" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient11070" + xlink:href="#linearGradient1887-1-0" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1887-1-0-3"> + <stop + id="stop1888-0-6-7" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-9-4-2" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient11130" + xlink:href="#linearGradient1887-1-0-3" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887-3" + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient15175-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1887-3"> + <stop + id="stop1888-2" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-94" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient11238" + xlink:href="#linearGradient1887-3" + inkscape:collect="always" /> </defs> <sodipodi:namedview inkscape:guide-bbox="true" @@ -5710,13 +5805,13 @@ pagecolor="#e8e8e4" snaptoguides="true" showguides="true" - inkscape:window-y="24" - inkscape:window-x="65" - inkscape:window-height="744" - inkscape:window-width="1301" - inkscape:cy="442.38602" - inkscape:cx="967.99735" - inkscape:zoom="2.2115385" + inkscape:window-y="0" + inkscape:window-x="0" + inkscape:window-height="719" + inkscape:window-width="1366" + inkscape:cy="325.3210360073" + inkscape:cx="844.3786642796" + inkscape:zoom="1.181937294817" gridtolerance="6" snaptogrid="false" showgrid="false" @@ -6388,7 +6483,7 @@ http://www.inkscape.org/</dc:description> inkscape:label="#draw_zoom"> <path transform="matrix(1.087654,0,0,1.087684,-16.16957,-14.33312)" - d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 C 182.86599,152 186,155.13401 186,159 Z" + d="m 186,159 c 0,3.8659932488 -3.1340067512,7 -7,7 -3.8659932488,0 -7,-3.1340067512 -7,-7 0,-3.8659932488 3.1340067512,-7 7,-7 C 182.8659932488,152 186,155.1340067512 186,159 Z" sodipodi:ry="7" sodipodi:rx="7" sodipodi:cy="159" @@ -6405,7 +6500,7 @@ http://www.inkscape.org/</dc:description> style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> <path transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)" - d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 C 182.86599,152 186,155.13401 186,159 Z" + d="m 186,159 c 0,3.8659932488 -3.1340067512,7 -7,7 -3.8659932488,0 -7,-3.1340067512 -7,-7 0,-3.8659932488 3.1340067512,-7 7,-7 C 182.8659932488,152 186,155.1340067512 186,159 Z" sodipodi:ry="7" sodipodi:rx="7" sodipodi:cy="159" @@ -7103,7 +7198,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="159" sodipodi:rx="7" sodipodi:ry="7" - d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 C 182.86599,152 186,155.13401 186,159 Z" + d="m 186,159 c 0,3.8659932488 -3.1340067512,7 -7,7 -3.8659932488,0 -7,-3.1340067512 -7,-7 0,-3.8659932488 3.1340067512,-7 7,-7 C 182.8659932488,152 186,155.1340067512 186,159 Z" transform="matrix(1.00786,0,0,1.007983,-167.1731,96.0569)" /> <rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" @@ -7124,7 +7219,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="159" sodipodi:rx="7" sodipodi:ry="7" - d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 C 182.86599,152 186,155.13401 186,159 Z" + d="m 186,159 c 0,3.8659932488 -3.1340067512,7 -7,7 -3.8659932488,0 -7,-3.1340067512 -7,-7 0,-3.8659932488 3.1340067512,-7 7,-7 C 182.8659932488,152 186,155.1340067512 186,159 Z" transform="matrix(1.00786,0,0,1.007983,-167.8785,95.25998)" /> </g> <path @@ -8330,7 +8425,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="210.5" sodipodi:rx="5.5" sodipodi:ry="5.5" - d="m 111,210.5 c 0,3.03757 -2.46243,5.5 -5.5,5.5 -3.03757,0 -5.5,-2.46243 -5.5,-5.5 0,-3.03757 2.46243,-5.5 5.5,-5.5 C 108.53757,205 111,207.46243 111,210.5 Z" + d="m 111,210.5 c 0,3.0375661241 -2.4624338759,5.5 -5.5,5.5 -3.0375661241,0 -5.5,-2.4624338759 -5.5,-5.5 0,-3.0375661241 2.4624338759,-5.5 5.5,-5.5 C 108.5375661241,205 111,207.4624338759 111,210.5 Z" transform="matrix(0.727881,0,0,0.728748,287.069,104.2892)" /> <path sodipodi:type="arc" @@ -8340,7 +8435,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="210.5" sodipodi:rx="5.5" sodipodi:ry="5.5" - d="m 111,210.5 c 0,3.03757 -2.46243,5.5 -5.5,5.5 -3.03757,0 -5.5,-2.46243 -5.5,-5.5 0,-3.03757 2.46243,-5.5 5.5,-5.5 C 108.53757,205 111,207.46243 111,210.5 Z" + d="m 111,210.5 c 0,3.0375661241 -2.4624338759,5.5 -5.5,5.5 -3.0375661241,0 -5.5,-2.4624338759 -5.5,-5.5 0,-3.0375661241 2.4624338759,-5.5 5.5,-5.5 C 108.5375661241,205 111,207.4624338759 111,210.5 Z" transform="matrix(0.547085,0,0,0.548073,306.1137,142.2991)" /> </g> </g> @@ -8834,7 +8929,7 @@ http://www.inkscape.org/</dc:description> id="rect10834" /> <path transform="matrix(1.103062,0,0,1.10649,-36.96118,-22.90202)" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" sodipodi:ry="5" sodipodi:rx="5" sodipodi:cy="215" @@ -8875,7 +8970,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="155.5" sodipodi:rx="5.5" sodipodi:ry="5.5" - d="m 235,155.5 c 0,3.03757 -2.46243,5.5 -5.5,5.5 -3.03757,0 -5.5,-2.46243 -5.5,-5.5 0,-3.03757 2.46243,-5.5 5.5,-5.5 C 232.53757,150 235,152.46243 235,155.5 Z" + d="m 235,155.5 c 0,3.0375661241 -2.4624338759,5.5 -5.5,5.5 -3.0375661241,0 -5.5,-2.4624338759 -5.5,-5.5 0,-3.0375661241 2.4624338759,-5.5 5.5,-5.5 C 232.5375661241,150 235,152.4624338759 235,155.5 Z" transform="translate(95.41614,59.5)" /> <path style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" @@ -9595,7 +9690,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="309.5" sodipodi:rx="3.5" sodipodi:ry="3.5" - d="m 86,309.5 c 0,1.933 -1.567003,3.5 -3.5,3.5 -1.932997,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567003,-3.5 3.5,-3.5 C 84.432997,306 86,307.567 86,309.5 Z" + d="m 86,309.5 c 0,1.9329966244 -1.56700337559,3.5 -3.5,3.5 -1.93299662441,0 -3.5,-1.5670033756 -3.5,-3.5 0,-1.9329966244 1.56700337559,-3.5 3.5,-3.5 C 84.43299662441,306 86,307.5670033756 86,309.5 Z" transform="translate(39.50246,0.5)" /> <path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" @@ -10244,7 +10339,7 @@ http://www.inkscape.org/</dc:description> sodipodi:nodetypes="cccsccccc" /> <path transform="matrix(0.938759,0,0,0.938488,13.33429,5.86879)" - d="m 262,78.5 c 0,1.932997 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567003 -3.5,-3.5 0,-1.932997 1.567,-3.5 3.5,-3.5 C 260.433,75 262,76.567003 262,78.5 Z" + d="m 262,78.5 c 0,1.93299662441 -1.5670033756,3.5 -3.5,3.5 -1.9329966244,0 -3.5,-1.56700337559 -3.5,-3.5 0,-1.93299662441 1.5670033756,-3.5 3.5,-3.5 C 260.4329966244,75 262,76.56700337559 262,78.5 Z" sodipodi:ry="3.5" sodipodi:rx="3.5" sodipodi:cy="78.5" @@ -10276,7 +10371,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="135" sodipodi:rx="1" sodipodi:ry="1" - d="m 65,135 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 C 64.552285,134 65,134.44772 65,135 Z" + d="m 65,135 c 0,0.5522847498 -0.44771525017,1 -1,1 -0.55228474983,0 -1,-0.4477152502 -1,-1 0,-0.5522847498 0.44771525017,-1 1,-1 C 64.55228474983,134 65,134.4477152502 65,135 Z" transform="matrix(-1,0,0,1,321.0144,-55.92699)" /> <path sodipodi:type="arc" @@ -10286,7 +10381,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="135" sodipodi:rx="1" sodipodi:ry="1" - d="m 65,135 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 C 64.552285,134 65,134.44772 65,135 Z" + d="m 65,135 c 0,0.5522847498 -0.44771525017,1 -1,1 -0.55228474983,0 -1,-0.4477152502 -1,-1 0,-0.5522847498 0.44771525017,-1 1,-1 C 64.55228474983,134 65,134.4477152502 65,135 Z" transform="matrix(-1.5,0,0,1.5,351.5144,-122.927)" /> </g> <g @@ -10300,7 +10395,7 @@ http://www.inkscape.org/</dc:description> style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> <path transform="matrix(0.119829,0,0,0.105878,237.4457,94.48869)" - d="m 280,97.5 c 0,3.58985 -2.79822,6.5 -6.25,6.5 -3.45178,0 -6.25,-2.91015 -6.25,-6.5 0,-3.589851 2.79822,-6.5 6.25,-6.5 C 277.20178,91 280,93.910149 280,97.5 Z" + d="m 280,97.5 c 0,3.5898508739 -2.7982203136,6.5 -6.25,6.5 -3.4517796864,0 -6.25,-2.9101491261 -6.25,-6.5 0,-3.5898508739 2.7982203136,-6.5 6.25,-6.5 C 277.2017796864,91 280,93.9101491261 280,97.5 Z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" @@ -10315,7 +10410,7 @@ http://www.inkscape.org/</dc:description> style="color:#000000;fill:url(#linearGradient11335);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11359);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> <path transform="matrix(0.401393,0,0,0.385965,168.1187,65.35082)" - d="m 280,97.5 c 0,3.58985 -2.79822,6.5 -6.25,6.5 -3.45178,0 -6.25,-2.91015 -6.25,-6.5 0,-3.589851 2.79822,-6.5 6.25,-6.5 C 277.20178,91 280,93.910149 280,97.5 Z" + d="m 280,97.5 c 0,3.5898508739 -2.7982203136,6.5 -6.25,6.5 -3.4517796864,0 -6.25,-2.9101491261 -6.25,-6.5 0,-3.5898508739 2.7982203136,-6.5 6.25,-6.5 C 277.2017796864,91 280,93.9101491261 280,97.5 Z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" @@ -10543,7 +10638,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="23" sodipodi:rx="3" sodipodi:ry="3" - d="m 284,23 c 0,1.656854 -1.34315,3 -3,3 -1.65685,0 -3,-1.343146 -3,-3 0,-1.656854 1.34315,-3 3,-3 C 282.65685,20 284,21.343146 284,23 Z" + d="m 284,23 c 0,1.65685424949 -1.3431457505,3 -3,3 -1.6568542495,0 -3,-1.34314575051 -3,-3 0,-1.65685424949 1.3431457505,-3 3,-3 C 282.6568542495,20 284,21.34314575051 284,23 Z" transform="matrix(1.331759,0,0,1.327869,-92.69296,-5.997991)" /> <path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" @@ -13703,7 +13798,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(2.158934,0,0,1.807036,304.9623,206.775)" /> <path sodipodi:type="arc" @@ -13713,7 +13808,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(2.158934,0,0,1.807036,270.4753,278.716)" /> <path sodipodi:type="arc" @@ -13723,7 +13818,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(2.158934,0,0,1.807035,316.828,283.148)" /> <path sodipodi:type="arc" @@ -13733,7 +13828,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(2.158934,0,0,1.807035,339.8194,239.9834)" /> <path sodipodi:type="arc" @@ -13743,7 +13838,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(2.158934,0,0,1.807036,385.4323,235.551)" /> <path sodipodi:type="arc" @@ -13753,7 +13848,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(2.158934,0,0,1.807036,414.1713,206.775)" /> <path sodipodi:type="arc" @@ -13763,7 +13858,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(2.158934,0,0,1.807036,414.1713,273.92)" /> <use xlink:href="#path5724" @@ -14059,7 +14154,7 @@ http://www.inkscape.org/</dc:description> transform="matrix(0.483821,0,0,0.485303,274.88233,249.31868)"> <path transform="matrix(1.125571,0,0,1.125565,-22.76161,-20.24985)" - d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 C 182.86599,152 186,155.13401 186,159 Z" + d="m 186,159 c 0,3.8659932488 -3.1340067512,7 -7,7 -3.8659932488,0 -7,-3.1340067512 -7,-7 0,-3.8659932488 3.1340067512,-7 7,-7 C 182.8659932488,152 186,155.1340067512 186,159 Z" sodipodi:ry="7" sodipodi:rx="7" sodipodi:cy="159" @@ -14076,7 +14171,7 @@ http://www.inkscape.org/</dc:description> style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> <path transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)" - d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 C 182.86599,152 186,155.13401 186,159 Z" + d="m 186,159 c 0,3.8659932488 -3.1340067512,7 -7,7 -3.8659932488,0 -7,-3.1340067512 -7,-7 0,-3.8659932488 3.1340067512,-7 7,-7 C 182.8659932488,152 186,155.1340067512 186,159 Z" sodipodi:ry="7" sodipodi:rx="7" sodipodi:cy="159" @@ -14137,7 +14232,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="714" sodipodi:rx="3.5" sodipodi:ry="4" - d="m 67,714 c 0,2.20914 -1.567003,4 -3.5,4 -1.932997,0 -3.5,-1.79086 -3.5,-4 0,-2.20914 1.567003,-4 3.5,-4 C 65.432997,710 67,711.79086 67,714 Z" + d="m 67,714 c 0,2.2091389993 -1.56700337559,4 -3.5,4 -1.93299662441,0 -3.5,-1.7908610007 -3.5,-4 0,-2.2091389993 1.56700337559,-4 3.5,-4 C 65.43299662441,710 67,711.7908610007 67,714 Z" transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)" /> <path sodipodi:type="arc" @@ -14147,7 +14242,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="714" sodipodi:rx="3.5" sodipodi:ry="4" - d="m 67,714 c 0,2.20914 -1.567003,4 -3.5,4 -1.932997,0 -3.5,-1.79086 -3.5,-4 0,-2.20914 1.567003,-4 3.5,-4 C 65.432997,710 67,711.79086 67,714 Z" + d="m 67,714 c 0,2.2091389993 -1.56700337559,4 -3.5,4 -1.93299662441,0 -3.5,-1.7908610007 -3.5,-4 0,-2.2091389993 1.56700337559,-4 3.5,-4 C 65.43299662441,710 67,711.7908610007 67,714 Z" transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)" /> </g> </g> @@ -14600,7 +14695,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(0.375607,0,0,0.376774,698.833,582.9556)" /> <path sodipodi:type="arc" @@ -14610,7 +14705,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(0.375607,0,0,0.376774,690.833,572.9556)" /> <path sodipodi:type="arc" @@ -14620,7 +14715,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(0.375607,0,0,0.376774,706.833,572.9556)" /> <path sodipodi:type="arc" @@ -14630,7 +14725,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" - d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 C 330.76142,210 333,212.23858 333,215 Z" + d="m 333,215 c 0,2.7614237492 -2.2385762508,5 -5,5 -2.7614237492,0 -5,-2.2385762508 -5,-5 0,-2.7614237492 2.2385762508,-5 5,-5 C 330.7614237492,210 333,212.2385762508 333,215 Z" transform="matrix(0.375607,0,0,0.376774,698.833,592.9556)" /> <path id="path3789" @@ -14965,7 +15060,7 @@ http://www.inkscape.org/</dc:description> id="path5212" /> <path transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)" - d="m 67,714 c 0,2.20914 -1.567003,4 -3.5,4 -1.932997,0 -3.5,-1.79086 -3.5,-4 0,-2.20914 1.567003,-4 3.5,-4 C 65.432997,710 67,711.79086 67,714 Z" + d="m 67,714 c 0,2.2091389993 -1.56700337559,4 -3.5,4 -1.93299662441,0 -3.5,-1.7908610007 -3.5,-4 0,-2.2091389993 1.56700337559,-4 3.5,-4 C 65.43299662441,710 67,711.7908610007 67,714 Z" sodipodi:ry="4" sodipodi:rx="3.5" sodipodi:cy="714" @@ -14975,7 +15070,7 @@ http://www.inkscape.org/</dc:description> sodipodi:type="arc" /> <path transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)" - d="m 67,714 c 0,2.20914 -1.567003,4 -3.5,4 -1.932997,0 -3.5,-1.79086 -3.5,-4 0,-2.20914 1.567003,-4 3.5,-4 C 65.432997,710 67,711.79086 67,714 Z" + d="m 67,714 c 0,2.2091389993 -1.56700337559,4 -3.5,4 -1.93299662441,0 -3.5,-1.7908610007 -3.5,-4 0,-2.2091389993 1.56700337559,-4 3.5,-4 C 65.43299662441,710 67,711.7908610007 67,714 Z" sodipodi:ry="4" sodipodi:rx="3.5" sodipodi:cy="714" @@ -15851,7 +15946,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="14.875" sodipodi:rx="1.3125" sodipodi:ry="1.3125" - d="m 14.1875,14.875 c 0,0.724874 -0.587626,1.3125 -1.3125,1.3125 -0.724874,0 -1.3125,-0.587626 -1.3125,-1.3125 0,-0.724874 0.587626,-1.3125 1.3125,-1.3125 C 13.599874,13.5625 14.1875,14.150126 14.1875,14.875 Z" + d="m 14.1875,14.875 c 0,0.72487373415 -0.58762626585,1.3125 -1.3125,1.3125 -0.72487373415,0 -1.3125,-0.58762626585 -1.3125,-1.3125 0,-0.72487373415 0.58762626585,-1.3125 1.3125,-1.3125 C 13.59987373415,13.5625 14.1875,14.15012626585 14.1875,14.875 Z" transform="matrix(1.12392,0,0,1.12392,0.83338,-2.58525)" /> <path style="color:#000000;fill:url(#radialGradient4365);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000095;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" @@ -16011,7 +16106,7 @@ http://www.inkscape.org/</dc:description> x="500" y="150" /> <path - d="m 514,158 c 0,3.31371 -2.68629,6 -6,6 -3.31371,0 -6,-2.68629 -6,-6 0,-2.14359 1.14359,-4.12435 3,-5.19615 L 508,158 Z" + d="m 514,158 c 0,3.313708499 -2.686291501,6 -6,6 -3.313708499,0 -6,-2.686291501 -6,-6 0,-2.1435931005 1.143593075,-4.1243548779 2.9999989359,-5.1961518083 L 508,158 Z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" @@ -16044,7 +16139,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="158" sodipodi:rx="6" sodipodi:ry="6" - d="m 514,158 c 0,3.31371 -2.68629,6 -6,6 -3.31371,0 -6,-2.68629 -6,-6 0,-2.14359 1.14359,-4.12435 3,-5.19615" + d="m 514,158 c 0,3.313708499 -2.686291501,6 -6,6 -3.313708499,0 -6,-2.686291501 -6,-6 0,-2.1435931005 1.143593075,-4.1243548779 2.9999989359,-5.1961518083" sodipodi:open="true" /> </g> <g @@ -16634,7 +16729,7 @@ http://www.inkscape.org/</dc:description> transform="translate(15.99998,0)"> <path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" - d="m 761.92919,60.211353 c -0.34137,1.181505 -0.43463,2.172145 -0.42806,2.998425 0.007,0.82628 0.11557,1.488452 0.25528,2.011309 0.27942,1.045712 0.6632,1.540336 1.03579,1.621393 0.37259,0.08106 1.26622,-0.146123 2.15134,-0.440605 0.44256,-0.147241 0.88196,-0.310622 1.2525,-0.483273 0.37053,-0.172651 0.67107,-0.353659 0.85194,-0.575066 -0.64166,-0.700554 -1.60046,-1.299365 -2.62089,-1.996553 -0.51021,-0.348594 -1.03107,-0.727445 -1.48389,-1.216759 C 762.49038,61.640911 762.10085,61.039897 761.92919,60.211353 z m 2.52868,-1.193129 c -0.24495,0.778674 -0.14818,1.654459 0.24207,2.343932 0.33139,0.587602 0.85722,1.030457 1.46236,1.31726 0.53411,0.247468 1.11807,0.367145 1.75106,0.35988 -0.69504,-0.419477 -1.3004,-0.819403 -1.78874,-1.228209 -0.48834,-0.408806 -0.85785,-0.82592 -1.11375,-1.221298 C 764.49907,59.799033 764.45424,59.100241 764.45787,59.018224 z m 2.79833,-1.033603 c -0.47824,1.01311 -0.3614,1.724716 0.0107,2.196488 0.3721,0.471771 0.99966,0.729498 1.72325,0.914593 -0.65709,-0.511053 -1.14489,-1.245517 -1.42499,-1.889588 C 767.28506,58.562043 767.21397,58.015586 767.2562,57.984621 z m 3.52583,-2.202592 c -0.57651,0.331771 -0.5058,1.381683 -0.77803,1.762893 -0.52604,0.736629 -1.06252,0.846662 -0.78009,1.43544 0.36643,0.763924 0.52535,0.378151 1.51603,0.473729 0.30917,0.02983 1.22686,0.974506 1.5502,0.916275 C 771.3092,58.830052 770.74545,57.389129 770.78203,55.782029 Z" + d="m 761.9291897895,60.21135253143 c -0.3413683854,1.18150513088 -0.4346293742,2.17214546029 -0.428060766,2.99842569756 0.00656861,0.82628023726 0.1155700459,1.48845213995 0.2552804505,2.01130848711 0.2794208093,1.0457126943 0.6632035049,1.54033606301 1.035790526,1.6213932839 0.3725870211,0.0810572209 1.2662204092,-0.14612278726 2.1513421887,-0.44060514399 0.4425608898,-0.14724117836 0.8819624216,-0.31062168404 1.2524957579,-0.48327269838 0.3705333363,-0.17265101435 0.6710676891,-0.35365927503 0.8519433363,-0.57506659716 -0.6416596306,-0.70055318409 -1.6004570303,-1.29936490529 -2.6208863524,-1.99655236991 -0.510214661,-0.3485937323 -1.0310779999,-0.72744553237 -1.483896228,-1.21675886123 C 762.4903804744,61.64091100047 762.1008465402,61.03989704813 761.9291897895,60.21135253143 z m 2.5286841493,-1.19312879862 c -0.2449497296,0.77867426215 -0.148186872,1.65445919661 0.2420693054,2.34393177432 0.3313859429,0.58760232376 0.8572144056,1.03045777539 1.4623536656,1.31726053893 0.5341147095,0.2474679365 1.1180748366,0.36714488174 1.751060082,0.35987954204 -0.6950405451,-0.41947656961 -1.3003947072,-0.81940244671 -1.7887335222,-1.22820843184 -0.488338815,-0.40880598512 -0.8578515509,-0.82591988786 -1.1137516925,-1.22129798681 C 764.4990714937,59.79903297153 764.4542412012,59.10024054025 764.4578739388,59.01822373281 z m 2.7983219922,-1.03360262497 c -0.4782348687,1.01310959275 -0.3613970499,1.72471629975 0.01070403,2.19648752655 0.3721010795,0.4717712268 0.9996595555,0.72949859831 1.7232518648,0.91459294586 -0.657092572,-0.51105266927 -1.1448893336,-1.24551703208 -1.4249895996,-1.88958761818 C 767.2850619599,58.56204337597 767.2139703665,58.01558614613 767.256195931,57.98462110784 z m 3.5258332277,-2.20259243842 c -0.5765069271,0.33177109819 -0.5058023067,1.38168308452 -0.778030955,1.76289290217 -0.5260403869,0.7366289914 -1.0625137292,0.84666279902 -0.7800920955,1.43544001307 0.3664364358,0.76392474549 0.5253551137,0.37815143783 1.5160351445,0.47372960749 0.3091681068,0.0298275101 1.226856313,0.9745054865 1.550198011,0.91627487904 C 771.3092025973,58.83005245433 770.7454455693,57.38912908219 770.7820291587,55.78202866942 Z" id="path9858" inkscape:path-effect="#path-effect9860" inkscape:original-d="m 762.7922,66.84248 c 0.81,-3.72324 2.6964,-6.76942 8.7466,-8.75802" @@ -17077,7 +17172,7 @@ http://www.inkscape.org/</dc:description> transform="translate(-64,-4)"> <path transform="matrix(1.795342,0,0,1.795342,-669.664,-176.9133)" - d="m 843,222.75 c 0,0.69036 -0.33579,1.25 -0.75,1.25 -0.41421,0 -0.75,-0.55964 -0.75,-1.25 0,-0.69036 0.33579,-1.25 0.75,-1.25 C 842.66421,221.5 843,222.05964 843,222.75 Z" + d="m 843,222.75 c 0,0.6903559373 -0.3357864376,1.25 -0.75,1.25 -0.4142135624,0 -0.75,-0.5596440627 -0.75,-1.25 0,-0.6903559373 0.3357864376,-1.25 0.75,-1.25 C 842.6642135624,221.5 843,222.0596440627 843,222.75 Z" sodipodi:ry="1.25" sodipodi:rx="0.75" sodipodi:cy="222.75" @@ -17644,7 +17739,7 @@ http://www.inkscape.org/</dc:description> inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -17975,7 +18070,7 @@ http://www.inkscape.org/</dc:description> inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -18185,7 +18280,7 @@ http://www.inkscape.org/</dc:description> inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -18455,7 +18550,7 @@ http://www.inkscape.org/</dc:description> inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -18983,7 +19078,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -18995,7 +19090,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19007,7 +19102,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19025,7 +19120,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> <path @@ -19037,13 +19132,13 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19055,7 +19150,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19073,7 +19168,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> <path @@ -19085,7 +19180,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> <path @@ -19097,13 +19192,13 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19135,7 +19230,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" @@ -19145,7 +19240,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19157,7 +19252,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19169,7 +19264,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19181,7 +19276,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19193,7 +19288,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19205,7 +19300,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19217,7 +19312,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19229,7 +19324,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19241,7 +19336,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19253,7 +19348,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19265,7 +19360,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19277,7 +19372,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19289,7 +19384,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19301,7 +19396,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19313,7 +19408,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19325,7 +19420,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19337,7 +19432,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19349,7 +19444,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19361,7 +19456,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19373,7 +19468,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19385,7 +19480,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19397,7 +19492,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19409,7 +19504,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19421,7 +19516,7 @@ http://www.inkscape.org/</dc:description> <path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" - d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 C 375.70815,136.87023 376.20595,137.36803 376.20595,137.9821 Z" + d="m 376.2059537172,137.9821014404 c 0,0.6140677534 -0.4978002704,1.1118680239 -1.1118680238,1.1118680239 -0.6140677534,0 -1.1118680239,-0.4978002705 -1.1118680239,-1.1118680239 0,-0.6140677534 0.4978002705,-1.1118680238 1.1118680239,-1.1118680238 C 375.7081534468,136.8702334166 376.2059537172,137.368033687 376.2059537172,137.9821014404 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" @@ -19708,7 +19803,7 @@ http://www.inkscape.org/</dc:description> style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> <path transform="matrix(0.8749999,0,0,0.875,112.6876,9.126711)" - d="m 755.5,33 c 0,1.104569 -0.89543,2 -2,2 -1.10457,0 -2,-0.895431 -2,-2 0,-1.104569 0.89543,-2 2,-2 C 754.60457,31 755.5,31.895431 755.5,33 Z" + d="m 755.5,33 c 0,1.10456949966 -0.8954305003,2 -2,2 -1.1045694997,0 -2,-0.89543050034 -2,-2 0,-1.10456949966 0.8954305003,-2 2,-2 C 754.6045694997,31 755.5,31.89543050034 755.5,33 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" @@ -19770,7 +19865,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" - d="m 755.5,33 c 0,1.104569 -0.89543,2 -2,2 -1.10457,0 -2,-0.895431 -2,-2 0,-1.104569 0.89543,-2 2,-2 C 754.60457,31 755.5,31.895431 755.5,33 Z" + d="m 755.5,33 c 0,1.10456949966 -0.8954305003,2 -2,2 -1.1045694997,0 -2,-0.89543050034 -2,-2 0,-1.10456949966 0.8954305003,-2 2,-2 C 754.6045694997,31 755.5,31.89543050034 755.5,33 Z" transform="matrix(0.8749999,0,0,0.875,130.6876,9.127)" /> </g> </g> @@ -19851,7 +19946,7 @@ http://www.inkscape.org/</dc:description> style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#0065ff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;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(0.8749999,0,0,0.875,185.0073,8.125)" - d="m 755.5,33 c 0,1.104569 -0.89543,2 -2,2 -1.10457,0 -2,-0.895431 -2,-2 0,-1.104569 0.89543,-2 2,-2 C 754.60457,31 755.5,31.895431 755.5,33 Z" + d="m 755.5,33 c 0,1.10456949966 -0.8954305003,2 -2,2 -1.1045694997,0 -2,-0.89543050034 -2,-2 0,-1.10456949966 0.8954305003,-2 2,-2 C 754.6045694997,31 755.5,31.89543050034 755.5,33 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" @@ -19904,7 +19999,7 @@ http://www.inkscape.org/</dc:description> id="path9141-9-2-5-1" /> <path transform="matrix(0.8749999,0,0,0.875,19.93758,6.375)" - d="m 755.5,33 c 0,1.104569 -0.89543,2 -2,2 -1.10457,0 -2,-0.895431 -2,-2 0,-1.104569 0.89543,-2 2,-2 C 754.60457,31 755.5,31.895431 755.5,33 Z" + d="m 755.5,33 c 0,1.10456949966 -0.8954305003,2 -2,2 -1.1045694997,0 -2,-0.89543050034 -2,-2 0,-1.10456949966 0.8954305003,-2 2,-2 C 754.6045694997,31 755.5,31.89543050034 755.5,33 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" @@ -20020,11 +20115,11 @@ http://www.inkscape.org/</dc:description> inkscape:flatsided="false" inkscape:rounded="0" inkscape:randomized="0" - d="m 109.11231,194.24583 -3.48759,2.20705 -0.0186,4.12722 -3.17675,-2.63488 -3.930991,1.25764 1.524251,-3.83549 -2.410831,-3.34996 4.118791,0.26442 2.44101,-3.32803 L 105.19285,192.95271 Z" + d="m 109.1123079094,194.2458299467 -3.4875882505,2.2070453791 -0.018654296,4.1272235779 -3.1767489284,-2.6348790023 -3.93098737256,1.257640935 1.52424943906,-3.8354901588 -2.4108295092,-3.3499587344 4.118786889,0.2644157206 2.4410127948,-3.3280292937 L 105.192849526,192.9527064313 Z" transform="matrix(1.4926956,-0.04098291,0.03994835,1.4550146,302.93141,-91.012178)" /> <path transform="matrix(1.4926956,-0.04098291,0.03994835,1.4550146,302.93141,-91.012178)" - d="m 107.52772,194.4445 -2.56903,1.61532 -0.0312,3.07464 -2.33014,-1.94413 -2.933809,0.92041 1.128929,-2.81686 -1.78196,-2.5058 3.02785,0.20322 1.8325,-2.46908 L 104.61322,193.46467 Z" + d="m 107.5277226115,194.4444990445 -2.569029073,1.6153194948 -0.031237502,3.0746423187 -2.330133774,-1.9441306652 -2.9338115315,0.9204080981 1.1289272023,-2.8168583245 -1.78195774086,-2.5057988305 3.02784915586,0.2032164792 1.8325010811,-2.4690769443 L 104.613216918,193.4646736864 Z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" @@ -20092,7 +20187,7 @@ http://www.inkscape.org/</dc:description> sodipodi:nodetypes="cccccc" /> <path transform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,34.899768)" - d="m 612.62568,215.72934 c 0,2.34615 -0.8357,4.24809 -1.86659,4.24809 -1.03088,0 -1.86658,-1.90194 -1.86658,-4.24809 0,-2.34615 0.8357,-4.24809 1.86658,-4.24809 C 611.78998,211.48125 612.62568,213.38319 612.62568,215.72934 Z" + d="m 612.6256780624,215.7293395996 c 0,2.3461538904 -0.8356980438,4.2480874062 -1.8665838241,4.2480874062 -1.0308857804,0 -1.8665838242,-1.9019335158 -1.8665838242,-4.2480874062 0,-2.3461538904 0.8356980438,-4.2480874061 1.8665838242,-4.2480874061 C 611.7899800186,211.4812521935 612.6256780624,213.3831857092 612.6256780624,215.7293395996 Z" sodipodi:ry="4.2480874" sodipodi:rx="1.8665838" sodipodi:cy="215.72934" @@ -20109,10 +20204,10 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215.72934" sodipodi:rx="1.8665838" sodipodi:ry="4.2480874" - d="m 612.62568,215.72934 c 0,2.34615 -0.8357,4.24809 -1.86659,4.24809 -1.03088,0 -1.86658,-1.90194 -1.86658,-4.24809 0,-2.34615 0.8357,-4.24809 1.86658,-4.24809 C 611.78998,211.48125 612.62568,213.38319 612.62568,215.72934 Z" /> + d="m 612.6256780624,215.7293395996 c 0,2.3461538904 -0.8356980438,4.2480874062 -1.8665838241,4.2480874062 -1.0308857804,0 -1.8665838242,-1.9019335158 -1.8665838242,-4.2480874062 0,-2.3461538904 0.8356980438,-4.2480874061 1.8665838242,-4.2480874061 C 611.7899800186,211.4812521935 612.6256780624,213.3831857092 612.6256780624,215.7293395996 Z" /> <path transform="matrix(0.67177764,0.57400547,-0.57400547,0.67177764,236.7316,-232.3531)" - d="m 592.86562,198.57608 c 0,0.4088 -0.33139,0.7402 -0.74019,0.7402 -0.4088,0 -0.7402,-0.3314 -0.7402,-0.7402 0,-0.4088 0.3314,-0.7402 0.7402,-0.7402 C 592.53423,197.83588 592.86562,198.16728 592.86562,198.57608 Z" + d="m 592.865624249,198.5760803223 c 0,0.4087995165 -0.3313974863,0.7401970029 -0.7401970029,0.7401970029 -0.4087995166,0 -0.7401970029,-0.3313974864 -0.7401970029,-0.7401970029 0,-0.4087995166 0.3313974863,-0.7401970029 0.7401970029,-0.7401970029 C 592.5342267627,197.8358833194 592.865624249,198.1672808057 592.865624249,198.5760803223 Z" sodipodi:ry="0.740197" sodipodi:rx="0.740197" sodipodi:cy="198.57608" @@ -20202,10 +20297,10 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="215.72934" sodipodi:rx="1.8665838" sodipodi:ry="4.2480874" - d="m 612.62568,215.72934 c 0,2.34615 -0.8357,4.24809 -1.86659,4.24809 -1.03088,0 -1.86658,-1.90194 -1.86658,-4.24809 0,-2.34615 0.8357,-4.24809 1.86658,-4.24809 C 611.78998,211.48125 612.62568,213.38319 612.62568,215.72934 Z" + d="m 612.6256780624,215.7293395996 c 0,2.3461538904 -0.8356980438,4.2480874062 -1.8665838241,4.2480874062 -1.0308857804,0 -1.8665838242,-1.9019335158 -1.8665838242,-4.2480874062 0,-2.3461538904 0.8356980438,-4.2480874061 1.8665838242,-4.2480874061 C 611.7899800186,211.4812521935 612.6256780624,213.3831857092 612.6256780624,215.7293395996 Z" transform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.55597,-101.43481)" /> <path - d="m 612.62568,215.72934 c 0,2.34615 -0.8357,4.24809 -1.86659,4.24809 -1.03088,0 -1.86658,-1.90194 -1.86658,-4.24809 0,-2.34615 0.8357,-4.24809 1.86658,-4.24809 C 611.78998,211.48125 612.62568,213.38319 612.62568,215.72934 Z" + d="m 612.6256780624,215.7293395996 c 0,2.3461538904 -0.8356980438,4.2480874062 -1.8665838241,4.2480874062 -1.0308857804,0 -1.8665838242,-1.9019335158 -1.8665838242,-4.2480874062 0,-2.3461538904 0.8356980438,-4.2480874061 1.8665838242,-4.2480874061 C 611.7899800186,211.4812521935 612.6256780624,213.3831857092 612.6256780624,215.7293395996 Z" sodipodi:ry="4.2480874" sodipodi:rx="1.8665838" sodipodi:cy="215.72934" @@ -20222,7 +20317,7 @@ http://www.inkscape.org/</dc:description> sodipodi:cy="198.57608" sodipodi:rx="0.740197" sodipodi:ry="0.740197" - d="m 592.86562,198.57608 c 0,0.4088 -0.33139,0.7402 -0.74019,0.7402 -0.4088,0 -0.7402,-0.3314 -0.7402,-0.7402 0,-0.4088 0.3314,-0.7402 0.7402,-0.7402 C 592.53423,197.83588 592.86562,198.16728 592.86562,198.57608 Z" + d="m 592.865624249,198.5760803223 c 0,0.4087995165 -0.3313974863,0.7401970029 -0.7401970029,0.7401970029 -0.4087995166,0 -0.7401970029,-0.3313974864 -0.7401970029,-0.7401970029 0,-0.4087995166 0.3313974863,-0.7401970029 0.7401970029,-0.7401970029 C 592.5342267627,197.8358833194 592.865624249,198.1672808057 592.865624249,198.5760803223 Z" transform="matrix(0.33418365,0.63518235,-0.63518235,0.33418365,828.73985,-351.00961)" /> <path style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.32490754;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" @@ -20553,7 +20648,7 @@ http://www.inkscape.org/</dc:description> <path sodipodi:end="4.7170453" sodipodi:start="3.1455643" - d="m 578.00008,371.96028 c 0.0219,-5.5228 4.51683,-9.98214 10.03964,-9.9602 0.002,10e-6 0.005,2e-5 0.007,3e-5 L 588,372 Z" + d="m 578.0000788698,371.9602836403 c 0.02193474,-5.5228039397 4.5168335502,-9.9821395103 10.0396374899,-9.9602047705 0.00228223,9.0642e-6 0.00456445,1.89097e-5 0.00684667,2.95366e-5 L 588,372 Z" sodipodi:ry="10" sodipodi:rx="10" sodipodi:cy="372" @@ -20694,7 +20789,7 @@ http://www.inkscape.org/</dc:description> sodipodi:nodetypes="cc" /> <path transform="matrix(0.4357219,0,0,0.4357219,373.84569,283.24992)" - d="m 207.51493,518.42187 c 0,0.51107 -0.41431,0.92538 -0.92538,0.92538 -0.51107,0 -0.92537,-0.41431 -0.92537,-0.92538 0,-0.51106 0.4143,-0.92537 0.92537,-0.92537 C 207.10062,517.4965 207.51493,517.91081 207.51493,518.42187 Z" + d="m 207.51492697,518.421875 c 0,0.5110694715 -0.4143036655,0.925373137 -0.925373137,0.925373137 -0.5110694715,0 -0.925373137,-0.4143036655 -0.925373137,-0.925373137 0,-0.5110694715 0.4143036655,-0.925373137 0.925373137,-0.925373137 C 207.1006233045,517.496501863 207.51492697,517.9108055285 207.51492697,518.421875 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" @@ -21886,7 +21981,7 @@ http://www.inkscape.org/</dc:description> transform="translate(0.6024061,-0.83343494)"> <path transform="matrix(1.1987895,-0.31461843,0.30931067,1.2194987,-108.76002,51.062605)" - d="m 339.00425,147.22294 c -0.55856,0.34108 -3.66676,-2.48281 -4.29893,-2.6522 -0.6527,-0.17489 -4.86217,0.67984 -5.21433,0.10313 -0.34109,-0.55856 2.48281,-3.66677 2.6522,-4.29893 0.17489,-0.65271 -0.67984,-4.86217 -0.10313,-5.21434 0.55856,-0.34108 3.66677,2.48281 4.29893,2.6522 0.65271,0.1749 4.86217,-0.67983 5.21434,-0.10312 0.34108,0.55856 -2.48282,3.66676 -2.6522,4.29893 C 338.72623,142.66131 339.58096,146.87078 339.00425,147.22294 Z" + d="m 339.0042526163,147.2229418097 c -0.5585599099,0.3410814654 -3.6667663513,-2.4828111329 -4.2989318054,-2.6521999685 -0.6527050157,-0.1748924144 -4.8621709226,0.6798354428 -5.2143343979,0.1031274743 -0.3410814654,-0.5585599099 2.4828111329,-3.6667663513 2.6521999684,-4.2989318053 0.1748924144,-0.6527050158 -0.6798354427,-4.8621709227 -0.1031274742,-5.214334398 0.5585599098,-0.3410814654 3.6667663512,2.4828111329 4.2989318053,2.6521999684 0.6527050158,0.1748924144 4.8621709227,-0.6798354427 5.2143343979,-0.1031274742 0.3410814655,0.5585599098 -2.4828111328,3.6667663512 -2.6521999684,4.2989318053 C 338.7262327276,142.6613124275 339.5809605847,146.8707783344 339.0042526163,147.2229418097 Z" inkscape:randomized="0" inkscape:rounded="0.12956553" inkscape:flatsided="false" @@ -21902,7 +21997,7 @@ http://www.inkscape.org/</dc:description> sodipodi:type="star" /> <path transform="matrix(1.1987895,-0.31461843,0.30931067,1.2194987,-106.22945,53.360636)" - d="m 339.00425,147.22294 c -0.55856,0.34108 -3.66676,-2.48281 -4.29893,-2.6522 -0.6527,-0.17489 -4.86217,0.67984 -5.21433,0.10313 -0.34109,-0.55856 2.48281,-3.66677 2.6522,-4.29893 0.17489,-0.65271 -0.67984,-4.86217 -0.10313,-5.21434 0.55856,-0.34108 3.66677,2.48281 4.29893,2.6522 0.65271,0.1749 4.86217,-0.67983 5.21434,-0.10312 0.34108,0.55856 -2.48282,3.66676 -2.6522,4.29893 C 338.72623,142.66131 339.58096,146.87078 339.00425,147.22294 Z" + d="m 339.0042526163,147.2229418097 c -0.5585599099,0.3410814654 -3.6667663513,-2.4828111329 -4.2989318054,-2.6521999685 -0.6527050157,-0.1748924144 -4.8621709226,0.6798354428 -5.2143343979,0.1031274743 -0.3410814654,-0.5585599099 2.4828111329,-3.6667663513 2.6521999684,-4.2989318053 0.1748924144,-0.6527050158 -0.6798354427,-4.8621709227 -0.1031274742,-5.214334398 0.5585599098,-0.3410814654 3.6667663512,2.4828111329 4.2989318053,2.6521999684 0.6527050158,0.1748924144 4.8621709227,-0.6798354427 5.2143343979,-0.1031274742 0.3410814655,0.5585599098 -2.4828111328,3.6667663512 -2.6521999684,4.2989318053 C 338.7262327276,142.6613124275 339.5809605847,146.8707783344 339.0042526163,147.2229418097 Z" inkscape:randomized="0" inkscape:rounded="0.12956553" inkscape:flatsided="false" @@ -21977,41 +22072,168 @@ http://www.inkscape.org/</dc:description> id="rect15227" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> <path - sodipodi:nodetypes="ccscsc" - inkscape:connector-curvature="0" - id="path15229" - d="m 323.2426,109.627 c 4.013,-1.1346 7.9876,-1.2788 11.9072,0 -0.9623,3.0613 -0.1342,5.9645 -0.5253,8.9123 -0.3223,2.4291 -2.7191,3.8905 -5.3932,5.1263 -2.235,-1.2411 -4.943,-2.2279 -5.4283,-5.1263 C 323.3103,115.5973 324.1074,111.8965 323.2426,109.627 Z" - style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient5545-0);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000007;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> + sodipodi:type="arc" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="path10909" + sodipodi:cx="337.3443" + sodipodi:cy="163.0209" + sodipodi:rx="3.963478" + sodipodi:ry="4.113043" + d="m 341.3077774048,163.020904541 c 0,2.2715708312 -1.7745095839,4.1130428314 -3.9634780884,4.1130428314 -2.1889685045,0 -3.9634780884,-1.8414720002 -3.9634780884,-4.1130428314 0,-2.2715708312 1.7745095839,-4.1130428314 3.9634780884,-4.1130428314 C 339.5332678209,158.9078617096 341.3077774048,160.7493337098 341.3077774048,163.020904541 Z" + transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)" /> <path inkscape:connector-curvature="0" id="path4685-2" - d="m 319.6498,115.694 7,0 0,-2 3,2.5 -3,2.5 0,-2 -7,0 L 319.6498,115.694 Z" + d="m 319.522,118.6983 0,-2.1228 7.6278,0 0,-5.3815 -2,0 2.8739,-3 2.8739,3 -2,0 L 328.8976,118.6983 Z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" - sodipodi:nodetypes="cccccccc" /> + sodipodi:nodetypes="cccccccccc" /> </g> <g - transform="translate(10.12068,66.83988)" + id="no-marker" + inkscape:label="#markers" + transform="translate(10.75523,88.20311)"> + <rect + y="107.8581" + x="319.3575" + height="16" + width="16" + id="rect3997" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> + <g + id="g7224" + transform="translate(-0.0655561,0.8269009)"> + <path + inkscape:connector-curvature="0" + id="path4011" + d="m 334.5089,115.0312 -14.1716,0" + style="fill:none;stroke:#000000;stroke-width:1.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> + <g + transform="matrix(0,1,1,0,221.5126,-146.552)" inkscape:label="#symbols" id="symbol-remove"> <rect style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" - id="rect15301" + id="rect10952" width="16" height="16" - x="319.292" + x="319.6498" y="108.194" /> <path - style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient5545-0-7);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000007;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" - d="m 319.792,109.627 c 4.013,-1.1346 7.9876,-1.2788 11.9072,0 -0.9623,3.0613 -0.1342,5.9645 -0.5253,8.9123 -0.3223,2.4291 -2.7191,3.8905 -5.3932,5.1263 -2.235,-1.2411 -4.943,-2.2279 -5.4283,-5.1263 C 319.8597,115.5973 320.6568,111.8965 319.792,109.627 Z" - id="path15303" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccscsc" /> + transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)" + d="m 341.3077774048,163.020904541 c 0,2.2715708312 -1.7745095839,4.1130428314 -3.9634780884,4.1130428314 -2.1889685045,0 -3.9634780884,-1.8414720002 -3.9634780884,-4.1130428314 0,-2.2715708312 1.7745095839,-4.1130428314 3.9634780884,-4.1130428314 C 339.5332678209,158.9078617096 341.3077774048,160.7493337098 341.3077774048,163.020904541 Z" + sodipodi:ry="4.113043" + sodipodi:rx="3.963478" + sodipodi:cy="163.0209" + sodipodi:cx="337.3443" + id="path10954" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:0.9166216;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.9166216,1.8332432;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + sodipodi:type="arc" /> <path - inkscape:connector-curvature="0" - id="path4685-2-1" - d="m 325.292,115.3113 7,0 0,-2 3,2.5 -3,2.5 0,-2 -7,0 L 325.292,115.3113 Z" + sodipodi:nodetypes="cccccccccc" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" - sodipodi:nodetypes="cccccccc" /> + d="m 319.522,118.6983 0,-2.1228 7.6278,0 0,-5.3815 -2,0 2.8739,-3 2.8739,3 -2,0 L 328.8976,118.6983 Z" + id="path10956" + inkscape:connector-curvature="0" /> + </g> + <g + transform="translate(30.12068,44.83988)" + inkscape:label="#symbols" + id="symbol-smaller"> + <rect + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="rect10979" + width="16" + height="16" + x="319.6498" + y="108.194" /> + <path + sodipodi:type="arc" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c80000;stroke-width:0.6086934;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.6086934,0.6086934;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="path10989" + sodipodi:cx="337.3443" + sodipodi:cy="163.0209" + sodipodi:rx="3.963478" + sodipodi:ry="4.113043" + d="m 341.3077774048,163.020904541 c 0,2.2715708312 -1.7745095839,4.1130428314 -3.9634780884,4.1130428314 -2.1889685045,0 -3.9634780884,-1.8414720002 -3.9634780884,-4.1130428314 0,-2.2715708312 1.7745095839,-4.1130428314 3.9634780884,-4.1130428314 C 339.5332678209,158.9078617096 341.3077774048,160.7493337098 341.3077774048,163.020904541 Z" + transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)" /> + <path + transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" + d="m 341.3077774048,163.020904541 c 0,2.2715708312 -1.7745095839,4.1130428314 -3.9634780884,4.1130428314 -2.1889685045,0 -3.9634780884,-1.8414720002 -3.9634780884,-4.1130428314 0,-2.2715708312 1.7745095839,-4.1130428314 3.9634780884,-4.1130428314 C 339.5332678209,158.9078617096 341.3077774048,160.7493337098 341.3077774048,163.020904541 Z" + sodipodi:ry="4.113043" + sodipodi:rx="3.963478" + sodipodi:cy="163.0209" + sodipodi:cx="337.3443" + id="path10981" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + sodipodi:type="arc" /> + </g> + <g + id="symbol-bigger" + inkscape:label="#symbols" + transform="translate(30.12068,64.83988)"> + <rect + y="108.194" + x="319.6498" + height="16" + width="16" + id="rect11047" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> + <path + transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)" + d="m 341.3077774048,163.020904541 c 0,2.2715708312 -1.7745095839,4.1130428314 -3.9634780884,4.1130428314 -2.1889685045,0 -3.9634780884,-1.8414720002 -3.9634780884,-4.1130428314 0,-2.2715708312 1.7745095839,-4.1130428314 3.9634780884,-4.1130428314 C 339.5332678209,158.9078617096 341.3077774048,160.7493337098 341.3077774048,163.020904541 Z" + sodipodi:ry="4.113043" + sodipodi:rx="3.963478" + sodipodi:cy="163.0209" + sodipodi:cx="337.3443" + id="path11049" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;stroke:#000000;stroke-width:0.6086935;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;fill-opacity:0.7019608;fill-rule:evenodd" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c80000;stroke-width:0.9166215;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.9166215,0.9166215;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="path11051" + sodipodi:cx="337.3443" + sodipodi:cy="163.0209" + sodipodi:rx="3.963478" + sodipodi:ry="4.113043" + d="m 341.3077774048,163.020904541 c 0,2.2715708312 -1.7745095839,4.1130428314 -3.9634780884,4.1130428314 -2.1889685045,0 -3.9634780884,-1.8414720002 -3.9634780884,-4.1130428314 0,-2.2715708312 1.7745095839,-4.1130428314 3.9634780884,-4.1130428314 C 339.5332678209,158.9078617096 341.3077774048,160.7493337098 341.3077774048,163.020904541 Z" + transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" /> + </g> + <g + transform="translate(30.12068,84.83988)" + inkscape:label="#symbols" + id="symbol-fit"> + <rect + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient15175-8);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.0000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.0000001, 2.0000002;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="rect11107" + width="16" + height="16" + x="319.6498" + y="108.194" /> + <path + transform="matrix(2.894146,0,0,2.833322,-656.743,-353.6308)" + d="m 341.3077774048,163.020904541 c 0,2.2715703063 -1.7745087945,4.1130420891 -3.9634767931,4.1130428314 L 337.3442993164,163.020904541 Z" + sodipodi:ry="4.113043" + sodipodi:rx="3.963478" + sodipodi:cy="163.0209" + sodipodi:cx="337.3443" + id="path11111" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.3492142;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + sodipodi:type="arc" + sodipodi:start="0" + sodipodi:end="1.570796" /> + <path + sodipodi:type="arc" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#c80000;stroke-width:0.9166215;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.9166215, 0.9166215;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="path11051-8" + sodipodi:cx="337.3443" + sodipodi:cy="163.0209" + sodipodi:rx="3.963478" + sodipodi:ry="4.113043" + d="m 341.3077774048,163.020904541 c 0,2.2715708312 -1.7745095839,4.1130428314 -3.9634780884,4.1130428314 -2.1889685045,0 -3.9634780884,-1.8414720002 -3.9634780884,-4.1130428314 0,-2.2715708312 1.7745095839,-4.1130428314 3.9634780884,-4.1130428314 C 339.5332678209,158.9078617096 341.3077774048,160.7493337098 341.3077774048,163.020904541 Z" + transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" /> </g> <g id="path-mode-bspline" @@ -22019,7 +22241,7 @@ http://www.inkscape.org/</dc:description> inkscape:label="#bspline_mode"> <path inkscape:connector-curvature="0" - style="color:#000000;fill:none;stroke:#0000ff;stroke-width:0.99609488;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + style="color:#000000;fill:none;stroke:#0000ff;stroke-width:0.9960948825;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 961.86036,56.036072 c 0,0 1.37815,-1.49823 3.26044,-1.760578 1.88229,-0.262349 3.58408,1.78013 3.58408,1.78013" id="path-mode-spiro-3-8-8" sodipodi:nodetypes="czc" @@ -22029,30 +22251,30 @@ http://www.inkscape.org/</dc:description> sodipodi:nodetypes="ccc" id="path6177-8-2" d="m 960.71597,54.820437 4.50382,-4.574067 4.57382,4.479835" - style="fill:none;stroke:#646464;stroke-width:0.75014669;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> + style="fill:none;stroke:#646464;stroke-width:0.750146687;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" /> <rect - y="-639.99707" - x="724.2002" - height="1.0229635" - width="1.0225416" + y="-639.9970703125" + x="724.2001953125" + height="1.022963523865" + width="1.022541642189" id="rect8372-9-8" - style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.25576118;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + style="color:#000000;fill:#6464ff;fill-opacity:0.3921569226;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557611763;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(0.71440887,0.69972849,-0.69972849,0.71440887,0,0)" /> <rect transform="matrix(0.71440887,0.69972849,-0.69972849,0.71440887,0,0)" - style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.25576118;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + style="color:#000000;fill:#6464ff;fill-opacity:0.3921569226;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557611763;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6941" - width="1.0225416" - height="1.0229635" - x="724.2002" - y="-633.33978" /> - <rect - y="-639.99707" - x="730.85748" - height="1.0229635" - width="1.0225416" + width="1.022541642189" + height="1.022963523865" + x="724.2001953125" + y="-633.3397827148" /> + <rect + y="-639.9970703125" + x="730.8574829102" + height="1.022963523865" + width="1.022541642189" id="rect6954" - style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.25576118;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + style="color:#000000;fill:#6464ff;fill-opacity:0.3921569226;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557611763;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(0.71440887,0.69972849,-0.69972849,0.71440887,0,0)" /> </g> </svg> |
