summaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rw-r--r--share/CMakeLists.txt17
-rw-r--r--share/attributes/CMakeLists.txt2
-rw-r--r--share/branding/CMakeLists.txt2
-rw-r--r--share/examples/CMakeLists.txt2
-rw-r--r--share/extensions/CMakeLists.txt49
-rw-r--r--share/extensions/Makefile.am3
-rw-r--r--share/extensions/hpgl_encoder.py77
-rw-r--r--share/extensions/hpgl_output.inx14
-rwxr-xr-xshare/extensions/hpgl_output.py4
-rw-r--r--share/extensions/image_attributes.inx82
-rwxr-xr-xshare/extensions/image_attributes.py169
-rwxr-xr-xshare/extensions/ink2canvas.py2
-rwxr-xr-xshare/extensions/inkex.py31
-rw-r--r--share/extensions/layout_nup.inx1
-rwxr-xr-xshare/extensions/layout_nup.py216
-rwxr-xr-xshare/extensions/layout_nup_pageframe.py230
-rwxr-xr-xshare/extensions/measure.py2
-rw-r--r--share/extensions/plotter.inx44
-rw-r--r--share/extensions/plotter.py106
-rw-r--r--share/extensions/scour.inx8
-rw-r--r--share/extensions/scour/Makefile.am13
-rw-r--r--[-rwxr-xr-x]share/extensions/scour/scour.inkscape.py (renamed from share/extensions/scour.inkscape.py)0
-rw-r--r--share/extensions/scour/scour.py (renamed from share/extensions/scour.py)0
-rw-r--r--[-rwxr-xr-x]share/extensions/scour/svg_regex.py (renamed from share/extensions/svg_regex.py)0
-rw-r--r--[-rwxr-xr-x]share/extensions/scour/svg_transform.py (renamed from share/extensions/svg_transform.py)0
-rw-r--r--[-rwxr-xr-x]share/extensions/scour/yocto_css.py (renamed from share/extensions/yocto_css.py)0
-rwxr-xr-xshare/extensions/svg2xaml.xsl27
-rwxr-xr-xshare/extensions/synfig_prepare.py2
-rwxr-xr-xshare/extensions/webslicer_export.py8
-rw-r--r--share/filters/CMakeLists.txt10
-rw-r--r--share/fonts/CMakeLists.txt1
-rw-r--r--share/gradients/CMakeLists.txt1
-rw-r--r--share/icons/CMakeLists.txt6
-rw-r--r--share/icons/application/CMakeLists.txt9
-rw-r--r--share/icons/icons.svg27081
-rw-r--r--share/icons/symbolic_icons.svg6178
-rw-r--r--share/keys/CMakeLists.txt2
-rw-r--r--share/markers/CMakeLists.txt2
-rw-r--r--share/palettes/CMakeLists.txt13
-rw-r--r--share/patterns/CMakeLists.txt10
-rw-r--r--share/screens/CMakeLists.txt2
-rw-r--r--share/symbols/CMakeLists.txt11
-rw-r--r--share/templates/CMakeLists.txt11
-rw-r--r--share/tutorials/CMakeLists.txt2
-rw-r--r--share/ui/CMakeLists.txt3
45 files changed, 27044 insertions, 7409 deletions
diff --git a/share/CMakeLists.txt b/share/CMakeLists.txt
new file mode 100644
index 000000000..b34875502
--- /dev/null
+++ b/share/CMakeLists.txt
@@ -0,0 +1,17 @@
+add_subdirectory(attributes)
+add_subdirectory(branding)
+add_subdirectory(examples)
+add_subdirectory(extensions)
+add_subdirectory(filters)
+add_subdirectory(fonts)
+add_subdirectory(gradients)
+add_subdirectory(icons)
+add_subdirectory(keys)
+add_subdirectory(markers)
+add_subdirectory(palettes)
+add_subdirectory(patterns)
+add_subdirectory(screens)
+add_subdirectory(symbols)
+add_subdirectory(templates)
+add_subdirectory(tutorials)
+add_subdirectory(ui) \ No newline at end of file
diff --git a/share/attributes/CMakeLists.txt b/share/attributes/CMakeLists.txt
new file mode 100644
index 000000000..9b6b0de0a
--- /dev/null
+++ b/share/attributes/CMakeLists.txt
@@ -0,0 +1,2 @@
+set(_FILES "svgprops" "cssprops" "css_defaults" "README")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/attributes)
diff --git a/share/branding/CMakeLists.txt b/share/branding/CMakeLists.txt
new file mode 100644
index 000000000..ff12059ca
--- /dev/null
+++ b/share/branding/CMakeLists.txt
@@ -0,0 +1,2 @@
+file(GLOB _FILES "README" "*.svg")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/branding)
diff --git a/share/examples/CMakeLists.txt b/share/examples/CMakeLists.txt
new file mode 100644
index 000000000..be73c5a87
--- /dev/null
+++ b/share/examples/CMakeLists.txt
@@ -0,0 +1,2 @@
+file(GLOB _FILES "README" "*.svg" "*.svgz" "*.pov")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/examples)
diff --git a/share/extensions/CMakeLists.txt b/share/extensions/CMakeLists.txt
new file mode 100644
index 000000000..280abd0a7
--- /dev/null
+++ b/share/extensions/CMakeLists.txt
@@ -0,0 +1,49 @@
+file(GLOB _FILES
+ "README"
+ "fontfix.conf"
+ "inkweb.js"
+ "jessyInk.js"
+ "jessyInk_core_mouseHandler_noclick.js"
+ "jessyInk_core_mouseHandler_zoomControl.js"
+ "aisvg.xslt"
+ "colors.xml"
+ "jessyInk_video.svg"
+ "seamless_pattern.svg"
+ "svg2fxg.xsl"
+ "svg2xaml.xsl"
+ "xaml2svg.xsl"
+ "inkscape.extension.rng"
+ "*.py"
+ "*.pl"
+ "*.sh"
+ "*.rb"
+ "*.inx"
+ )
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/extensions)
+
+file(GLOB _FILES "alphabet_soup/*.svg")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/extensions/alphabet_soup)
+
+file(GLOB _FILES "Barcode/*.py")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/extensions/Barcode)
+
+file(GLOB _FILES "Poly3DObjects/*.obj")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/extensions/Poly3DObjects)
+
+# file(GLOB _FILES
+# "test/*.svg"
+# "test/*.sh"
+# "test/*.py"
+# "test/*.js"
+# "test/run-all-extension-tests"
+# )
+# install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/extensions/test)
+
+file(GLOB _FILES "ink2canvas/*.py")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/extensions/ink2canvas)
+
+file(GLOB _FILES "scour/*.py")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/extensions/scour)
+
+file(GLOB _FILES "xaml2svg/*.xsl")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/extensions/xaml2svg)
diff --git a/share/extensions/Makefile.am b/share/extensions/Makefile.am
index 130ed6e40..765f18a02 100644
--- a/share/extensions/Makefile.am
+++ b/share/extensions/Makefile.am
@@ -2,9 +2,10 @@
SUBDIRS = \
alphabet_soup \
Barcode \
+ ink2canvas \
Poly3DObjects \
+ scour \
test \
- ink2canvas \
xaml2svg
extensiondir = $(datadir)/inkscape/extensions
diff --git a/share/extensions/hpgl_encoder.py b/share/extensions/hpgl_encoder.py
index a16561e97..83b1b7297 100644
--- a/share/extensions/hpgl_encoder.py
+++ b/share/extensions/hpgl_encoder.py
@@ -23,7 +23,6 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import math
import re
import string
-#from StringIO import StringIO
# local libraries
import bezmisc
import cspsubdiv
@@ -66,6 +65,7 @@ class hpglEncoder:
self.sizeY = 'False'
self.dryRun = True
self.lastPoint = [0, 0, 0]
+ self.lastPen = -1
self.offsetX = 0
self.offsetY = 0
self.scaleX = self.options.resolutionX / effect.unittouu("1.0in") # dots per inch to dots per user unit
@@ -109,7 +109,7 @@ class hpglEncoder:
# dryRun to find edges
groupmat = [[self.mirrorX * self.scaleX * self.viewBoxTransformX, 0.0, 0.0], [0.0, self.mirrorY * self.scaleY * self.viewBoxTransformY, 0.0]]
groupmat = simpletransform.composeTransform(groupmat, simpletransform.parseTransform('rotate(' + self.options.orientation + ')'))
- self.vData = [['', -1.0, -1.0], ['', -1.0, -1.0], ['', -1.0, -1.0], ['', -1.0, -1.0]]
+ self.vData = [['', 'False', 0, 0], ['', 'False', 0, 0], ['', 'False', 0, 0], ['', 'False', 0, 0]]
self.processGroups(self.doc, groupmat)
if self.divergenceX == 'False' or self.divergenceY == 'False' or self.sizeX == 'False' or self.sizeY == 'False':
raise Exception('NO_PATHS')
@@ -156,11 +156,11 @@ class hpglEncoder:
groupmat = [[self.mirrorX * self.scaleX * self.viewBoxTransformX, 0.0, -self.divergenceX + self.offsetX],
[0.0, self.mirrorY * self.scaleY * self.viewBoxTransformY, -self.divergenceY + self.offsetY]]
groupmat = simpletransform.composeTransform(groupmat, simpletransform.parseTransform('rotate(' + self.options.orientation + ')'))
- self.vData = [['', -1.0, -1.0], ['', -1.0, -1.0], ['', -1.0, -1.0], ['', -1.0, -1.0]]
+ self.vData = [['', 'False', 0, 0], ['', 'False', 0, 0], ['', 'False', 0, 0], ['', 'False', 0, 0]]
# add move to zero point and precut
if self.toolOffset > 0.0 and self.options.precut:
if self.options.center:
- # position precut outside of drawing plus one times the tooloffset
+ # position precut outside of drawing plus one time the tooloffset
if self.offsetX >= 0.0:
precutX = self.offsetX + self.toolOffset
else:
@@ -169,17 +169,16 @@ class hpglEncoder:
precutY = self.offsetY + self.toolOffset
else:
precutY = self.offsetY - self.toolOffset
- self.processOffset('PU', precutX, precutY)
- self.processOffset('PD', precutX, precutY + self.toolOffset * 8)
+ self.processOffset('PU', precutX, precutY, self.options.pen)
+ self.processOffset('PD', precutX, precutY + self.toolOffset * 8, self.options.pen)
else:
- self.processOffset('PU', 0, 0)
- self.processOffset('PD', 0, self.toolOffset * 8)
- else:
- self.processOffset('PU', 0, 0)
+ self.processOffset('PU', 0, 0, self.options.pen)
+ self.processOffset('PD', 0, self.toolOffset * 8, self.options.pen)
# start conversion
self.processGroups(self.doc, groupmat)
# shift an empty node in in order to process last node in cache
- self.processOffset('PU', 0, 0)
+ if self.toolOffset > 0.0 and not self.dryRun:
+ self.processOffset('PU', 0, 0, 0)
if self.options.debug:
return self.hpgl, self
else:
@@ -190,7 +189,7 @@ class hpglEncoder:
paths = []
for node in doc:
if (node.tag == inkex.addNS('g', 'svg') and self.isGroupVisible(node)) or node.tag == inkex.addNS('path', 'svg'):
- paths.append([node.tag, node, self.mergeTransform(node, groupmat)])
+ paths.append([node.tag, node, self.mergeTransform(node, groupmat), self.getPenNumber(node)])
doc = ''
hasGroups = True
while hasGroups:
@@ -200,11 +199,19 @@ class hpglEncoder:
hasGroups = True
for path in paths[i][1]:
if (path.tag == inkex.addNS('g', 'svg') and self.isGroupVisible(path)) or path.tag == inkex.addNS('path', 'svg'):
- paths.append([path.tag, path, self.mergeTransform(path, paths[i][2])])
+ paths.insert(i + 1, [path.tag, path, self.mergeTransform(path, paths[i][2]), paths[i][3]])
paths[i][0] = ''
for node in paths:
if node[0] == inkex.addNS('path', 'svg'):
- self.processPath(node[1], node[2])
+ self.processPath(node[1], node[2], node[3])
+
+ def getPenNumber(self, doc):
+ penNum = str(doc.get('{' + inkex.NSS['inkscape'] + '}label')).lower().strip(' \t\n\r')
+ if re.search(r'( |\A)pen *\d+( |\Z)', penNum):
+ penNum = re.sub(r'(.* |\A)pen *(\d+)( .*|\Z)', r'\2', penNum, 1)
+ return int(penNum)
+ else:
+ return self.options.pen
def mergeTransform(self, doc, matrix):
# get and merge two matrixes into one
@@ -222,7 +229,7 @@ class hpglEncoder:
return False
return True
- def processPath(self, node, mat):
+ def processPath(self, node, mat, pen):
# process path
path = node.get('d')
if path:
@@ -239,7 +246,7 @@ class hpglEncoder:
posX, posY = singlePathPoint[1]
# check if point is repeating, if so, ignore
if int(round(posX)) != int(round(oldPosX)) or int(round(posY)) != int(round(oldPosY)):
- self.processOffset(cmd, posX, posY)
+ self.processOffset(cmd, posX, posY, pen)
cmd = 'PD'
oldPosX = posX
oldPosY = posY
@@ -255,10 +262,10 @@ class hpglEncoder:
overcutLength += self.getLength(oldPosX, oldPosY, posX, posY)
if overcutLength >= self.overcut:
newLength = self.changeLength(oldPosX, oldPosY, posX, posY, - (overcutLength - self.overcut))
- self.processOffset(cmd, newLength[0], newLength[1])
+ self.processOffset(cmd, newLength[0], newLength[1], pen)
break
else:
- self.processOffset(cmd, posX, posY)
+ self.processOffset(cmd, posX, posY, pen)
oldPosX = posX
oldPosY = posY
@@ -277,34 +284,34 @@ class hpglEncoder:
y = y2 + (y2 - y1) / self.getLength(x1, y1, x2, y2, False) * offset
return [x, y]
- def processOffset(self, cmd, posX, posY):
+ def processOffset(self, cmd, posX, posY, pen):
# calculate offset correction (or dont)
if self.toolOffset == 0.0 or self.dryRun:
- self.storePoint(cmd, posX, posY)
+ self.storePoint(cmd, posX, posY, pen)
else:
# insert data into cache
self.vData.pop(0)
- self.vData.insert(3, [cmd, posX, posY])
+ self.vData.insert(3, [cmd, posX, posY, pen])
# decide if enough data is availabe
- if self.vData[2][1] != -1.0:
- if self.vData[1][1] == -1.0:
- self.storePoint(self.vData[2][0], self.vData[2][1], self.vData[2][2])
+ if self.vData[2][1] != 'False':
+ if self.vData[1][1] == 'False':
+ self.storePoint(self.vData[2][0], self.vData[2][1], self.vData[2][2], self.vData[2][3])
else:
# perform tool offset correction (It's a *tad* complicated, if you want to understand it draw the data as lines on paper)
if self.vData[2][0] == 'PD': # If the 3rd entry in the cache is a pen down command make the line longer by the tool offset
pointThree = self.changeLength(self.vData[1][1], self.vData[1][2], self.vData[2][1], self.vData[2][2], self.toolOffset)
- self.storePoint('PD', pointThree[0], pointThree[1])
- elif self.vData[0][1] != -1.0:
+ self.storePoint('PD', pointThree[0], pointThree[1], self.vData[2][3])
+ elif self.vData[0][1] != 'False':
# Elif the 1st entry in the cache is filled with data and the 3rd entry is a pen up command shift
# the 3rd entry by the current tool offset position according to the 2nd command
pointThree = self.changeLength(self.vData[0][1], self.vData[0][2], self.vData[1][1], self.vData[1][2], self.toolOffset)
pointThree[0] = self.vData[2][1] - (self.vData[1][1] - pointThree[0])
pointThree[1] = self.vData[2][2] - (self.vData[1][2] - pointThree[1])
- self.storePoint('PU', pointThree[0], pointThree[1])
+ self.storePoint('PU', pointThree[0], pointThree[1], self.vData[2][3])
else:
# Else just write the 3rd entry
pointThree = [self.vData[2][1], self.vData[2][2]]
- self.storePoint('PU', pointThree[0], pointThree[1])
+ self.storePoint('PU', pointThree[0], pointThree[1], self.vData[2][3])
if self.vData[3][0] == 'PD':
# If the 4th entry in the cache is a pen down command guide tool to next line with a circle between the prolonged 3rd and 4th entry
if self.getLength(self.vData[2][1], self.vData[2][2], self.vData[3][1], self.vData[3][2]) >= self.toolOffset:
@@ -324,16 +331,16 @@ class hpglEncoder:
if angleVector >= 0:
angle = angleStart + self.toolOffsetFlat
while angle < angleStart + angleVector:
- self.storePoint('PD', self.vData[2][1] + math.cos(angle) * self.toolOffset, self.vData[2][2] + math.sin(angle) * self.toolOffset)
+ self.storePoint('PD', self.vData[2][1] + math.cos(angle) * self.toolOffset, self.vData[2][2] + math.sin(angle) * self.toolOffset, self.vData[2][3])
angle += self.toolOffsetFlat
else:
angle = angleStart - self.toolOffsetFlat
while angle > angleStart + angleVector:
- self.storePoint('PD', self.vData[2][1] + math.cos(angle) * self.toolOffset, self.vData[2][2] + math.sin(angle) * self.toolOffset)
+ self.storePoint('PD', self.vData[2][1] + math.cos(angle) * self.toolOffset, self.vData[2][2] + math.sin(angle) * self.toolOffset, self.vData[2][3])
angle -= self.toolOffsetFlat
- self.storePoint('PD', pointFour[0], pointFour[1])
+ self.storePoint('PD', pointFour[0], pointFour[1], self.vData[3][3])
- def storePoint(self, command, x, y):
+ def storePoint(self, command, x, y, pen):
x = int(round(x))
y = int(round(y))
# skip when no change in movement
@@ -357,11 +364,15 @@ class hpglEncoder:
x = 0
if y < 0:
y = 0
+ # select correct pen
+ if self.lastPen != pen:
+ self.hpgl += ';SP%d' % pen
# do not repeat command
- if command == 'PD' and self.lastPoint[0] == 'PD':
+ if command == 'PD' and self.lastPoint[0] == 'PD' and self.lastPen == pen:
self.hpgl += ',%d,%d' % (x, y)
else:
self.hpgl += ';%s%d,%d' % (command, x, y)
+ self.lastPen = pen
self.lastPoint = [command, x, y]
# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99 \ No newline at end of file
diff --git a/share/extensions/hpgl_output.inx b/share/extensions/hpgl_output.inx
index bfb3e3567..7fa900dc8 100644
--- a/share/extensions/hpgl_output.inx
+++ b/share/extensions/hpgl_output.inx
@@ -22,14 +22,16 @@
</param>
<param name="mirrorX" type="boolean" _gui-text="Mirror X axis" _gui-description="Check this to mirror the X axis (Default: Unchecked)">false</param>
<param name="mirrorY" type="boolean" _gui-text="Mirror Y axis" _gui-description="Check this to mirror the Y axis (Default: Unchecked)">false</param>
- <param name="center" type="boolean" _gui-text="Center zero point" _gui-description="Check this if your plotter uses a centered zero point (Default: Unchecked)">false</param>
+ <param name="center" type="boolean" _gui-text="Center zero point" _gui-description="Check this if your plotter uses a centered zero point (Default: Unchecked)">false</param>
+ <param name="space" type="description">&#xa0;</param>
+ <_param name="multiplePensHelp" type="description">If you want to use multiple pens on your pen plotter create one layer for each pen, name the layers "Pen 1", "Pen 2", etc., and put your drawings in the corresponding layers. This overrules the pen number option above.</_param>
</page>
<page name="overcutToolOffset" _gui-text="Plot Features ">
- <param name="overcut" type="float" min="0.0" max="100.0" precision="2" _gui-text="Overcut (mm):" _gui-description="The distance in mm that will be cut over the starting point of the path to prevent open paths, set to 0.0 to omit command (Default: 1.00)">1.00</param>
- <param name="toolOffset" type="float" min="0.0" max="20.0" precision="2" _gui-text="Tool offset (mm):" _gui-description="The offset from the tool tip to the tool axis in mm, set to 0.0 to omit command (Default: 0.25)">0.25</param>
- <param name="precut" type="boolean" _gui-text="Use precut" _gui-description="Check this to cut a small line before the real drawing starts to correctly align the tool orientation. (Default: Checked)">true</param>
- <param name="flat" type="float" min="0.1" max="10.0" precision="1" _gui-text="Curve flatness:" _gui-description="Curves are divided into lines, this number controls how fine the curves will be reproduced, the smaller the finer (Default: '1.2')">1.2</param>
- <param name="autoAlign" type="boolean" _gui-text="Auto align" _gui-description="Check this to auto align the drawing to the zero point (Plus the tool offset if used). If unchecked you have to make sure that all parts of your drawing are within the document border! (Default: Checked)">true</param>
+ <param name="overcut" type="float" min="0.0" max="100.0" precision="2" _gui-text="Overcut (mm):" _gui-description="The distance in mm that will be cut over the starting point of the path to prevent open paths, set to 0.0 to omit command (Default: 1.00)">1.00</param>
+ <param name="toolOffset" type="float" min="0.0" max="20.0" precision="2" _gui-text="Tool offset (mm):" _gui-description="The offset from the tool tip to the tool axis in mm, set to 0.0 to omit command (Default: 0.25)">0.25</param>
+ <param name="precut" type="boolean" _gui-text="Use precut" _gui-description="Check this to cut a small line before the real drawing starts to correctly align the tool orientation. (Default: Checked)">true</param>
+ <param name="flat" type="float" min="0.1" max="10.0" precision="1" _gui-text="Curve flatness:" _gui-description="Curves are divided into lines, this number controls how fine the curves will be reproduced, the smaller the finer (Default: '1.2')">1.2</param>
+ <param name="autoAlign" type="boolean" _gui-text="Auto align" _gui-description="Check this to auto align the drawing to the zero point (Plus the tool offset if used). If unchecked you have to make sure that all parts of your drawing are within the document border! (Default: Checked)">true</param>
</page>
</param>
<_param name="settingsHelp" type="description">All these settings depend on the plotter you use, for more information please consult the manual or homepage for your plotter.</_param>
diff --git a/share/extensions/hpgl_output.py b/share/extensions/hpgl_output.py
index c6713cb65..fc4f248af 100755
--- a/share/extensions/hpgl_output.py
+++ b/share/extensions/hpgl_output.py
@@ -62,12 +62,12 @@ class HpglOutput(inkex.Effect):
type, value, traceback = sys.exc_info()
raise ValueError, ("", type, value), traceback
# convert raw HPGL to HPGL
- hpglInit = 'IN;SP%d' % self.options.pen
+ hpglInit = 'IN'
if self.options.force > 0:
hpglInit += ';FS%d' % self.options.force
if self.options.speed > 0:
hpglInit += ';VS%d' % self.options.speed
- self.hpgl = hpglInit + self.hpgl + ';PU0,0;SP0;IN;'
+ self.hpgl = hpglInit + self.hpgl + ';SP0;PU0,0;IN; '
def output(self):
# print to file
diff --git a/share/extensions/image_attributes.inx b/share/extensions/image_attributes.inx
new file mode 100644
index 000000000..a353d17e5
--- /dev/null
+++ b/share/extensions/image_attributes.inx
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
+
+ <_name>Set Image Attributes</_name>
+ <id>org.inkscape.effect.image_attributes</id>
+
+ <dependency type="executable" location="extensions">image_attributes.py</dependency>
+ <dependency type="executable" location="extensions">inkex.py</dependency>
+
+ <param name="tab_main" type="notebook">
+
+ <!-- render images like in 0.48 -->
+ <page name="tab_basic" _gui-text="Basic">
+ <_param name="basic_desc1" type="description">Render all bitmap images like in older Inskcape versions.
+
+Available options:</_param>
+ <param name="fix_scaling" type="boolean" _gui-text="Support non-unifom scaling">true</param>
+ <param name="fix_rendering" type="boolean" _gui-text="Render images blocky">false</param>
+ </page>
+
+ <!-- image aspect ratio -->
+ <page name="tab_aspectRatio" _gui-text="Image Aspect Ratio">
+ <param name="aspect_ratio" type="enum" _gui-text="preserveAspectRatio attribute:">
+ <item value="none">none</item>
+ <_item value="unset">Unset</_item>
+ <item value="xMinYMin">xMinYMin</item>
+ <item value="xMidYMin">xMidYMin</item>
+ <item value="xMaxYMin">xMaxYMin</item>
+ <item value="xMinYMid">xMinYMid</item>
+ <item value="xMidYMid">xMidYMid</item>
+ <item value="xMaxYMid">xMaxYMid</item>
+ <item value="xMinYMax">xMinYMax</item>
+ <item value="xMidYMax">xMidYMax</item>
+ <item value="xMaxYMax">xMaxYMax</item>
+ </param>
+ <param name="aspect_clip" type="enum" _gui-text="meetOrSlice:">
+ <item value="unset">-</item>
+ <item value="meet">meet</item>
+ <item value="slice">slice</item>
+ </param>
+ <param name="aspect_ratio_scope" type="enum" _gui-text="Scope:">
+ <_item value="selected_only">Change only selected image(s)</_item>
+ <_item value="in_selection">Change all images in selection</_item>
+ <_item value="in_document">Change all images in document</_item>
+ </param>
+ </page>
+
+ <!-- image-rendering -->
+ <page name="tab_image_rendering" _gui-text="Image Rendering Quality">
+ <param name="image_rendering" type="enum" _gui-text="Image rendering attribute:">
+ <_item value="unset">Unset</_item>
+ <item value="auto">auto</item>
+ <item value="optimizeQuality">optimizeQuality</item>
+ <item value="optimizeSpeed">optimizeSpeed</item>
+ <item value="inherit">inherit</item>
+ </param>
+ <param name="image_rendering_scope" type="enum" _gui-text="Scope:">
+ <_item value="selected_only">Change only selected image(s)</_item>
+ <_item value="in_selection">Change all images in selection</_item>
+ <_item value="in_document">Change all images in document</_item>
+ <_item value="on_parent_group">Apply attribute to parent group of selection</_item>
+ <_item value="on_root_only" >Apply attribute to SVG root</_item>
+ </param>
+ </page>
+
+ </param>
+
+ <effect needs-document="true" needs-live-preview="true">
+ <object-type>all</object-type>
+ <effects-menu>
+ <submenu _name="Images"/>
+ </effects-menu>
+ </effect>
+
+ <script>
+ <command reldir="extensions" interpreter="python">image_attributes.py</command>
+ </script>
+
+ <options silent="false"></options>
+
+</inkscape-extension>
+
diff --git a/share/extensions/image_attributes.py b/share/extensions/image_attributes.py
new file mode 100755
index 000000000..ddd5a8b87
--- /dev/null
+++ b/share/extensions/image_attributes.py
@@ -0,0 +1,169 @@
+#!/usr/bin/env python
+'''
+image_attributes.py - adjust image attributes which don't have global
+GUI options yet
+
+Tool for Inkscape 0.91 to adjust rendering of drawings with linked
+or embedded bitmap images created with older versions of Inkscape
+or third-party applications.
+
+Copyright (C) 2015, ~suv <suv-sf@users.sf.net>
+
+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
+'''
+
+# local library
+import inkex
+import simplestyle
+
+try:
+ inkex.localize()
+except:
+ import gettext
+ _ = gettext.gettext
+
+
+class SetAttrImage(inkex.Effect):
+ def __init__(self):
+ inkex.Effect.__init__(self)
+ # main options
+ self.OptionParser.add_option("--fix_scaling",
+ action="store", type="inkbool",
+ dest="fix_scaling", default=True,
+ help="")
+ self.OptionParser.add_option("--fix_rendering",
+ action="store", type="inkbool",
+ dest="fix_rendering", default=False,
+ help="")
+ self.OptionParser.add_option("--aspect_ratio",
+ action="store", type="string",
+ dest="aspect_ratio", default="none",
+ help="Value for attribute 'preserveAspectRatio'")
+ self.OptionParser.add_option("--aspect_clip",
+ action="store", type="string",
+ dest="aspect_clip", default="unset",
+ help="optional 'meetOrSlice' value")
+ self.OptionParser.add_option("--aspect_ratio_scope",
+ action="store", type="string",
+ dest="aspect_ratio_scope", default="selected_only",
+ help="scope within which to edit 'preserveAspectRatio' attribute")
+ self.OptionParser.add_option("--image_rendering",
+ action="store", type="string",
+ dest="image_rendering", default="unset",
+ help="Value for attribute 'image-rendering'")
+ self.OptionParser.add_option("--image_rendering_scope",
+ action="store", type="string",
+ dest="image_rendering_scope", default="selected_only",
+ help="scope within which to edit 'image-rendering' attribute")
+ # tabs
+ self.OptionParser.add_option("--tab_main",
+ action="store", type="string",
+ dest="tab_main")
+
+ # core method
+
+ def change_attribute(self, node, attribute):
+ for key, value in attribute.items():
+ if key == 'preserveAspectRatio':
+ # set presentation attribute
+ if value != "unset":
+ node.set(key, str(value))
+ else:
+ if node.get(key):
+ del node.attrib[key]
+ elif key == 'image-rendering':
+ node_style = simplestyle.parseStyle(node.get('style'))
+ if key not in node_style:
+ # set presentation attribute
+ if value != "unset":
+ node.set(key, str(value))
+ else:
+ if node.get(key):
+ del node.attrib[key]
+ else:
+ # set style property
+ if value != "unset":
+ node_style[key] = str(value)
+ else:
+ del node_style[key]
+ node.set('style', simplestyle.formatStyle(node_style))
+ else:
+ pass
+
+ def change_all_images(self, node, attribute):
+ path = 'descendant-or-self::svg:image'
+ for img in node.xpath(path, namespaces=inkex.NSS):
+ self.change_attribute(img, attribute)
+
+ # methods called via dispatcher
+
+ def change_selected_only(self, selected, attribute):
+ if selected:
+ for node_id, node in selected.iteritems():
+ if node.tag == inkex.addNS('image', 'svg'):
+ self.change_attribute(node, attribute)
+
+ def change_in_selection(self, selected, attribute):
+ if selected:
+ for node_id, node in selected.iteritems():
+ self.change_all_images(node, attribute)
+
+ def change_in_document(self, selected, attribute):
+ self.change_all_images(self.document.getroot(), attribute)
+
+ def change_on_parent_group(self, selected, attribute):
+ if selected:
+ for node_id, node in selected.iteritems():
+ self.change_attribute(node.getparent(), attribute)
+
+ def change_on_root_only(self, selected, attribute):
+ self.change_attribute(self.document.getroot(), attribute)
+
+ # main
+
+ def effect(self):
+ attr_val = []
+ attr_dict = {}
+ cmd_scope = None
+ if self.options.tab_main == '"tab_basic"':
+ cmd_scope = "in_document"
+ attr_dict['preserveAspectRatio'] = ("none" if self.options.fix_scaling else "unset")
+ attr_dict['image-rendering'] = ("optimizeSpeed" if self.options.fix_rendering else "unset")
+ elif self.options.tab_main == '"tab_aspectRatio"':
+ attr_val = [self.options.aspect_ratio]
+ if self.options.aspect_clip != "unset":
+ attr_val.append(self.options.aspect_clip)
+ attr_dict['preserveAspectRatio'] = ' '.join(attr_val)
+ cmd_scope = self.options.aspect_ratio_scope
+ elif self.options.tab_main == '"tab_image_rendering"':
+ attr_dict['image-rendering'] = self.options.image_rendering
+ cmd_scope = self.options.image_rendering_scope
+ else: # help tab
+ pass
+ # dispatcher
+ if cmd_scope is not None:
+ try:
+ change_cmd = getattr(self, 'change_{0}'.format(cmd_scope))
+ change_cmd(self.selected, attr_dict)
+ except AttributeError:
+ inkex.errormsg('Scope "{0}" not supported'.format(cmd_scope))
+
+
+if __name__ == '__main__':
+ e = SetAttrImage()
+ e.affect()
+
+
+# vim: expandtab shiftwidth=4 tabstop=8 softtabstop=4 fileencoding=utf-8 textwidth=99
diff --git a/share/extensions/ink2canvas.py b/share/extensions/ink2canvas.py
index d1e11a7c2..b5c0fbb7b 100755
--- a/share/extensions/ink2canvas.py
+++ b/share/extensions/ink2canvas.py
@@ -59,6 +59,8 @@ class Ink2Canvas(inkex.Effect):
def walk_tree(self, root):
for node in root:
+ if node.tag is inkex.etree.Comment:
+ continue
tag = self.get_tag_name(node)
class_name = tag.capitalize()
if not hasattr(svg, class_name):
diff --git a/share/extensions/inkex.py b/share/extensions/inkex.py
index 19e860b9a..6eb229885 100755
--- a/share/extensions/inkex.py
+++ b/share/extensions/inkex.py
@@ -207,7 +207,7 @@ class Effect:
x = self.unittouu( xattr[0] + 'px' )
y = self.unittouu( yattr[0] + 'px')
doc_height = self.unittouu(self.document.getroot().get('height'))
- if x and y:
+ if x and y and doc_height is not None:
self.view_center = (float(x), doc_height - float(y)) # FIXME: y-coordinate flip, eliminate it when it's gone in Inkscape
def getselected(self):
@@ -297,7 +297,7 @@ class Effect:
svgwidth = self.document.getroot().get('width')
viewboxstr = self.document.getroot().get('viewBox')
- if viewboxstr:
+ if viewboxstr and svgwidth is not None:
unitmatch = re.compile('(%s)$' % '|'.join(self.__uuconv.keys()))
param = re.compile(r'(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)')
@@ -340,19 +340,22 @@ class Effect:
unit = re.compile('(%s)$' % '|'.join(self.__uuconv.keys()))
param = re.compile(r'(([-+]?[0-9]+(\.[0-9]*)?|[-+]?\.[0-9]+)([eE][-+]?[0-9]+)?)')
- p = param.match(string)
- u = unit.search(string)
- if p:
- retval = float(p.string[p.start():p.end()])
+ if string is not None:
+ p = param.match(string)
+ u = unit.search(string)
+ if p:
+ retval = float(p.string[p.start():p.end()])
+ else:
+ retval = 0.0
+ if u:
+ try:
+ return retval * (self.__uuconv[u.string[u.start():u.end()]] / self.__uuconv[self.getDocumentUnit()])
+ except KeyError:
+ pass
+ else: # default assume 'px' unit
+ return retval / self.__uuconv[self.getDocumentUnit()]
else:
- retval = 0.0
- if u:
- try:
- return retval * (self.__uuconv[u.string[u.start():u.end()]] / self.__uuconv[self.getDocumentUnit()])
- except KeyError:
- pass
- else: # default assume 'px' unit
- return retval / self.__uuconv[self.getDocumentUnit()]
+ retval = None
return retval
diff --git a/share/extensions/layout_nup.inx b/share/extensions/layout_nup.inx
index 2b7734fc3..1d4d1ef0f 100644
--- a/share/extensions/layout_nup.inx
+++ b/share/extensions/layout_nup.inx
@@ -3,7 +3,6 @@
<_name>N-up layout</_name>
<id>org.greygreen.inkscape.effects.nup</id>
<dependency type="executable" location="extensions">layout_nup.py</dependency>
- <dependency type="executable" location="extensions">layout_nup_pageframe.py</dependency>
<dependency type="executable" location="extensions">inkex.py</dependency>
<param name="tab" type="notebook">
diff --git a/share/extensions/layout_nup.py b/share/extensions/layout_nup.py
index 5f8451c45..266a3950d 100755
--- a/share/extensions/layout_nup.py
+++ b/share/extensions/layout_nup.py
@@ -19,7 +19,19 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
import inkex
import sys
-import layout_nup_pageframe
+try:
+ import xml.etree.ElementTree as ElementTree
+except:
+ try:
+ from lxml import etree as ElementTree
+ except:
+ try:
+ from elementtree.ElementTree import ElementTree
+ except:
+ sys.stderr.write("""Requires ElementTree module, included
+in Python 2.5 or supplied by lxml or elementtree modules.
+
+""")
class Nup(inkex.Effect):
def __init__(self):
@@ -64,7 +76,7 @@ class Nup(inkex.Effect):
if getattr(self.options, i):
showList.append(i.lower().replace('show', ''))
o = self.options
- self.pf = layout_nup_pageframe.GenerateNup(
+ self.pf = self.GenerateNup(
unit=o.unit,
pgSize=(o.pgSizeX,o.pgSizeY),
pgMargin=(o.pgMarginTop,o.pgMarginRight,o.pgMarginBottom,o.pgMarginLeft),
@@ -84,7 +96,203 @@ class Nup(inkex.Effect):
def output(self):
sys.stdout.write(self.pf)
+ def expandTuple(self, unit, x, length = 4):
+ try:
+ iter(x)
+ except:
+ return None
+
+ if len(x) != length: x = x*2
+ if len(x) != length:
+ raise Exception("expandTuple: requires 2 or 4 item tuple")
+ try:
+ return tuple(map(lambda ev: (self.unittouu(str(eval(str(ev)))+unit)/self.unittouu('1px')), x))
+ except:
+ return None
+
+ def GenerateNup(self,
+ unit="px",
+ pgSize=("8.5*96","11*96"),
+ pgMargin=(0,0),
+ pgPadding=(0,0),
+ num=(2,2),
+ calculateSize=True,
+ size=None,
+ margin=(0,0),
+ padding=(20,20),
+ show=['default'],
+ container='svg',
+ returnTree = False,
+ ):
+ """Generate the SVG. Inputs are run through 'eval(str(x))' so you can use
+ '8.5*72' instead of 612. Margin / padding dimension tuples can be
+ (top & bottom, left & right) or (top, right, bottom, left).
+
+ Keyword arguments:
+ pgSize -- page size, width x height
+ pgMargin -- extra space around each page
+ pgPadding -- added to pgMargin
+ n -- rows x cols
+ size -- override calculated size, width x height
+ margin -- white space around each piece
+ padding -- inner padding for each piece
+ show -- list of keywords indicating what to show
+ - 'crosses' - cutting guides
+ - 'inner' - inner boundary
+ - 'outer' - outer boundary
+ container -- 'svg' or 'g'
+ returnTree -- whether to return the ElementTree or the string
+ """
+
+ if 'default' in show:
+ show = set(show).union(['inner', 'innerbox', 'holder', 'crosses'])
+
+ pgMargin = self.expandTuple(unit, pgMargin)
+ pgPadding = self.expandTuple(unit, pgPadding)
+ margin = self.expandTuple(unit, margin)
+ padding = self.expandTuple(unit, padding)
+
+ pgSize = self.expandTuple(unit, pgSize, length = 2)
+ # num = tuple(map(lambda ev: eval(str(ev)), num))
+
+ pgEdge = map(sum,zip(pgMargin, pgPadding))
+
+ top, right, bottom, left = 0,1,2,3
+ width, height = 0,1
+ rows, cols = 0,1
+ size = self.expandTuple(unit, size, length = 2)
+ if size == None or calculateSize == True or len(size) < 2 or size[0] == 0 or size[1] == 0:
+ size = ((pgSize[width]
+ - pgEdge[left] - pgEdge[right]
+ - num[cols]*(margin[left] + margin[right])) / num[cols],
+ (pgSize[height]
+ - pgEdge[top] - pgEdge[bottom]
+ - num[rows]*(margin[top] + margin[bottom])) / num[rows]
+ )
+ else:
+ size = self.expandTuple(unit, size, length = 2)
+
+ # sep is separation between same points on pieces
+ sep = (size[width]+margin[right]+margin[left],
+ size[height]+margin[top]+margin[bottom])
+
+ style = 'stroke:#000000;stroke-opacity:1;fill:none;fill-opacity:1;'
+
+ padbox = 'rect', {
+ 'x': str(pgEdge[left] + margin[left] + padding[left]),
+ 'y': str(pgEdge[top] + margin[top] + padding[top]),
+ 'width': str(size[width] - padding[left] - padding[right]),
+ 'height': str(size[height] - padding[top] - padding[bottom]),
+ 'style': style,
+ }
+ margbox = 'rect', {
+ 'x': str(pgEdge[left] + margin[left]),
+ 'y': str(pgEdge[top] + margin[top]),
+ 'width': str(size[width]),
+ 'height': str(size[height]),
+ 'style': style,
+ }
+
+ doc = ElementTree.ElementTree(ElementTree.Element(container,
+ {'xmlns:inkscape':"http://www.inkscape.org/namespaces/inkscape",
+ 'xmlns:xlink':"http://www.w3.org/1999/xlink",
+ 'width':str(pgSize[width]),
+ 'height':str(pgSize[height]),
+ }))
+
+ sub = ElementTree.SubElement
+
+ root = doc.getroot()
+
+ def makeClones(under, to):
+ for r in range(0,num[rows]):
+ for c in range(0,num[cols]):
+ if r == 0 and c == 0: continue
+ sub(under, 'use', {
+ 'xlink:href': '#' + to,
+ 'transform': 'translate(%f,%f)' %
+ (c*sep[width], r*sep[height])})
+
+ # guidelayer #####################################################
+ if set(['inner', 'outer']).intersection(show):
+ layer = sub(root, 'g', {'id':'guidelayer',
+ 'inkscape:groupmode':'layer'})
+ if 'inner' in show:
+ padbox[1]['id'] = 'innerguide'
+ padbox[1]['style'] = padbox[1]['style'].replace('stroke:#000000',
+ 'stroke:#8080ff')
+ sub(layer, *padbox)
+ del padbox[1]['id']
+ padbox[1]['style'] = padbox[1]['style'].replace('stroke:#8080ff',
+ 'stroke:#000000')
+ makeClones(layer, 'innerguide')
+ if 'outer' in show:
+ margbox[1]['id'] = 'outerguide'
+ margbox[1]['style'] = padbox[1]['style'].replace('stroke:#000000',
+ 'stroke:#8080ff')
+ sub(layer, *margbox)
+ del margbox[1]['id']
+ margbox[1]['style'] = padbox[1]['style'].replace('stroke:#8080ff',
+ 'stroke:#000000')
+ makeClones(layer, 'outerguide')
+
+ # crosslayer #####################################################
+ if set(['crosses']).intersection(show):
+ layer = sub(root, 'g', {'id':'cutlayer',
+ 'inkscape:groupmode':'layer'})
+
+ if 'crosses' in show:
+ crosslen = 12
+ group = sub(layer, 'g', id='cross')
+ x,y = 0,0
+ path = 'M%f %f' % (x+pgEdge[left] + margin[left],
+ y+pgEdge[top] + margin[top]-crosslen)
+ path += ' L%f %f' % (x+pgEdge[left] + margin[left],
+ y+pgEdge[top] + margin[top]+crosslen)
+ path += ' M%f %f' % (x+pgEdge[left] + margin[left]-crosslen,
+ y+pgEdge[top] + margin[top])
+ path += ' L%f %f' % (x+pgEdge[left] + margin[left]+crosslen,
+ y+pgEdge[top] + margin[top])
+ sub(group, 'path', style=style+'stroke-width:0.05',
+ d = path, id = 'crossmarker')
+ for r in 0, 1:
+ for c in 0, 1:
+ if r or c:
+ x,y = c*size[width], r*size[height]
+ sub(group, 'use', {
+ 'xlink:href': '#crossmarker',
+ 'transform': 'translate(%f,%f)' %
+ (x,y)})
+ makeClones(layer, 'cross')
+
+ # clonelayer #####################################################
+ layer = sub(root, 'g', {'id':'clonelayer', 'inkscape:groupmode':'layer'})
+ makeClones(layer, 'main')
+
+ # mainlayer ######################################################
+ layer = sub(root, 'g', {'id':'mainlayer', 'inkscape:groupmode':'layer'})
+ group = sub(layer, 'g', {'id':'main'})
+
+ if 'innerbox' in show:
+ sub(group, *padbox)
+ if 'outerbox' in show:
+ sub(group, *margbox)
+ if 'holder' in show:
+ x, y = (pgEdge[left] + margin[left] + padding[left],
+ pgEdge[top] + margin[top] + padding[top])
+ w, h = (size[width] - padding[left] - padding[right],
+ size[height] - padding[top] - padding[bottom])
+ path = 'M%f %f' % (x + w/2., y)
+ path += ' L%f %f' % (x + w, y + h/2.)
+ path += ' L%f %f' % (x + w/2., y + h)
+ path += ' L%f %f' % (x, y + h/2.)
+ path += ' Z'
+ sub(group, 'path', style=style, d = path)
+
+ if returnTree:
+ return doc
+ else:
+ return ElementTree.tostring(root)
+
e = Nup()
e.affect()
-
-
diff --git a/share/extensions/layout_nup_pageframe.py b/share/extensions/layout_nup_pageframe.py
deleted file mode 100755
index 471a75dd3..000000000
--- a/share/extensions/layout_nup_pageframe.py
+++ /dev/null
@@ -1,230 +0,0 @@
-#!/usr/bin/env python
-#@+leo-ver=4-thin
-#@+node:tbrown.20070622094435.1:@thin pageframe.py
-"""Create n-up SVG layouts"""
-
-#@+others
-#@+node:tbrown.20070622103716:imports
-import sys, inkex
-
-try:
- import xml.etree.ElementTree as ElementTree
-except:
- try:
- from lxml import etree as ElementTree
- except:
- try:
- from elementtree.ElementTree import ElementTree
- except:
- sys.stderr.write("""Requires ElementTree module, included
-in Python 2.5 or supplied by lxml or elementtree modules.
-
-""")
-#@-node:tbrown.20070622103716:imports
-#@+node:tbrown.20070622103716.1:expandTuple
-def expandTuple(unit, x, length = 4):
- try:
- iter(x)
- except:
- return None
-
- if len(x) != length: x = x*2
- if len(x) != length:
- raise Exception("expandTuple: requires 2 or 4 item tuple")
- try:
- return tuple(map(lambda ev: (self.unittouu(str(eval(str(ev)))+unit)), x))
- except:
- return None
-#@-node:tbrown.20070622103716.1:expandTuple
-#@+node:tbrown.20070622103716.2:GenerateNup
-def GenerateNup(unit="px",
- pgSize=("8.5*96","11*96"),
- pgMargin=(0,0),
- pgPadding=(0,0),
- num=(2,2),
- calculateSize=True,
- size=None,
- margin=(0,0),
- padding=(20,20),
- show=['default'],
- container='svg',
- returnTree = False,
- ):
- """Generate the SVG. Inputs are run through 'eval(str(x))' so you can use
-'8.5*72' instead of 612. Margin / padding dimension tuples can be
-(top & bottom, left & right) or (top, right, bottom, left).
-
-Keyword arguments:
-pgSize -- page size, width x height
-pgMargin -- extra space around each page
-pgPadding -- added to pgMargin
-n -- rows x cols
-size -- override calculated size, width x height
-margin -- white space around each piece
-padding -- inner padding for each piece
-show -- list of keywords indicating what to show
- - 'crosses' - cutting guides
- - 'inner' - inner boundary
- - 'outer' - outer boundary
-container -- 'svg' or 'g'
-returnTree -- whether to return the ElementTree or the string
-"""
-
- if 'default' in show:
- show = set(show).union(['inner', 'innerbox', 'holder', 'crosses'])
-
- pgMargin = expandTuple(unit, pgMargin)
- pgPadding = expandTuple(unit, pgPadding)
- margin = expandTuple(unit, margin)
- padding = expandTuple(unit, padding)
-
- pgSize = expandTuple(unit, pgSize, length = 2)
-# num = tuple(map(lambda ev: eval(str(ev)), num))
-
- pgEdge = map(sum,zip(pgMargin, pgPadding))
-
- top, right, bottom, left = 0,1,2,3
- width, height = 0,1
- rows, cols = 0,1
- size = expandTuple(unit, size, length = 2)
- if size == None or calculateSize == True or len(size) < 2 or size[0] == 0 or size[1] == 0:
- size = ((pgSize[width]
- - pgEdge[left] - pgEdge[right]
- - num[cols]*(margin[left] + margin[right])) / num[cols],
- (pgSize[height]
- - pgEdge[top] - pgEdge[bottom]
- - num[rows]*(margin[top] + margin[bottom])) / num[rows]
- )
- else:
- size = expandTuple(unit, size, length = 2)
-
- # sep is separation between same points on pieces
- sep = (size[width]+margin[right]+margin[left],
- size[height]+margin[top]+margin[bottom])
-
- style = 'stroke:#000000;stroke-opacity:1;fill:none;fill-opacity:1;'
-
- padbox = 'rect', {
- 'x': str(pgEdge[left] + margin[left] + padding[left]),
- 'y': str(pgEdge[top] + margin[top] + padding[top]),
- 'width': str(size[width] - padding[left] - padding[right]),
- 'height': str(size[height] - padding[top] - padding[bottom]),
- 'style': style,
- }
- margbox = 'rect', {
- 'x': str(pgEdge[left] + margin[left]),
- 'y': str(pgEdge[top] + margin[top]),
- 'width': str(size[width]),
- 'height': str(size[height]),
- 'style': style,
- }
-
- doc = ElementTree.ElementTree(ElementTree.Element(container,
- {'xmlns:inkscape':"http://www.inkscape.org/namespaces/inkscape",
- 'xmlns:xlink':"http://www.w3.org/1999/xlink",
- 'width':str(pgSize[width]),
- 'height':str(pgSize[height]),
- }))
-
- sub = ElementTree.SubElement
-
- root = doc.getroot()
-
- def makeClones(under, to):
- for r in range(0,num[rows]):
- for c in range(0,num[cols]):
- if r == 0 and c == 0: continue
- sub(under, 'use', {
- 'xlink:href': '#' + to,
- 'transform': 'translate(%f,%f)' %
- (c*sep[width], r*sep[height])})
-
- # guidelayer #####################################################
- if set(['inner', 'outer']).intersection(show):
- layer = sub(root, 'g', {'id':'guidelayer',
- 'inkscape:groupmode':'layer'})
- if 'inner' in show:
- padbox[1]['id'] = 'innerguide'
- padbox[1]['style'] = padbox[1]['style'].replace('stroke:#000000',
- 'stroke:#8080ff')
- sub(layer, *padbox)
- del padbox[1]['id']
- padbox[1]['style'] = padbox[1]['style'].replace('stroke:#8080ff',
- 'stroke:#000000')
- makeClones(layer, 'innerguide')
- if 'outer' in show:
- margbox[1]['id'] = 'outerguide'
- margbox[1]['style'] = padbox[1]['style'].replace('stroke:#000000',
- 'stroke:#8080ff')
- sub(layer, *margbox)
- del margbox[1]['id']
- margbox[1]['style'] = padbox[1]['style'].replace('stroke:#8080ff',
- 'stroke:#000000')
- makeClones(layer, 'outerguide')
-
- # crosslayer #####################################################
- if set(['crosses']).intersection(show):
- layer = sub(root, 'g', {'id':'cutlayer',
- 'inkscape:groupmode':'layer'})
-
- if 'crosses' in show:
- crosslen = 12
- group = sub(layer, 'g', id='cross')
- x,y = 0,0
- path = 'M%f %f' % (x+pgEdge[left] + margin[left],
- y+pgEdge[top] + margin[top]-crosslen)
- path += ' L%f %f' % (x+pgEdge[left] + margin[left],
- y+pgEdge[top] + margin[top]+crosslen)
- path += ' M%f %f' % (x+pgEdge[left] + margin[left]-crosslen,
- y+pgEdge[top] + margin[top])
- path += ' L%f %f' % (x+pgEdge[left] + margin[left]+crosslen,
- y+pgEdge[top] + margin[top])
- sub(group, 'path', style=style+'stroke-width:0.05',
- d = path, id = 'crossmarker')
- for r in 0, 1:
- for c in 0, 1:
- if r or c:
- x,y = c*size[width], r*size[height]
- sub(group, 'use', {
- 'xlink:href': '#crossmarker',
- 'transform': 'translate(%f,%f)' %
- (x,y)})
- makeClones(layer, 'cross')
-
- # clonelayer #####################################################
- layer = sub(root, 'g', {'id':'clonelayer', 'inkscape:groupmode':'layer'})
- makeClones(layer, 'main')
-
- # mainlayer ######################################################
- layer = sub(root, 'g', {'id':'mainlayer', 'inkscape:groupmode':'layer'})
- group = sub(layer, 'g', {'id':'main'})
-
- if 'innerbox' in show:
- sub(group, *padbox)
- if 'outerbox' in show:
- sub(group, *margbox)
- if 'holder' in show:
- x, y = (pgEdge[left] + margin[left] + padding[left],
- pgEdge[top] + margin[top] + padding[top])
- w, h = (size[width] - padding[left] - padding[right],
- size[height] - padding[top] - padding[bottom])
- path = 'M%f %f' % (x + w/2., y)
- path += ' L%f %f' % (x + w, y + h/2.)
- path += ' L%f %f' % (x + w/2., y + h)
- path += ' L%f %f' % (x, y + h/2.)
- path += ' Z'
- sub(group, 'path', style=style, d = path)
-
- if returnTree:
- return doc
- else:
- return ElementTree.tostring(root)
-
-if __name__ == '__main__':
- print GenerateNup(num=(10,3), margin=(5,5), show=['default', 'outer'])
-#@-node:tbrown.20070622103716.2:GenerateNup
-#@-others
-#@-node:tbrown.20070622094435.1:@thin pageframe.py
-#@-leo
-
-
diff --git a/share/extensions/measure.py b/share/extensions/measure.py
index cdccb6bb8..e7c91feec 100755
--- a/share/extensions/measure.py
+++ b/share/extensions/measure.py
@@ -188,13 +188,13 @@ class Length(inkex.Effect):
factor = self.unittouu(doc.get('height'))/float(viewh)
factor /= self.unittouu('1px')
self.options.fontsize /= factor
+ factor *= scale/self.unittouu('1'+self.options.unit)
# loop over all selected paths
for id, node in self.selected.iteritems():
if node.tag == inkex.addNS('path','svg'):
mat = simpletransform.composeParents(node, [[1.0, 0.0, 0.0], [0.0, 1.0, 0.0]])
p = cubicsuperpath.parsePath(node.get('d'))
simpletransform.applyTransformToPath(mat, p)
- factor *= scale/self.unittouu('1'+self.options.unit)
if self.options.type == "length":
slengths, stotal = csplength(p)
self.group = inkex.etree.SubElement(node.getparent(),inkex.addNS('text','svg'))
diff --git a/share/extensions/plotter.inx b/share/extensions/plotter.inx
index 5a6d8ce06..17b2ff185 100644
--- a/share/extensions/plotter.inx
+++ b/share/extensions/plotter.inx
@@ -27,7 +27,25 @@
<item value="57600">57600</item>
<item value="115200">115200</item>
</param>
- <param name="flowControl" type="enum" _gui-text="Flow control:" _gui-description="The Software / Hardware flow control of your serial connection (Default: Software)">
+ <param name="serialByteSize" type="enum" _gui-text="Serial byte size:" _gui-description="The Byte size of your serial connection, 99% of all plotters use the default setting (Default: 8 Bits)">
+ <item value="eight">8 Bits</item>
+ <item value="seven">7 Bits</item>
+ <item value="six">6 Bits</item>
+ <item value="five">5 Bits</item>
+ </param>
+ <param name="serialStopBits" type="enum" _gui-text="Serial stop bits:" _gui-description="The Stop bits of your serial connection, 99% of all plotters use the default setting (Default: 1 Bit)">
+ <item value="one">1 Bit</item>
+ <item value="onePointFive">1.5 Bits</item>
+ <item value="two">2 Bits</item>
+ </param>
+ <param name="serialParity" type="enum" _gui-text="Serial parity:" _gui-description="The Parity of your serial connection, 99% of all plotters use the default setting (Default: None)">
+ <item value="none">None</item>
+ <item value="even">Even</item>
+ <item value="odd">Odd</item>
+ <item value="mark">Mark</item>
+ <item value="space">Space</item>
+ </param>
+ <param name="serialFlowControl" type="enum" _gui-text="Serial flow control:" _gui-description="The Software / Hardware flow control of your serial connection (Default: Software)">
<_item value="xonxoff">Software (XON/XOFF)</_item>
<_item value="rtscts">Hardware (RTS/CTS)</_item>
<_item value="dsrdtrrtscts">Hardware (DSR/DTR + RTS/CTS)</_item>
@@ -47,9 +65,9 @@
<page name="plotter" _gui-text="Plotter Settings ">
<param name="resolutionX" type="float" min="1.0" max="4096.0" precision="1" _gui-text="Resolution X (dpi):" _gui-description="The amount of steps the plotter moves if it moves for 1 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 the plotter moves if it moves for 1 inch on the Y axis (Default: 1016.0)">1016.0</param>
- <param name="pen" type="int" min="0" max="99" _gui-text="Pen number:" _gui-description="The number of the pen (tool) to use (Standard: '1')">1</param>
- <param name="force" type="int" min="0" max="1000" _gui-text="Pen force (g):" _gui-description="The amount of force pushing down the pen in grams, set to 0 to omit command; most plotters ignore this command (Default: 0)">0</param>
- <param name="speed" type="int" min="0" max="10000" _gui-text="Pen speed (cm/s or mm/s):" _gui-description="The speed the pen will move with in centimeters or millimeters per second (depending on your plotter model), set to 0 to omit command. Most plotters ignore this command. (Default: 0)">0</param>
+ <param name="pen" type="int" min="0" max="99" _gui-text="Pen number:" _gui-description="The number of the pen (tool) to use (Standard: '1')">1</param>
+ <param name="force" type="int" min="0" max="1000" _gui-text="Pen force (g):" _gui-description="The amount of force pushing down the pen in grams, set to 0 to omit command; most plotters ignore this command (Default: 0)">0</param>
+ <param name="speed" type="int" min="0" max="10000" _gui-text="Pen speed (cm/s or mm/s):" _gui-description="The speed the pen will move with in centimeters or millimeters per second (depending on your plotter model), set to 0 to omit command. Most plotters ignore this command. (Default: 0)">0</param>
<param name="orientation" type="enum" _gui-text="Rotation (°, clockwise):" _gui-description="Rotation of the drawing (Default: 0°)">
<item value="0">0</item>
<item value="90">90</item>
@@ -58,16 +76,18 @@
</param>
<param name="mirrorX" type="boolean" _gui-text="Mirror X axis" _gui-description="Check this to mirror the X axis (Default: Unchecked)">false</param>
<param name="mirrorY" type="boolean" _gui-text="Mirror Y axis" _gui-description="Check this to mirror the Y axis (Default: Unchecked)">false</param>
- <param name="center" type="boolean" _gui-text="Center zero point" _gui-description="Check this if your plotter uses a centered zero point (Default: Unchecked)">false</param>
+ <param name="center" type="boolean" _gui-text="Center zero point" _gui-description="Check this if your plotter uses a centered zero point (Default: Unchecked)">false</param>
+ <param name="space" type="description">&#xa0;</param>
+ <_param name="multiplePensHelp" type="description">If you want to use multiple pens on your pen plotter create one layer for each pen, name the layers "Pen 1", "Pen 2", etc., and put your drawings in the corresponding layers. This overrules the pen number option above.</_param>
</page>
<page name="misc" _gui-text="Plot Features ">
- <param name="overcut" type="float" min="0.0" max="100.0" precision="2" _gui-text="Overcut (mm):" _gui-description="The distance in mm that will be cut over the starting point of the path to prevent open paths, set to 0.0 to omit command (Default: 1.00)">1.00</param>
- <param name="toolOffset" type="float" min="0.0" max="20.0" precision="2" _gui-text="Tool offset (mm):" _gui-description="The offset from the tool tip to the tool axis in mm, set to 0.0 to omit command (Default: 0.25)">0.25</param>
- <param name="precut" type="boolean" _gui-text="Use precut" _gui-description="Check this to cut a small line before the real drawing starts to correctly align the tool orientation. (Default: Checked)">true</param>
- <param name="flat" type="float" min="0.1" max="10.0" precision="1" _gui-text="Curve flatness:" _gui-description="Curves are divided into lines, this number controls how fine the curves will be reproduced, the smaller the finer (Default: '1.2')">1.2</param>
- <param name="autoAlign" type="boolean" _gui-text="Auto align" _gui-description="Check this to auto align the drawing to the zero point (Plus the tool offset if used). If unchecked you have to make sure that all parts of your drawing are within the document border! (Default: Checked)">true</param>
- <param name="space" type="description">&#xa0;</param>
- <param name="debug" type="boolean" _gui-text="Show debug information" _gui-description="Check this to get verbose information about the plot without actually sending something to the plotter (A.k.a. data dump) (Default: Unchecked)">false</param>
+ <param name="overcut" type="float" min="0.0" max="100.0" precision="2" _gui-text="Overcut (mm):" _gui-description="The distance in mm that will be cut over the starting point of the path to prevent open paths, set to 0.0 to omit command (Default: 1.00)">1.00</param>
+ <param name="toolOffset" type="float" min="0.0" max="20.0" precision="2" _gui-text="Tool offset (mm):" _gui-description="The offset from the tool tip to the tool axis in mm, set to 0.0 to omit command (Default: 0.25)">0.25</param>
+ <param name="precut" type="boolean" _gui-text="Use precut" _gui-description="Check this to cut a small line before the real drawing starts to correctly align the tool orientation. (Default: Checked)">true</param>
+ <param name="flat" type="float" min="0.1" max="10.0" precision="1" _gui-text="Curve flatness:" _gui-description="Curves are divided into lines, this number controls how fine the curves will be reproduced, the smaller the finer (Default: '1.2')">1.2</param>
+ <param name="autoAlign" type="boolean" _gui-text="Auto align" _gui-description="Check this to auto align the drawing to the zero point (Plus the tool offset if used). If unchecked you have to make sure that all parts of your drawing are within the document border! (Default: Checked)">true</param>
+ <param name="space" type="description">&#xa0;</param>
+ <param name="debug" type="boolean" _gui-text="Show debug information" _gui-description="Check this to get verbose information about the plot without actually sending something to the plotter (A.k.a. data dump) (Default: Unchecked)">false</param>
</page>
</param>
<_param name="settingsHelp" type="description">All these settings depend on the plotter you use, for more information please consult the manual or homepage for your plotter.</_param>
diff --git a/share/extensions/plotter.py b/share/extensions/plotter.py
index 7e24d0824..c0f180f60 100644
--- a/share/extensions/plotter.py
+++ b/share/extensions/plotter.py
@@ -34,27 +34,30 @@ class Plot(inkex.Effect):
def __init__(self):
inkex.Effect.__init__(self)
- self.OptionParser.add_option('--tab', action='store', type='string', dest='tab')
- self.OptionParser.add_option('--serialPort', action='store', type='string', dest='serialPort', default='COM1', help='Serial port')
- self.OptionParser.add_option('--serialBaudRate', action='store', type='string', dest='serialBaudRate', default='9600', help='Serial Baud rate')
- self.OptionParser.add_option('--flowControl', action='store', type='string', dest='flowControl', default='0', help='Flow control')
- self.OptionParser.add_option('--commandLanguage', action='store', type='string', dest='commandLanguage', default='hpgl', help='Command Language')
- self.OptionParser.add_option('--initCommands', action='store', type='string', dest='initCommands', default='', help='Initialization commands')
- self.OptionParser.add_option('--resolutionX', action='store', type='float', dest='resolutionX', default=1016.0, help='Resolution X (dpi)')
- self.OptionParser.add_option('--resolutionY', action='store', type='float', dest='resolutionY', default=1016.0, help='Resolution Y (dpi)')
- self.OptionParser.add_option('--pen', action='store', type='int', dest='pen', default=1, help='Pen number')
- self.OptionParser.add_option('--force', action='store', type='int', dest='force', default=24, help='Pen force (g)')
- self.OptionParser.add_option('--speed', action='store', type='int', dest='speed', default=20, help='Pen speed (cm/s)')
- self.OptionParser.add_option('--orientation', action='store', type='string', dest='orientation', default='90', help='Rotation (Clockwise)')
- self.OptionParser.add_option('--mirrorX', action='store', type='inkbool', dest='mirrorX', default='FALSE', help='Mirror X axis')
- self.OptionParser.add_option('--mirrorY', action='store', type='inkbool', dest='mirrorY', default='FALSE', help='Mirror Y axis')
- self.OptionParser.add_option('--center', action='store', type='inkbool', dest='center', default='FALSE', help='Center zero point')
- self.OptionParser.add_option('--overcut', action='store', type='float', dest='overcut', default=1.0, help='Overcut (mm)')
- self.OptionParser.add_option('--toolOffset', action='store', type='float', dest='toolOffset', default=0.25, help='Tool offset (mm)')
- self.OptionParser.add_option('--precut', action='store', type='inkbool', dest='precut', default='TRUE', help='Use precut')
- self.OptionParser.add_option('--flat', action='store', type='float', dest='flat', default=1.2, help='Curve flatness')
- self.OptionParser.add_option('--autoAlign', action='store', type='inkbool', dest='autoAlign', default='TRUE', help='Auto align')
- self.OptionParser.add_option('--debug', action='store', type='inkbool', dest='debug', default='FALSE', help='Show debug information')
+ self.OptionParser.add_option('--tab', action='store', type='string', dest='tab')
+ self.OptionParser.add_option('--serialPort', action='store', type='string', dest='serialPort', default='COM1', help='Serial port')
+ self.OptionParser.add_option('--serialBaudRate', action='store', type='string', dest='serialBaudRate', default='9600', help='Serial Baud rate')
+ self.OptionParser.add_option('--serialByteSize', action='store', type='string', dest='serialByteSize', default='eight', help='Serial byte size')
+ self.OptionParser.add_option('--serialStopBits', action='store', type='string', dest='serialStopBits', default='one', help='Serial stop bits')
+ self.OptionParser.add_option('--serialParity', action='store', type='string', dest='serialParity', default='none', help='Serial parity')
+ self.OptionParser.add_option('--serialFlowControl', action='store', type='string', dest='serialFlowControl', default='0', help='Flow control')
+ self.OptionParser.add_option('--commandLanguage', action='store', type='string', dest='commandLanguage', default='hpgl', help='Command Language')
+ self.OptionParser.add_option('--initCommands', action='store', type='string', dest='initCommands', default='', help='Initialization commands')
+ self.OptionParser.add_option('--resolutionX', action='store', type='float', dest='resolutionX', default=1016.0, help='Resolution X (dpi)')
+ self.OptionParser.add_option('--resolutionY', action='store', type='float', dest='resolutionY', default=1016.0, help='Resolution Y (dpi)')
+ self.OptionParser.add_option('--pen', action='store', type='int', dest='pen', default=1, help='Pen number')
+ self.OptionParser.add_option('--force', action='store', type='int', dest='force', default=24, help='Pen force (g)')
+ self.OptionParser.add_option('--speed', action='store', type='int', dest='speed', default=20, help='Pen speed (cm/s)')
+ self.OptionParser.add_option('--orientation', action='store', type='string', dest='orientation', default='90', help='Rotation (Clockwise)')
+ self.OptionParser.add_option('--mirrorX', action='store', type='inkbool', dest='mirrorX', default='FALSE', help='Mirror X axis')
+ self.OptionParser.add_option('--mirrorY', action='store', type='inkbool', dest='mirrorY', default='FALSE', help='Mirror Y axis')
+ self.OptionParser.add_option('--center', action='store', type='inkbool', dest='center', default='FALSE', help='Center zero point')
+ self.OptionParser.add_option('--overcut', action='store', type='float', dest='overcut', default=1.0, help='Overcut (mm)')
+ self.OptionParser.add_option('--toolOffset', action='store', type='float', dest='toolOffset', default=0.25, help='Tool offset (mm)')
+ self.OptionParser.add_option('--precut', action='store', type='inkbool', dest='precut', default='TRUE', help='Use precut')
+ self.OptionParser.add_option('--flat', action='store', type='float', dest='flat', default=1.2, help='Curve flatness')
+ self.OptionParser.add_option('--autoAlign', action='store', type='inkbool', dest='autoAlign', default='TRUE', help='Auto align')
+ self.OptionParser.add_option('--debug', action='store', type='inkbool', dest='debug', default='FALSE', help='Show debug information')
def effect(self):
# get hpgl data
@@ -98,12 +101,12 @@ class Plot(inkex.Effect):
def convertToHpgl(self):
# convert raw HPGL to HPGL
- hpglInit = 'IN;SP%d' % self.options.pen
+ hpglInit = 'IN'
if self.options.force > 0:
hpglInit += ';FS%d' % self.options.force
if self.options.speed > 0:
hpglInit += ';VS%d' % self.options.speed
- self.hpgl = hpglInit + self.hpgl + ';PU0,0;SP0;IN; '
+ self.hpgl = hpglInit + self.hpgl + ';SP0;PU0,0;IN; '
def convertToDmpl(self):
# convert HPGL to DMPL
@@ -119,22 +122,23 @@ class Plot(inkex.Effect):
# Z = Reset plotter
# n,n, = Coordinate pair
self.hpgl = self.hpgl.replace(';', ',')
+ self.hpgl = self.hpgl.replace('SP', 'P')
self.hpgl = self.hpgl.replace('PU', 'U')
self.hpgl = self.hpgl.replace('PD', 'D')
- dmplInit = ';:HAL0P%d' % self.options.pen
+ dmplInit = ';:HAL0'
if self.options.speed > 0:
dmplInit += 'V%d' % self.options.speed
dmplInit += 'EC1'
- self.hpgl = dmplInit + self.hpgl[1:] + ',U0,0,P0Z '
+ self.hpgl = dmplInit + self.hpgl[1:] + ',P0,U0,0,Z '
def convertToKNK(self):
# convert HPGL to KNK Plotter Language
- hpglInit = 'ZG;SP%d' % self.options.pen
+ hpglInit = 'ZG'
if self.options.force > 0:
hpglInit += ';FS%d' % self.options.force
if self.options.speed > 0:
hpglInit += ';VS%d' % self.options.speed
- self.hpgl = hpglInit + self.hpgl + ';PU0,0;SP0;@ '
+ self.hpgl = hpglInit + self.hpgl + ';SP0;PU0,0;@ '
def sendHpglToSerial(self):
# gracefully exit script when pySerial is missing
@@ -146,17 +150,49 @@ class Plot(inkex.Effect):
+ "\n2. Extract the \"serial\" subfolder from the zip to the following folder: C:\\[Program files]\\inkscape\\python\\Lib\\"
+ "\n3. Restart Inkscape."))
return
- # send data to plotter
+ # init serial framework
mySerial = serial.Serial()
+ # set serial port
mySerial.port = self.options.serialPort
+ # set baudrate
mySerial.baudrate = self.options.serialBaudRate
+ # set bytesize
+ if self.options.serialByteSize == 'five':
+ mySerial.bytesize = serial.FIVEBITS
+ if self.options.serialByteSize == 'six':
+ mySerial.bytesize = serial.SIXBITS
+ if self.options.serialByteSize == 'seven':
+ mySerial.bytesize = serial.SEVENBITS
+ if self.options.serialByteSize == 'eight':
+ mySerial.bytesize = serial.EIGHTBITS
+ # set stopbits
+ if self.options.serialStopBits == 'one':
+ mySerial.stopbits = serial.STOPBITS_ONE
+ if self.options.serialStopBits == 'onePointFive':
+ mySerial.stopbits = serial.STOPBITS_ONE_POINT_FIVE
+ if self.options.serialStopBits == 'two':
+ mySerial.stopbits = serial.STOPBITS_TWO
+ # set parity
+ if self.options.serialParity == 'none':
+ mySerial.parity = serial.PARITY_NONE
+ if self.options.serialParity == 'even':
+ mySerial.parity = serial.PARITY_EVEN
+ if self.options.serialParity == 'odd':
+ mySerial.parity = serial.PARITY_ODD
+ if self.options.serialParity == 'mark':
+ mySerial.parity = serial.PARITY_MARK
+ if self.options.serialParity == 'space':
+ mySerial.parity = serial.PARITY_SPACE
+ # set short timeout to avoid locked up interface
mySerial.timeout = 0.1
- if self.options.flowControl == 'xonxoff':
+ # set flow control
+ if self.options.serialFlowControl == 'xonxoff':
mySerial.xonxoff = True
- if self.options.flowControl == 'rtscts' or self.options.flowControl == 'dsrdtrrtscts':
+ if self.options.serialFlowControl == 'rtscts' or self.options.serialFlowControl == 'dsrdtrrtscts':
mySerial.rtscts = True
- if self.options.flowControl == 'dsrdtrrtscts':
+ if self.options.serialFlowControl == 'dsrdtrrtscts':
mySerial.dsrdtr = True
+ # try to establish connection
try:
mySerial.open()
except Exception as inst:
@@ -166,6 +202,7 @@ class Plot(inkex.Effect):
else:
type, value, traceback = sys.exc_info()
raise ValueError, ('', type, value), traceback
+ # send data to plotter
if self.options.initCommands != '':
mySerial.write(self.options.initCommands.decode('string_escape'))
mySerial.write(self.hpgl)
@@ -177,7 +214,10 @@ class Plot(inkex.Effect):
inkex.errormsg("---------------------------------\nDebug information\n---------------------------------\n\nSettings:\n")
inkex.errormsg(' Serial Port: ' + self.options.serialPort)
inkex.errormsg(' Serial baud rate: ' + self.options.serialBaudRate)
- inkex.errormsg(' Flow control: ' + self.options.flowControl)
+ inkex.errormsg(' Serial byte size: ' + self.options.serialByteSize + ' Bits')
+ inkex.errormsg(' Serial stop bits: ' + self.options.serialStopBits + ' Bits')
+ inkex.errormsg(' Serial parity: ' + self.options.serialParity)
+ inkex.errormsg(' Serial Flow control: ' + self.options.serialFlowControl)
inkex.errormsg(' Command language: ' + self.options.commandLanguage)
inkex.errormsg(' Initialization commands: ' + self.options.initCommands)
inkex.errormsg(' Resolution X (dpi): ' + str(self.options.resolutionX))
@@ -223,7 +263,7 @@ class Plot(inkex.Effect):
inkex.errormsg(' Flatness: ' + str(debugObject.flat) + ' plotter steps')
inkex.errormsg(' Tool offset flatness: ' + str(debugObject.toolOffsetFlat) + ' plotter steps')
inkex.errormsg("\n" + self.options.commandLanguage + " data:\n")
- inkex.errormsg(self.hpgl)
+ inkex.errormsg(self.options.initCommands + self.hpgl)
if __name__ == '__main__':
# start extension
diff --git a/share/extensions/scour.inx b/share/extensions/scour.inx
index 45719deeb..c97eec502 100644
--- a/share/extensions/scour.inx
+++ b/share/extensions/scour.inx
@@ -2,9 +2,9 @@
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<_name>Optimized SVG Output</_name>
<id>org.inkscape.output.scour</id>
- <dependency type="executable" location="extensions">scour.py</dependency>
- <dependency type="executable" location="extensions">svg_regex.py</dependency>
- <dependency type="executable" location="extensions">yocto_css.py</dependency>
+ <dependency type="executable" location="extensions">scour/scour.py</dependency>
+ <dependency type="executable" location="extensions">scour/svg_regex.py</dependency>
+ <dependency type="executable" location="extensions">scour/yocto_css.py</dependency>
<param name="tab" type="notebook">
<page name="Options" _gui-text="Options">
<param name="simplify-colors" type="boolean" _gui-text="Shorten color values">true</param>
@@ -63,6 +63,6 @@
<_filetypetooltip>Scalable Vector Graphics</_filetypetooltip>
</output>
<script>
- <command reldir="extensions" interpreter="python">scour.inkscape.py</command>
+ <command reldir="extensions" interpreter="python">scour/scour.inkscape.py</command>
</script>
</inkscape-extension>
diff --git a/share/extensions/scour/Makefile.am b/share/extensions/scour/Makefile.am
new file mode 100644
index 000000000..8a6f42544
--- /dev/null
+++ b/share/extensions/scour/Makefile.am
@@ -0,0 +1,13 @@
+
+scourdir = $(datadir)/inkscape/extensions/scour
+
+scour_DATA = \
+ scour.py \
+ scour.inkscape.py \
+ svg_regex.py \
+ svg_transform.py \
+ yocto_css.py
+
+EXTRA_DIST = \
+ $(scour_DATA)
+
diff --git a/share/extensions/scour.inkscape.py b/share/extensions/scour/scour.inkscape.py
index f161a09c2..f161a09c2 100755..100644
--- a/share/extensions/scour.inkscape.py
+++ b/share/extensions/scour/scour.inkscape.py
diff --git a/share/extensions/scour.py b/share/extensions/scour/scour.py
index 236529daa..236529daa 100644
--- a/share/extensions/scour.py
+++ b/share/extensions/scour/scour.py
diff --git a/share/extensions/svg_regex.py b/share/extensions/scour/svg_regex.py
index 6321bff0e..6321bff0e 100755..100644
--- a/share/extensions/svg_regex.py
+++ b/share/extensions/scour/svg_regex.py
diff --git a/share/extensions/svg_transform.py b/share/extensions/scour/svg_transform.py
index 860c1df5d..860c1df5d 100755..100644
--- a/share/extensions/svg_transform.py
+++ b/share/extensions/scour/svg_transform.py
diff --git a/share/extensions/yocto_css.py b/share/extensions/scour/yocto_css.py
index c6bd0c37e..c6bd0c37e 100755..100644
--- a/share/extensions/yocto_css.py
+++ b/share/extensions/scour/yocto_css.py
diff --git a/share/extensions/svg2xaml.xsl b/share/extensions/svg2xaml.xsl
index d2796c93c..c384b022f 100755
--- a/share/extensions/svg2xaml.xsl
+++ b/share/extensions/svg2xaml.xsl
@@ -1266,25 +1266,28 @@ exclude-result-prefixes="rdf xlink xs exsl libxslt inkscape">
-->
<xsl:template mode="fill_rule" match="*">
<xsl:choose>
- <xsl:when test="@fill-rule and (@fill-rule = 'nonzero' or @fill-rule = 'evenodd')">
- <xsl:attribute name="FillRule">
- <xsl:value-of select="normalize-space(@fill-rule)" />
- </xsl:attribute>
+ <xsl:when test="@fill-rule and (@fill-rule = 'nonzero')">
+ <xsl:attribute name="FillRule">NonZero</xsl:attribute>
+ </xsl:when>
+ <xsl:when test="@fill-rule and (@fill-rule = 'evenodd')">
+ <xsl:attribute name="FillRule">EvenOdd</xsl:attribute>
</xsl:when>
<xsl:when test="@style and contains(@style, 'fill-rule:')">
<xsl:variable name="FillRule" select="normalize-space(substring-after(@style, 'fill-rule:'))" />
<xsl:choose>
<xsl:when test="contains($FillRule, ';')">
- <xsl:if test="substring-before($FillRule, ';') = 'nonzero' or substring-before($FillRule, ';') = 'evenodd'">
- <xsl:attribute name="FillRule">
- <xsl:value-of select="substring-before($FillRule, ';')" />
- </xsl:attribute>
+ <xsl:if test="substring-before($FillRule, ';') = 'nonzero'">
+ <xsl:attribute name="FillRule">NonZero</xsl:attribute>
+ </xsl:if>
+ <xsl:if test="substring-before($FillRule, ';') = 'evenodd'">
+ <xsl:attribute name="FillRule">EvenOdd</xsl:attribute>
</xsl:if>
</xsl:when>
- <xsl:when test="$FillRule = 'nonzero' or $FillRule = 'evenodd'">
- <xsl:attribute name="FillRule">
- <xsl:value-of select="$FillRule" />
- </xsl:attribute>
+ <xsl:when test="$FillRule = 'nonzero'">
+ <xsl:attribute name="FillRule">NonZero</xsl:attribute>
+ </xsl:when>
+ <xsl:when test="$FillRule = 'evenodd'">
+ <xsl:attribute name="FillRule">EvenOdd</xsl:attribute>
</xsl:when>
</xsl:choose>
</xsl:when>
diff --git a/share/extensions/synfig_prepare.py b/share/extensions/synfig_prepare.py
index c6ad48c97..ebc50fd8e 100755
--- a/share/extensions/synfig_prepare.py
+++ b/share/extensions/synfig_prepare.py
@@ -86,7 +86,7 @@ class InkscapeActionGroup(object):
def select_id(self, object_id):
"""Select object with given id"""
- self.command += "--select='%s' " % (object_id)
+ self.command += "--select=%s " % (object_id)
if not self.has_selection:
self.has_selection = True
diff --git a/share/extensions/webslicer_export.py b/share/extensions/webslicer_export.py
index c9ea761a7..a8a3c67ba 100755
--- a/share/extensions/webslicer_export.py
+++ b/share/extensions/webslicer_export.py
@@ -72,7 +72,13 @@ class WebSlicer_Export(WebSlicer_Effect):
else:
inkex.errormsg(_('The directory "%s" does not exists.') % self.options.dir)
return
- self.unique_html_id( self.get_slicer_layer() )
+ # Check whether slicer layer exists (bug #1198826)
+ slicer_layer = self.get_slicer_layer()
+ if slicer_layer is None:
+ inkex.errormsg(_('No slicer layer found.'))
+ return {'error':'No slicer layer found.'}
+ else:
+ self.unique_html_id( slicer_layer )
return None
diff --git a/share/filters/CMakeLists.txt b/share/filters/CMakeLists.txt
new file mode 100644
index 000000000..6b5356e53
--- /dev/null
+++ b/share/filters/CMakeLists.txt
@@ -0,0 +1,10 @@
+add_custom_command(
+ OUTPUT filters.svg.h
+ COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py ${CMAKE_CURRENT_SOURCE_DIR}/filters.svg > ${CMAKE_CURRENT_BINARY_DIR}/filters.svg.h
+ MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/filters.svg
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py
+)
+add_custom_target(filters.svg.h ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/filters.svg.h)
+
+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/filters.svg.h DESTINATION ${SHARE_INSTALL}/inkscape/filters)
+install(FILES "filters.svg" "README" DESTINATION ${SHARE_INSTALL}/inkscape/filters)
diff --git a/share/fonts/CMakeLists.txt b/share/fonts/CMakeLists.txt
new file mode 100644
index 000000000..d8d9e3684
--- /dev/null
+++ b/share/fonts/CMakeLists.txt
@@ -0,0 +1 @@
+install(FILES "README" DESTINATION ${SHARE_INSTALL}/inkscape/fonts)
diff --git a/share/gradients/CMakeLists.txt b/share/gradients/CMakeLists.txt
new file mode 100644
index 000000000..ec5e388af
--- /dev/null
+++ b/share/gradients/CMakeLists.txt
@@ -0,0 +1 @@
+install(FILES "README" DESTINATION ${SHARE_INSTALL}/inkscape/gradients)
diff --git a/share/icons/CMakeLists.txt b/share/icons/CMakeLists.txt
new file mode 100644
index 000000000..d4994a694
--- /dev/null
+++ b/share/icons/CMakeLists.txt
@@ -0,0 +1,6 @@
+add_subdirectory(application)
+
+file(GLOB _FILES "*.svg" "*.jpg" "*.png" "README")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/icons)
+
+install(FILES ../branding/inkscape.svg DESTINATION ${SHARE_INSTALL}/inkscape/icons)
diff --git a/share/icons/application/CMakeLists.txt b/share/icons/application/CMakeLists.txt
new file mode 100644
index 000000000..f93b4068e
--- /dev/null
+++ b/share/icons/application/CMakeLists.txt
@@ -0,0 +1,9 @@
+set(PIXMAP_SIZES "16x16" "22x22" "24x24" "32x32" "48x48" "256x256")
+set(THEME hicolor)
+foreach(pixmap_size ${PIXMAP_SIZES})
+ FILE(GLOB PIXMAP_FILES ${CMAKE_CURRENT_SOURCE_DIR}/${pixmap_size}/*.png ${CMAKE_CURRENT_SOURCE_DIR}/${pixmap_size}/*.svg)
+ install(FILES ${PIXMAP_FILES} DESTINATION ${SHARE_INSTALL}/icons/${THEME}/${pixmap_size}/apps)
+endforeach(pixmap_size)
+
+# I hope that this is actually run after installing the files.
+install(CODE "execute_process(COMMAND gtk-update-icon-cache -f -t ${CMAKE_INSTALL_PREFIX}/${SHARE_INSTALL}/icons/${THEME})") \ No newline at end of file
diff --git a/share/icons/icons.svg b/share/icons/icons.svg
index ba232e4ca..8b12d81cc 100644
--- a/share/icons/icons.svg
+++ b/share/icons/icons.svg
@@ -1,3952 +1,23135 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns: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.91 r13725" sodipodi:docname="icons.svg" height="540" width="1250" sodipodi:version="0.32" id="svg1" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0" viewBox="0 0 1250 540">
-<defs id="defs3">
-<linearGradient id="linearGradient10331">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop10333" />
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="1" id="stop10335" />
-</linearGradient>
-<linearGradient id="linearGradient6206">
-<stop style="stop-color:#8ab3df;stop-opacity:1" offset="0" id="stop6208" />
-<stop style="stop-color:#5eba69;stop-opacity:1" offset="1" id="stop6210" />
-</linearGradient>
-<linearGradient id="linearGradient6618">
-<stop offset="0" style="stop-color:#1caf19;stop-opacity:1" id="stop6620" />
-<stop offset="1" style="stop-color:#6df668;stop-opacity:1" id="stop6622" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7836">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7838" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7840" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7828">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7830" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7832" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7820">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7822" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7824" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7812">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7814" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7816" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7804">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7806" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7808" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7796">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7798" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7800" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7788">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7790" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7792" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7780">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7782" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7784" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient7772">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop7774" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop7776" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient5602">
-<stop style="stop-color:#cccccc;stop-opacity:1" offset="0" id="stop5604" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1" id="stop5606" />
-</linearGradient>
-<linearGradient id="linearGradient8482" inkscape:collect="always">
-<stop id="stop8484" offset="0" style="stop-color:#b3b3b3;stop-opacity:1" />
-<stop id="stop8486" offset="1" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient5724">
-<stop style="stop-color:#fffdf8;stop-opacity:1" offset="0.0000000" id="stop5726" />
-<stop id="stop5730" offset="0.43478271" style="stop-color:#fcfaf5;stop-opacity:1" />
-<stop style="stop-color:#cdccc7;stop-opacity:1" offset="1.0000000" id="stop5728" />
-</linearGradient>
-<inkscape:path-effect effect="skeletal" id="path-effect9860" prop_scale="1.03" pattern="M 758,-28 C 731.4411,-14.26939 718,-6 718,0 718,6 731.2091,26.0201 745.0684,28 753.0684,14 745.1344,-7.97121 758,-28 Z M 774,-20 C 762.1542,-11.10251 755.371,10.77622 774,22 762.7419,-2.46745 773.2605,-19.05005 774,-20 Z M 794,-14 C 780.8555,-3.853014 784,6 794,14 788,2 793.2503,-13.90401 794,-14 Z M 824,-19.06843 C 819.1449,-17.91054 817.0099,-10.02155 814,-8 808.1838,-4.093675 803.8914,-5.12669 803.9754,-0.0179303 804.0843,6.61057 806.4811,4.501851 814,8 816.3465,9.091689 821.1139,18.51673 824,18.93157 820,4.93157 820,-7.06843 824,-19.06843 Z" scale_y_rel="true" pattern-nodetypes="czcccccccccssscc" is_visible="true" deactivate_knotholder="false" copytype="single_stretched" spacing="0" normal_offset="0" tang_offset="0" prop_units="false" vertical_pattern="false" fuse_tolerance="0" />
-<linearGradient id="linearGradient4832" inkscape:collect="always">
-<stop id="stop4834" offset="0" style="stop-color:#8686bf;stop-opacity:1" />
-<stop id="stop4836" offset="1" style="stop-color:#9191b6;stop-opacity:0" />
-</linearGradient>
-<linearGradient id="linearGradient4826" inkscape:collect="always">
-<stop id="stop4828" offset="0" style="stop-color:#d7d7ff;stop-opacity:1" />
-<stop id="stop4830" offset="1" style="stop-color:#d7d7ff;stop-opacity:0" />
-</linearGradient>
-<linearGradient id="linearGradient4820" inkscape:collect="always">
-<stop id="stop4822" offset="0" style="stop-color:#393986;stop-opacity:1" />
-<stop id="stop4824" offset="1" style="stop-color:#53536c;stop-opacity:0" />
-</linearGradient>
-<linearGradient id="linearGradient4798">
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="0" id="stop4802" />
-<stop style="stop-color:#5eba69;stop-opacity:1" offset="1" id="stop4800" />
-</linearGradient>
-<linearGradient id="linearGradient4935">
-<stop style="stop-color:#5eba69;stop-opacity:1" offset="0" id="stop4939" />
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="1" id="stop4937" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient700" gradientTransform="matrix(-0.42698,-0.87201,0.87201,-0.42698,11.5331,-7.26288)" y2="-0.473952" x2="-16.4355" y1="-1.11146" x1="-30.5127" gradientUnits="userSpaceOnUse" id="linearGradient3352" inkscape:collect="always" />
-<linearGradient inkscape:collect="always" id="linearGradient4721">
-<stop style="stop-color:#f57900;stop-opacity:1" offset="0" id="stop4723" />
-<stop style="stop-color:#73d216;stop-opacity:0" offset="1" id="stop4725" />
-</linearGradient>
-<linearGradient id="linearGradient4709" inkscape:collect="always">
-<stop id="stop4711" offset="0" style="stop-color:#75507b;stop-opacity:1" />
-<stop id="stop4713" offset="1" style="stop-color:#73d216;stop-opacity:0" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient4696">
-<stop style="stop-color:#73d216;stop-opacity:1" offset="0" id="stop4698" />
-<stop style="stop-color:#73d216;stop-opacity:0" offset="1" id="stop4701" />
-</linearGradient>
-<marker inkscape:stockid="Arrow1Send" orient="auto" refY="0" refX="0" id="Arrow1Send">
-<path id="path4834" d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z" style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" transform="matrix(-0.2,0,0,-0.2,-1.2,0)" inkscape:connector-curvature="0" />
-</marker>
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-0.999998,-0.937496)" gradientUnits="userSpaceOnUse" y2="311.8198" x2="696.8668" y1="306.0704" x1="693.4026" id="linearGradient4618" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-0.999998,-0.937496)" gradientUnits="userSpaceOnUse" y2="311.079" x2="698.2679" y1="303.7007" x1="693.279" id="linearGradient4610" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="309.7338" x2="698.7269" y1="304.2242" x1="695.0141" id="linearGradient4649" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient16137" y2="729.9991" x2="60.49544" y1="715.913" x1="54.46346" gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)" gradientUnits="userSpaceOnUse" id="linearGradient4849" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient16137" y2="719.9376" x2="54.73784" y1="729.3028" x1="64.23671" gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)" gradientUnits="userSpaceOnUse" id="linearGradient4859" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="125.3162" x2="91.62061" y1="125.3162" x1="84.62939" id="linearGradient4811" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="159" x2="186.7169" y1="159" x1="171.2831" id="linearGradient4819" inkscape:collect="always" />
-<linearGradient id="linearGradient12513">
-<stop style="stop-color:black;stop-opacity:1" offset="0" id="stop12515" />
-<stop style="stop-color:#2a2a2a;stop-opacity:1" offset="1" id="stop12517" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient12513" gradientUnits="userSpaceOnUse" y2="712.1672" x2="61.99598" y1="715.7595" x1="64.60896" id="linearGradient12519" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="244.6786" x2="717.6032" y1="249.9805" x1="712.986" gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)" gradientUnits="userSpaceOnUse" id="linearGradient12592" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="240.8761" x2="717.6405" y1="248.9147" x1="713.5084" gradientTransform="matrix(1.016495,0,0,-1,-11.43409,493.3688)" gradientUnits="userSpaceOnUse" id="linearGradient12555" inkscape:collect="always" />
-<linearGradient id="linearGradient4528">
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="0.0000000" id="stop4530" />
-<stop id="stop4534" offset="0.37719297" style="stop-color:#d4e0ef;stop-opacity:1" />
-<stop style="stop-color:#98b6d3;stop-opacity:1" offset="1.0000000" id="stop4532" />
-</linearGradient>
-<linearGradient id="linearGradient6679">
-<stop style="stop-color:#ffeb74;stop-opacity:1" offset="0" id="stop6681" />
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="1" id="stop6683" />
-</linearGradient>
-<linearGradient id="linearGradient5899">
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="0" id="stop5901" />
-<stop style="stop-color:#ffacb5;stop-opacity:1" offset="1" id="stop5903" />
-</linearGradient>
-<linearGradient id="linearGradient5858">
-<stop style="stop-color:#ffa01e" offset="0.0000000" id="stop5860" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop5862" />
-</linearGradient>
-<linearGradient id="linearGradient5740">
-<stop id="stop5742" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop5744" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient5734">
-<stop id="stop5736" offset="0" style="stop-color:#8ab3df;stop-opacity:1" />
-<stop id="stop5738" offset="1" style="stop-color:#ffffff" />
-</linearGradient>
-<linearGradient id="linearGradient5704">
-<stop style="stop-color:#5a5a5a;stop-opacity:1" offset="0" id="stop5706" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop5708" />
-</linearGradient>
-<linearGradient id="linearGradient16137">
-<stop style="stop-color:#db5d00;stop-opacity:1" offset="0.0000000" id="stop16139" />
-<stop style="stop-color:#ffd749;stop-opacity:1" offset="0.35076979" id="stop16141" />
-<stop style="stop-color:#fff593;stop-opacity:1" offset="0.59668732" id="stop16143" />
-<stop style="stop-color:#fff7c2;stop-opacity:1" offset="0.78382427" id="stop16145" />
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="1.0000000" id="stop16147" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient14614">
-<stop style="stop-color:#c80000" offset="0" id="stop14616" />
-<stop style="stop-color:#bf0000;stop-opacity:0" offset="1" id="stop14618" />
-</linearGradient>
-<linearGradient id="linearGradient5204">
-<stop style="stop-color:#4e6e90;stop-opacity:1" offset="0" id="stop5206" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop5208" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient4343">
-<stop style="stop-color:#fff9f9;stop-opacity:1" offset="0" id="stop4345" />
-<stop style="stop-color:#fff9f9;stop-opacity:0" offset="1" id="stop4347" />
-</linearGradient>
-<linearGradient id="linearGradient6684">
-<stop style="stop-color:#ffbf00;stop-opacity:1" offset="0.0000000" id="stop6686" />
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="1.0000000" id="stop6688" />
-</linearGradient>
-<linearGradient id="linearGradient6524">
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="0.0000000" id="stop6526" />
-<stop style="stop-color:#e2e1e1;stop-opacity:1" offset="1.0000000" id="stop6528" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient5663">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop5665" />
-<stop style="stop-color:#000000;stop-opacity:0" offset="1" id="stop5667" />
-</linearGradient>
-<linearGradient id="linearGradient10585">
-<stop style="stop-color:#d7d7d7;stop-opacity:1" offset="0.0000000" id="stop10587" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop10595" />
-</linearGradient>
-<linearGradient id="linearGradient3480">
-<stop id="stop3482" offset="0.0000000" style="stop-color:#646464;stop-opacity:1" />
-<stop id="stop3484" offset="1.0000000" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient3466">
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="0.0000000" id="stop3468" />
-<stop style="stop-color:#a0a0a0;stop-opacity:1" offset="1.0000000" id="stop3470" />
-</linearGradient>
-<linearGradient id="linearGradient1887">
-<stop id="stop1888" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1" />
-<stop id="stop1889" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient2485">
-<stop id="stop2486" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop2487" offset="1.0000000" style="stop-color:#aaaaaa;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient2888">
-<stop id="stop2889" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop2894" offset="1" style="stop-color:#8ab3de;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient1610">
-<stop id="stop1611" offset="0.0000000" style="stop-color:#000000;stop-opacity:1" />
-<stop id="stop3053" offset="0.35076979" style="stop-color:#7f7f7f;stop-opacity:1" />
-<stop id="stop3054" offset="0.59668732" style="stop-color:#bfbfbf;stop-opacity:1" />
-<stop id="stop3055" offset="0.78382427" style="stop-color:#dfdfdf;stop-opacity:1" />
-<stop id="stop1612" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient500">
-<stop id="stop1007" offset="0.0000000" style="stop-color:#e7eaf0;stop-opacity:1" />
-<stop id="stop1008" offset="1.0000000" style="stop-color:#bacadd;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient700">
-<stop id="stop347" offset="0" style="stop-color:#376796;stop-opacity:1" />
-<stop id="stop348" offset="1.0000000" style="stop-color:#b0dde2;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient800">
-<stop id="stop998" offset="0" style="stop-color:#f3ff49;stop-opacity:1" />
-<stop id="stop999" offset="1" style="stop-color:#ffa01e;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient900">
-<stop id="stop1014" offset="0.0000000" style="stop-color:#e4ffa6;stop-opacity:1" />
-<stop id="stop1015" offset="1.0000000" style="stop-color:#3a7801;stop-opacity:1" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient5734" gradientTransform="translate(1.863401,-1.999999)" gradientUnits="userSpaceOnUse" y2="164.9546" x2="23.61528" y1="170.3782" x1="22.45293" id="linearGradient3628" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4935" gradientTransform="matrix(0.89781,0,0,0.89781,-0.81747,10.4227)" gradientUnits="userSpaceOnUse" y2="96.397" x2="-14.7622" y1="107.85" x1="-0.535315" id="linearGradient10520" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" gradientUnits="userSpaceOnUse" y2="240.354" x2="64.5183" y1="236.4112" x1="61.44776" id="linearGradient4005" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" gradientUnits="userSpaceOnUse" y2="243.4301" x2="62.51569" y1="239.1431" x1="59.4322" id="linearGradient4013" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="239.2758" x2="63.40303" y1="236" x1="58.95215" id="linearGradient4072" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="239.4902" x2="62.5" y1="235.1341" x1="59" id="linearGradient4080" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(0,0.0207681)" gradientUnits="userSpaceOnUse" y2="257.662" x2="14.32074" y1="251" x1="8" id="linearGradient4088" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="257.662" x2="14.32074" y1="251" x1="8" gradientUnits="userSpaceOnUse" id="linearGradient3208" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="186.1308" x2="-35.44985" y1="186.1107" x1="-43.56253" gradientTransform="matrix(0,1.686539,-1.016949,0,148.1771,249.4699)" gradientUnits="userSpaceOnUse" id="linearGradient6665" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(0,1.007194,-1.016949,0,148.1771,220.2629)" y2="187" x2="-30.05" y1="187" x1="-43.95" gradientUnits="userSpaceOnUse" id="linearGradient6667" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1.003713,0,0,1,0.163202,0)" gradientUnits="userSpaceOnUse" y2="187" x2="-30.05" y1="187" x1="-43.95" id="linearGradient7544" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="186.7495" x2="-34.24569" y1="183.3679" x1="-42.13395" gradientUnits="userSpaceOnUse" id="linearGradient7548" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" gradientTransform="translate(-0.96863,1.05455)" y2="182.3506" x2="-34.67712" y1="183.8118" x1="-33.56642" gradientUnits="userSpaceOnUse" id="linearGradient10560" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" gradientTransform="translate(-139.9686,15.05455)" gradientUnits="userSpaceOnUse" y2="166.1914" x2="110.1206" y1="163.4373" x1="107.9483" id="linearGradient10579" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient10585" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.173327,0.323606,-0.837131,0.448376,121.9729,116.365)" r="4.772141" fy="185.3796" fx="-39.00645" cy="185.3796" cx="-39.00645" id="radialGradient10597" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" gradientUnits="userSpaceOnUse" y2="215.9465" x2="143.2251" y1="214.8174" x1="148" id="linearGradient10641" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" gradientTransform="matrix(1.02198,0,0,1,-8.949568,-1)" gradientUnits="userSpaceOnUse" y2="264.6892" x2="366.0981" y1="261.2473" x1="361.7094" id="linearGradient11815" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3466" y2="126.5225" x2="338.0838" y1="117.2489" x1="337.1166" gradientTransform="rotate(-45,340.6656,118.1192)" gradientUnits="userSpaceOnUse" id="linearGradient11021" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.33896" x2="414.6234" y1="46.33899" x1="404.6787" gradientTransform="matrix(0.539989,0,0,0.883257,-125.2513,264.0607)" gradientUnits="userSpaceOnUse" id="linearGradient13469" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.33905" x2="415.1663" y1="46.33899" x1="404.6787" gradientTransform="matrix(0.666914,0,0,0.896427,-159.6137,266.4372)" gradientUnits="userSpaceOnUse" id="linearGradient13473" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.33901" x2="415.2005" y1="46.33899" x1="404.6787" gradientTransform="matrix(0.868799,0,0,0.896064,-239.3931,260.4497)" gradientUnits="userSpaceOnUse" id="linearGradient13477" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" gradientTransform="translate(41.00246,10.00003)" gradientUnits="userSpaceOnUse" y2="293" x2="76.13622" y1="293" x1="70" id="linearGradient14343" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5734" gradientUnits="userSpaceOnUse" y2="307.8311" x2="80.62299" y1="311.4508" x1="83.82937" id="linearGradient14389" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4528" y2="76.98393" x2="690" y1="67.59227" x1="705.2217" gradientTransform="matrix(1.124999,0,0,1.125,-85.22497,-7.125909)" gradientUnits="userSpaceOnUse" id="linearGradient18352" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="174.9393" x2="974.4352" y1="172.4419" x1="974.4352" gradientTransform="matrix(0.7,0,0,1,311.2,8.5)" gradientUnits="userSpaceOnUse" id="linearGradient5644" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="185" x2="992.7362" y1="181.5609" x1="994.1533" id="linearGradient5658" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5663" gradientTransform="translate(0.0706497,-0.23015)" gradientUnits="userSpaceOnUse" y2="179.1932" x2="990.5735" y1="185.1891" x1="989.8774" id="linearGradient5669" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="184.8026" x2="979.8044" y1="182.4686" x1="974.1975" gradientUnits="userSpaceOnUse" id="linearGradient5693" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="184.715" x2="974.5747" y1="178.9373" x1="967.739" gradientUnits="userSpaceOnUse" id="linearGradient5695" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="80.14188" x2="250.665" y1="73.65818" x1="256.8945" gradientTransform="matrix(0.939394,0,0,1,15.63564,3.573014)" gradientUnits="userSpaceOnUse" id="linearGradient11197" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="79.5" x2="269.5485" y1="79.5" x1="261.1073" gradientTransform="translate(0.514439,0.573014)" gradientUnits="userSpaceOnUse" id="linearGradient11210" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-0.0158611,0.0730141)" gradientUnits="userSpaceOnUse" y2="77.99037" x2="258.0151" y1="70.98074" x1="266.0303" id="linearGradient11286" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-0.0158611,0.0730141)" gradientUnits="userSpaceOnUse" y2="78.83605" x2="262.5385" y1="74.38268" x1="266.6476" id="linearGradient11294" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1,0,0,0.982332,-0.0158611,1.3452)" gradientUnits="userSpaceOnUse" y2="71.03742" x2="256.5" y1="69.71401" x1="261.0343" id="linearGradient11302" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" gradientUnits="userSpaceOnUse" y2="103.556" x2="275.4545" y1="95.67754" x1="270.1718" id="linearGradient11335" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient10585" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,1.033243,0,-3.241221)" r="7.520315" fy="95.72343" fx="269.9677" cy="95.72343" cx="269.9677" id="radialGradient11343" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="103.556" x2="275.4545" y1="95.67754" x1="270.1718" id="linearGradient11359" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1,0,0,0.940296,0,5.373155)" gradientUnits="userSpaceOnUse" y2="93.16346" x2="276.8255" y1="90" x1="271.2126" id="linearGradient11367" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="178.6575" x2="-33.69472" y1="187.863" x1="-37.33073" gradientTransform="matrix(0,1,-1.02198,0,139.2452,218.9968)" gradientUnits="userSpaceOnUse" id="linearGradient6573" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient900" y2="264.4648" x2="367.2651" y1="261.2473" x1="361.6976" gradientTransform="matrix(1.02198,0,0,1,-8.921317,-0.991053)" gradientUnits="userSpaceOnUse" id="linearGradient6662" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="178.6575" x2="-33.69472" y1="187.863" x1="-37.33073" gradientTransform="matrix(0,1,-1.02198,0,139.2735,219.0057)" gradientUnits="userSpaceOnUse" id="linearGradient6664" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" gradientUnits="userSpaceOnUse" y2="190.2341" x2="-41.62015" y1="183.1965" x1="-38.78242" id="linearGradient6672" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" gradientUnits="userSpaceOnUse" y2="183.8145" x2="-40.58511" y1="189.5493" x1="-42.30934" id="linearGradient6690" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" gradientTransform="matrix(1.003597,0,0,1,0.158094,0)" gradientUnits="userSpaceOnUse" y2="180.95" x2="-32.95787" y1="175.9331" x1="-34.94375" id="linearGradient6727" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="178.6575" x2="-33.69472" y1="187.863" x1="-37.33073" gradientTransform="rotate(90,-37.4946,182.5022)" gradientUnits="userSpaceOnUse" id="linearGradient6731" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="184.4165" x2="-32.04113" y1="186.8153" x1="-36.94574" gradientUnits="userSpaceOnUse" id="linearGradient6737" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="178.6575" x2="-33.69472" y1="187.863" x1="-37.33073" gradientTransform="rotate(90,-37.4946,182.5022)" gradientUnits="userSpaceOnUse" id="linearGradient6739" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1.003713,0,0,1,0.163202,0)" y2="187" x2="-30.05" y1="187" x1="-43.95" gradientUnits="userSpaceOnUse" id="linearGradient6743" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1.003597,0,0,1,0.158094,0)" y2="187" x2="-30.05" y1="187" x1="-43.95" gradientUnits="userSpaceOnUse" id="linearGradient6745" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4343" gradientTransform="translate(41.8634,-175.7596)" gradientUnits="userSpaceOnUse" y2="335.0308" x2="-10.52821" y1="332.0769" x1="-13.05958" id="linearGradient4349" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientTransform="matrix(1,0,0,0.973548,1.5,3.761392)" gradientUnits="userSpaceOnUse" y2="178.0223" x2="15.84741" y1="174.9419" x1="14.01976" id="linearGradient4360" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5734" gradientTransform="matrix(1,0,0,0.973548,1.5,3.761392)" gradientUnits="userSpaceOnUse" y2="175.9469" x2="13.84897" y1="177.4415" x1="15" id="linearGradient4369" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="30.79385" x2="917.3691" y1="19.21119" x1="904.083" gradientTransform="matrix(0.839788,0,0,0.88527,150.222,-1.762836)" gradientUnits="userSpaceOnUse" id="linearGradient5494" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="30.79385" x2="917.3691" y1="15.86083" x1="900.9927" gradientTransform="matrix(0.791429,0,0,0.832948,188.7144,-7.002499)" gradientUnits="userSpaceOnUse" id="linearGradient5506" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" gradientTransform="matrix(1,0,0,0.900774,0,8.915579)" gradientUnits="userSpaceOnUse" y2="88.23264" x2="499.0386" y1="83.8125" x1="494.3125" id="linearGradient5761" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient900" y2="266.8492" x2="368.4475" y1="259.1585" x1="359.5376" gradientTransform="matrix(1.270957,0,0,1.195374,110.6171,-279.6099)" gradientUnits="userSpaceOnUse" id="linearGradient6204" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" gradientUnits="userSpaceOnUse" y2="28.3706" x2="572.5851" y1="26.23856" x1="573.1181" id="linearGradient6220" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="38.68793" x2="575.8765" y1="24.52513" x1="558.0709" id="linearGradient6255" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="28.21831" x2="574.5176" y1="22.43135" x1="562.2006" id="linearGradient6263" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="34.17011" x2="570.1624" y1="26.23856" x1="566.2487" gradientUnits="userSpaceOnUse" id="linearGradient6330" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2888" y2="33.63204" x2="576.5" y1="28.64459" x1="574.6573" gradientTransform="translate(-6)" gradientUnits="userSpaceOnUse" id="linearGradient6332" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="120.5792" x2="98.37736" y1="120.625" x1="95.23788" gradientTransform="matrix(0.833333,0,0,1,7.291667,1.125)" gradientUnits="userSpaceOnUse" id="linearGradient4723" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="128.7048" x2="70.21282" y1="132.3595" x1="66.82119" gradientTransform="matrix(0.845944,0,0,1,30.52281,-4.619314)" gradientUnits="userSpaceOnUse" id="linearGradient4726" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5858" y2="120.8261" x2="73.44604" y1="122.5006" x1="64.94328" gradientTransform="matrix(0.845944,0,0,1,30.563,-0.625005)" gradientUnits="userSpaceOnUse" id="linearGradient4728" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" gradientUnits="userSpaceOnUse" y2="125.9596" x2="89.70349" y1="125.8732" x1="85.64042" id="linearGradient5476" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" gradientUnits="userSpaceOnUse" y2="118.8367" x2="89.00298" y1="120.6427" x1="85.86581" id="linearGradient5492" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2888" y2="41.695" x2="-21.25" y1="34.12175" x1="-26.25288" gradientTransform="translate(200,120)" gradientUnits="userSpaceOnUse" id="linearGradient5524" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2888" gradientUnits="userSpaceOnUse" y2="146.119" x2="172.708" y1="167.853" x1="182.981" id="linearGradient5536" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient16137" gradientTransform="translate(-474.994,-196)" y2="304.7992" x2="496.6998" y1="311.0814" x1="503.4623" gradientUnits="userSpaceOnUse" id="linearGradient14646" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient700" gradientTransform="translate(-474.994,-196)" y2="298.3802" x2="502.1328" y1="299.7858" x1="505.6819" gradientUnits="userSpaceOnUse" id="linearGradient14650" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-474.994,-196)" y2="301.2458" x2="503.2033" y1="296.2422" x1="494.7954" gradientUnits="userSpaceOnUse" id="linearGradient14652" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient14614" gradientTransform="translate(-474.994,-196)" y2="300.8249" x2="500.2523" y1="302.0055" x1="503.9067" gradientUnits="userSpaceOnUse" id="linearGradient14654" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="213.663" x2="15.9855" y1="219.5232" x1="19.47374" gradientTransform="matrix(0.75262,0,0,0.59916,3.63262,86.9905)" gradientUnits="userSpaceOnUse" id="linearGradient5679" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" gradientTransform="translate(-0.93075)" gradientUnits="userSpaceOnUse" y2="219.0135" x2="20.6591" y1="215.0097" x1="17.62746" id="linearGradient5694" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="304.5938" x2="454.2664" y1="293.7904" x1="448.7902" id="linearGradient5856" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5899" y2="172.6258" x2="129.2304" y1="154.3315" x1="113.1702" gradientUnits="userSpaceOnUse" id="linearGradient5907" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5899" gradientUnits="userSpaceOnUse" y2="180.112" x2="137.9319" y1="156.459" x1="115.927" id="linearGradient5915" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="167.5526" x2="123.9767" y1="149.3739" x1="113.7436" id="linearGradient6574" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="195.8891" x2="101.695" y1="191.0442" x1="98.53114" id="linearGradient6644" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.605" x2="18.58443" y1="205.4478" x1="11.87961" gradientTransform="matrix(1,0,0,0.570788,0,88.2556)" gradientUnits="userSpaceOnUse" id="linearGradient6666" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.7455" x2="17.09525" y1="218.5388" x1="19.64591" gradientTransform="matrix(1.066601,0,0,0.654301,-5.23183,65.54498)" gradientUnits="userSpaceOnUse" id="linearGradient6668" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.8375" x2="17.88475" y1="213.2477" x1="14.87326" gradientTransform="matrix(0.80275,0,0,0.392032,-0.364526,122.4629)" gradientUnits="userSpaceOnUse" id="linearGradient6670" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.605" x2="18.58443" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.300191,0,0,0.432481,-3.154508,116.6655)" gradientUnits="userSpaceOnUse" id="linearGradient6696" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="217.0041" x2="19.57123" y1="210.2974" x1="15.67863" gradientTransform="matrix(1.103365,0,0,0.199883,-4.736921,163.6837)" gradientUnits="userSpaceOnUse" id="linearGradient6700" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientTransform="matrix(1,0,0,1.133349,0,-27.33777)" y2="211.605" x2="18.58443" y1="205.4478" x1="11.87961" gradientUnits="userSpaceOnUse" id="linearGradient7596" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5734" y2="218.8141" x2="21.32992" y1="214.8097" x1="16.3967" gradientTransform="matrix(1,0,0,1.980119,-4.001611,-220.1696)" gradientUnits="userSpaceOnUse" id="linearGradient7598" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.8026" x2="17.49814" y1="214.5411" x1="15.64649" gradientTransform="matrix(0.752624,0,0,1.186414,0.561763,-47.91824)" gradientUnits="userSpaceOnUse" id="linearGradient7600" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.605" x2="18.58443" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.000669,344.0026,53.00302)" gradientUnits="userSpaceOnUse" id="linearGradient10394" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.0763" x2="16.76138" y1="218.8138" x1="20.71646" gradientTransform="matrix(1.165662,0,0,1.664561,338.7448,-99.07928)" gradientUnits="userSpaceOnUse" id="linearGradient10396" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.9876" x2="17.04738" y1="214.5411" x1="15.64649" gradientTransform="matrix(0.877306,0,0,0.997343,344.0641,45.72171)" gradientUnits="userSpaceOnUse" id="linearGradient10398" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="218.3974" x2="22.04275" y1="214.0084" x1="15.15684" gradientTransform="matrix(1.124777,0,0,1.798127,314.1438,-265.2068)" gradientUnits="userSpaceOnUse" id="linearGradient10434" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="218.8156" x2="20.98923" y1="215.0097" x1="17.48326" gradientTransform="matrix(1.165669,0,0,2.325584,313.3867,-379.6724)" gradientUnits="userSpaceOnUse" id="linearGradient10436" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="214.3821" x2="16.10928" y1="219.6944" x1="19.08596" gradientTransform="matrix(0.87731,0,0,1.393407,318.7061,-177.3687)" gradientUnits="userSpaceOnUse" id="linearGradient10438" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(7)" gradientUnits="userSpaceOnUse" y2="124.1941" x2="336.8484" y1="121.9937" x1="332.8779" id="linearGradient10450" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" gradientUnits="userSpaceOnUse" y2="37.90074" x2="201.2521" y1="26.49475" x1="192.9638" id="linearGradient10473" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="189.9042" x2="-39.0581" y1="186.0423" x1="-40.92714" id="linearGradient10481" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="184.1298" x2="-33.18686" y1="182.3336" x1="-34.91058" id="linearGradient10489" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" gradientUnits="userSpaceOnUse" y2="312.9608" x2="102.0417" y1="308.2066" x1="94.93215" id="linearGradient6001" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" gradientTransform="matrix(1,0,0,0.991519,0,2.569281)" gradientUnits="userSpaceOnUse" y2="313.3821" x2="124.8045" y1="306.5469" x1="118.5487" id="linearGradient6026" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" gradientUnits="userSpaceOnUse" y2="316" x2="119.9323" y1="311.0052" x1="114.0927" id="linearGradient6034" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.8799" x2="15.65274" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" gradientUnits="userSpaceOnUse" id="linearGradient6124" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.8796" x2="17.50228" y1="218.1055" x1="19.63879" gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" gradientUnits="userSpaceOnUse" id="linearGradient6126" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.7801" x2="18.5289" y1="212.9046" x1="15.38278" gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" gradientUnits="userSpaceOnUse" id="linearGradient6128" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="210.8717" x2="16.80415" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" gradientUnits="userSpaceOnUse" id="linearGradient6138" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.1112" x2="14.53613" y1="219.2215" x1="21.80956" gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" gradientUnits="userSpaceOnUse" id="linearGradient6140" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.2771" x2="17.98802" y1="214.6474" x1="16.35263" gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" gradientUnits="userSpaceOnUse" id="linearGradient6142" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3466" gradientUnits="userSpaceOnUse" y2="78.5" x2="258.9182" y1="80.00585" x1="256.3262" id="linearGradient6187" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.8799" x2="15.65274" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.249566,0,0,1.420757,477.3232,-211.4881)" gradientUnits="userSpaceOnUse" id="linearGradient6224" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.445" x2="16.37369" y1="219.0054" x1="21.88428" gradientTransform="matrix(1.332493,0,0,2.661873,470.7912,-492.2235)" gradientUnits="userSpaceOnUse" id="linearGradient6226" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.1995" x2="17.85282" y1="214.6697" x1="16.46609" gradientTransform="matrix(1.002867,0,0,1.594894,476.8719,-260.6659)" gradientUnits="userSpaceOnUse" id="linearGradient6228" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="90.93561" x2="497.2314" y1="83.41934" x1="490" id="linearGradient5598" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5734" gradientUnits="userSpaceOnUse" y2="21.16041" x2="279.4786" y1="25.25768" x1="283.9804" id="linearGradient5612" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="25.59215" x2="283.1054" y1="22.03839" x1="279.645" id="linearGradient5620" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="309.5" x2="81.92466" y1="306.8306" x1="79.59917" id="linearGradient5632" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(1,-1.24044)" gradientUnits="userSpaceOnUse" y2="169.5792" x2="21.9317" y1="167.0667" x1="19.57576" id="linearGradient5670" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5663" gradientTransform="rotate(-12.16379,92.75996,132.2011)" gradientUnits="userSpaceOnUse" y2="120.936" x2="87.87154" y1="124.9658" x1="94.05392" id="linearGradient6123" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="247.0562" x2="497.458" y1="250.0241" x1="500.0935" gradientTransform="rotate(-12.16378,-271.0474,2116.582)" gradientUnits="userSpaceOnUse" id="linearGradient6168" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="121.3373" x2="97.37693" y1="118.015" x1="94.58905" gradientTransform="matrix(0.97755,-0.210707,0.218379,1.013142,-30.17658,18.69473)" gradientUnits="userSpaceOnUse" id="linearGradient6170" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(0.30283,0.11441)" gradientUnits="userSpaceOnUse" y2="129.0092" x2="86.0206" y1="115.2534" x1="75.09241" id="linearGradient6189" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient700" y2="118.6402" x2="95.75075" y1="121.4717" x1="99.27937" gradientTransform="matrix(0.97755,-0.211918,0.218379,1.018965,-62.10329,4.028774)" gradientUnits="userSpaceOnUse" id="linearGradient6325" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" gradientTransform="matrix(1,0,0,1.005747,-443,-167.4216)" y2="275.9288" x2="498.0183" y1="278.6932" x1="501.3698" gradientUnits="userSpaceOnUse" id="linearGradient5228" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="279.6869" x2="501.1567" y1="276.5925" x1="497.1992" gradientTransform="matrix(1,0,0,1.005747,-444.4008,-168.4784)" gradientUnits="userSpaceOnUse" id="linearGradient5230" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="109.4688" x2="48.80305" y1="98.27665" x1="44.28383" id="linearGradient5436" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5774" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.6554" x2="18.82314" y1="219.9305" x1="20.21689" gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" gradientUnits="userSpaceOnUse" id="linearGradient5776" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.6793" x2="17.94699" y1="213.872" x1="15.74156" gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" gradientUnits="userSpaceOnUse" id="linearGradient5778" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5786" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.6554" x2="18.82314" y1="219.9305" x1="20.21689" gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" gradientUnits="userSpaceOnUse" id="linearGradient5788" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.6793" x2="17.94699" y1="213.872" x1="15.74156" gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" gradientUnits="userSpaceOnUse" id="linearGradient5790" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="218.6017" x2="20.61538" y1="212.6297" x1="13.84434" gradientTransform="matrix(0.751237,0,0,1.394996,1124.637,-101.6946)" gradientUnits="userSpaceOnUse" id="linearGradient3702" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="219.0135" x2="20.6591" y1="215.0097" x1="17.62746" gradientTransform="matrix(0.669342,0,0,1.655859,1126.157,-158.3099)" gradientUnits="userSpaceOnUse" id="linearGradient3704" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="213.663" x2="15.9855" y1="219.5232" x1="19.47374" gradientTransform="matrix(0.503763,0,0,0.992131,1129.211,-14.26594)" gradientUnits="userSpaceOnUse" id="linearGradient3706" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="218.6017" x2="20.61538" y1="212.6297" x1="13.84434" gradientTransform="matrix(1.123736,0,0,1.394996,1109.243,-88.69465)" gradientUnits="userSpaceOnUse" id="linearGradient3732" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="219.0135" x2="20.6591" y1="215.0097" x1="17.62746" gradientTransform="matrix(1.160002,0,0,1.655859,1108.567,-145.3099)" gradientUnits="userSpaceOnUse" id="linearGradient3734" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="213.663" x2="15.9855" y1="219.5232" x1="19.47374" gradientTransform="matrix(0.873045,0,0,0.992131,1113.859,-1.26599)" gradientUnits="userSpaceOnUse" id="linearGradient3736" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(209.9854,0.409827)" y2="38.28079" x2="333.0172" y1="34.56033" x1="330.3861" gradientUnits="userSpaceOnUse" id="linearGradient4736" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(209.9854,0.409827)" y2="39.12316" x2="339.5418" y1="33.54247" x1="335.4563" gradientUnits="userSpaceOnUse" id="linearGradient4738" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="254.2391" x2="359.6935" y1="269.269" x1="368.9123" gradientTransform="matrix(0.81842,0,0,0.200075,254.0602,-14.15959)" gradientUnits="userSpaceOnUse" id="linearGradient4740" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="259.7575" x2="360.5774" y1="265.3882" x1="366.4836" gradientTransform="matrix(0.181871,0,0,0.200075,474.8909,-14.15959)" gradientUnits="userSpaceOnUse" id="linearGradient4742" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(209.9854,0.409827)" y2="31.66687" x2="346" y1="29.13977" x1="344" gradientUnits="userSpaceOnUse" id="linearGradient4748" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="234.0031" x2="112.201" y1="221.0688" x1="101.0939" gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)" gradientUnits="userSpaceOnUse" id="linearGradient9254" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="188.4128" x2="176.8627" y1="157.8208" x1="144.0824" gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)" gradientUnits="userSpaceOnUse" id="linearGradient9256" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="1.491036" x2="223.9659" y1="15.97338" x1="206.4689" gradientTransform="matrix(1.006993,0,0,1,-1.456289,0.0155694)" gradientUnits="userSpaceOnUse" id="linearGradient6160" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient4528" r="8" fy="72.99935" fx="717.9988" cy="72.99935" cx="717.9988" gradientTransform="matrix(1.12634,-0.471221,0.445195,1.164731,-121.1975,328.3106)" gradientUnits="userSpaceOnUse" id="radialGradient4374" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6524" y2="28.96459" x2="843.9635" y1="45.30668" x1="860.239" gradientUnits="userSpaceOnUse" id="linearGradient3749" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6524" y2="28.96459" x2="843.9635" y1="45.30668" x1="860.239" gradientUnits="userSpaceOnUse" id="linearGradient3755" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2888" y2="153.3422" x2="176.0136" y1="167.8534" x1="182.9813" gradientUnits="userSpaceOnUse" id="linearGradient8492" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2888" y2="37.21967" x2="-23.22442" y1="34.12175" x1="-26.25288" gradientTransform="translate(200,120)" gradientUnits="userSpaceOnUse" id="linearGradient8494" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="120.5792" x2="98.37736" y1="120.625" x1="95.23788" gradientTransform="matrix(0.833333,0,0,1,7.291667,1.125)" gradientUnits="userSpaceOnUse" id="linearGradient8496" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="117.8514" x2="89.75233" y1="119.8891" x1="85.2589" gradientUnits="userSpaceOnUse" id="linearGradient8498" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5858" y2="117.4021" x2="75.1424" y1="123.2129" x1="65.27716" gradientTransform="matrix(0.845944,0,0,1,30.563,-0.625005)" gradientUnits="userSpaceOnUse" id="linearGradient8500" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="125.9596" x2="89.70349" y1="125.8732" x1="85.64042" gradientUnits="userSpaceOnUse" id="linearGradient8502" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4528" y2="246.8192" x2="683.847" y1="252.3578" x1="673.6465" gradientUnits="userSpaceOnUse" id="linearGradient8709" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4528" y2="251.9159" x2="678.7324" y1="256.0717" x1="671.7674" gradientUnits="userSpaceOnUse" id="linearGradient8711" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient4218" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient4220" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient4249" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient4251" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient5198" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5200" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="244.6786" x2="717.6032" y1="249.9805" x1="712.986" gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)" gradientUnits="userSpaceOnUse" id="linearGradient5218" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient12513" y2="712.1672" x2="61.99598" y1="715.7595" x1="64.60896" gradientUnits="userSpaceOnUse" id="linearGradient5220" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient5944" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5946" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.8799" x2="15.65274" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" gradientUnits="userSpaceOnUse" id="linearGradient5948" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.8796" x2="17.50228" y1="218.1055" x1="19.63879" gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" gradientUnits="userSpaceOnUse" id="linearGradient5950" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.1995" x2="17.85282" y1="212.7111" x1="14.85535" gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" gradientUnits="userSpaceOnUse" id="linearGradient5952" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="210.8717" x2="16.80415" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" gradientUnits="userSpaceOnUse" id="linearGradient5954" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="212.9507" x2="10.29425" y1="219.117" x1="21.80956" gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" gradientUnits="userSpaceOnUse" id="linearGradient5956" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.2771" x2="17.98802" y1="213.6587" x1="16.81461" gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" gradientUnits="userSpaceOnUse" id="linearGradient5958" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="264.6892" x2="366.0981" y1="261.2473" x1="361.7094" gradientTransform="matrix(1.02198,0,0,1,-306.8063,31.29639)" gradientUnits="userSpaceOnUse" id="linearGradient5960" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="178.6575" x2="-33.69472" y1="187.863" x1="-37.33073" gradientTransform="matrix(0,1,-1.02198,0,-158.6115,251.2932)" gradientUnits="userSpaceOnUse" id="linearGradient5962" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="264.6892" x2="366.0981" y1="261.2473" x1="361.7094" gradientTransform="matrix(1.02198,0,0,1,-307.3063,52.7964)" gradientUnits="userSpaceOnUse" id="linearGradient6122" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="178.6575" x2="-33.69472" y1="187.863" x1="-37.33073" gradientTransform="matrix(0,1,-1.02198,0,-159.1115,272.7932)" gradientUnits="userSpaceOnUse" id="linearGradient6125" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="212.9507" x2="10.29425" y1="219.117" x1="21.80956" gradientTransform="matrix(1.66352,0,0,3.319677,33.71939,-404.9123)" gradientUnits="userSpaceOnUse" id="linearGradient6146" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.2771" x2="17.98802" y1="213.6587" x1="16.81461" gradientTransform="matrix(1.252006,0,0,1.989026,41.31058,-116.1321)" gradientUnits="userSpaceOnUse" id="linearGradient6148" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="210.8717" x2="16.80415" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.49944,0,0,1.713117,42.76116,-42.5525)" gradientUnits="userSpaceOnUse" id="linearGradient6151" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.8796" x2="17.50228" y1="218.1055" x1="19.63879" gradientTransform="matrix(1.165662,0,0,1.995259,38.42262,-122.5159)" gradientUnits="userSpaceOnUse" id="linearGradient6154" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.1995" x2="17.85282" y1="212.7111" x1="14.85535" gradientTransform="matrix(0.877306,0,0,1.195484,43.74192,51.05256)" gradientUnits="userSpaceOnUse" id="linearGradient6156" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.8799" x2="15.65274" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.142472,43.68042,71.69251)" gradientUnits="userSpaceOnUse" id="linearGradient6159" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,180.9431,-216.2098)" gradientUnits="userSpaceOnUse" id="linearGradient6369" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.2251" y1="214.8174" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient6371" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.2251" y1="214.8174" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient6436" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(0.735355,0,0,0.733012,215.5241,-110.6465)" gradientUnits="userSpaceOnUse" id="linearGradient15119" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.2251" y1="214.8174" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient15121" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.2251" y1="214.8174" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient15135" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(0.533827,0,0,0.532126,226.8053,-40.17395)" gradientUnits="userSpaceOnUse" id="linearGradient15141" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" 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" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.2251" y1="214.8174" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient15213" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,215.9431,-248.2098)" gradientUnits="userSpaceOnUse" id="linearGradient4689" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4696" gradientTransform="matrix(0.898695,0,0,0.466666,34.08168,53.63336)" gradientUnits="userSpaceOnUse" y2="107.4082" x2="334.4963" y1="86.63547" x1="334.4035" id="linearGradient4703" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4709" y2="107.4082" x2="334.4963" y1="86.63547" x1="334.4035" gradientTransform="matrix(0.898695,0,0,0.933333,38.74835,6.266664)" gradientUnits="userSpaceOnUse" id="linearGradient4707" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4721" y2="107.4082" x2="334.4963" y1="86.63547" x1="334.4035" gradientTransform="matrix(0.898695,0,0,0.666666,43.41501,33.33337)" gradientUnits="userSpaceOnUse" id="linearGradient4718" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient5684" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5686" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-105,-15)" y2="213" x2="176" y1="213" x1="160" gradientUnits="userSpaceOnUse" id="linearGradient5692" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-105,-15)" y2="213.0785" x2="175.2934" y1="213" x1="160" gradientUnits="userSpaceOnUse" id="linearGradient5696" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient5728" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5730" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient5750" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5752" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="311.079" x2="698.2679" y1="303.7007" x1="693.279" gradientTransform="translate(-0.999998,-0.937496)" gradientUnits="userSpaceOnUse" id="linearGradient5777" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="311.8198" x2="696.8668" y1="306.0704" x1="693.4026" gradientTransform="translate(-0.999998,-0.937496)" gradientUnits="userSpaceOnUse" id="linearGradient5779" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="213" x2="176" y1="213" x1="160" gradientTransform="translate(-147.4999,-94.5)" gradientUnits="userSpaceOnUse" id="linearGradient5841" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="218.5416" x2="173.724" y1="209.1406" x1="163.8594" gradientTransform="matrix(1.102855,0,0,1.148517,-164.5451,-124.7814)" gradientUnits="userSpaceOnUse" id="linearGradient5844" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="217.2552" x2="173.0313" y1="207.7552" x1="161.2865" gradientTransform="matrix(1.102855,0,0,1.148517,-165.0966,-125.3557)" gradientUnits="userSpaceOnUse" id="linearGradient5846" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient4798" r="9.41594" fy="-2729.78" fx="-293.812" cy="-2729.78" cx="-293.812" gradientTransform="matrix(1.20758,0.0165454,0.27747,1.03554,1573.42,3294.03)" gradientUnits="userSpaceOnUse" id="radialGradient4365" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4935" gradientTransform="matrix(1.00712,0,0,1.00712,16.0574,-204.726)" y2="96.397" x2="-14.7622" y1="107.85" x1="-0.535315" gradientUnits="userSpaceOnUse" id="linearGradient4246" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" gradientTransform="matrix(1.062197,0,0,0.9973142,-1261.924,1.593331)" gradientUnits="userSpaceOnUse" y2="308.5" x2="536.5" y1="308.5" x1="522.991" id="linearGradient9331" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="214.0299" x2="1095.32" y1="180.8225" x1="1095.307" gradientTransform="matrix(0.9891733,0,0,0.9571849,-1182.248,9.280945)" gradientUnits="userSpaceOnUse" id="linearGradient4415" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="206.9573" x2="1095.32" y1="178.1412" x1="1095.32" gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.51422)" gradientUnits="userSpaceOnUse" id="linearGradient4428" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="213.1752" x2="1095.32" y1="180.1614" x1="1095.32" gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.2438)" gradientUnits="userSpaceOnUse" id="linearGradient4437" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="214.2806" x2="1095.32" y1="177.7928" x1="1095.32" gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.22875)" gradientUnits="userSpaceOnUse" id="linearGradient4447" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="209.1681" x2="1096.518" y1="181.3308" x1="1096.518" gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.2438)" gradientUnits="userSpaceOnUse" id="linearGradient4453" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="175.6769" x2="1095.32" y1="207.0233" x1="1095.32" gradientTransform="matrix(0.6644326,0,0,0.4062185,-764.818,107.4099)" gradientUnits="userSpaceOnUse" id="linearGradient4501" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="178.569" x2="1095.381" y1="203.0941" x1="1095.32" gradientTransform="matrix(0.6644326,0,0,-0.4062185,-764.818,258.5598)" gradientUnits="userSpaceOnUse" id="linearGradient4507" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="179.9122" x2="1095.32" y1="205.1863" x1="1095.32" gradientTransform="matrix(0.6644326,0,0,-0.4062185,-764.818,264.5598)" gradientUnits="userSpaceOnUse" id="linearGradient4521" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1610" y2="178.569" x2="1095.381" y1="203.0941" x1="1095.32" gradientTransform="matrix(0.6644326,0,0,0.4062185,-764.818,101.4099)" gradientUnits="userSpaceOnUse" id="linearGradient4523" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4826" gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" y2="509.0494" x2="354.9541" y1="500.7186" x1="368.343" gradientUnits="userSpaceOnUse" id="linearGradient5184" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4820" gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" y2="532.951" x2="348.706" y1="510.1404" x1="359.7146" gradientUnits="userSpaceOnUse" id="linearGradient5187" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient4832" gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" y2="481.6766" x2="373.9961" y1="508.1568" x1="348.706" gradientUnits="userSpaceOnUse" id="linearGradient5190" inkscape:collect="always" />
-<linearGradient id="linearGradient19967-4-5">
-<stop id="stop19969-37-6" offset="0" style="stop-color:#73d216" />
-<stop id="stop19971-1-4" offset="1.0000000" style="stop-color:#4e9a06;stop-opacity:1" />
-</linearGradient>
-<radialGradient inkscape:collect="always" xlink:href="#linearGradient19967-4-5" id="radialSnotBall" gradientUnits="userSpaceOnUse" cx="366.7874" cy="1670.756" fx="366.7874" fy="1670.756" r="4.275793" />
-<clipPath id="cieClip" clipPathUnits="userSpaceOnUse">
-<path style="fill:none;stroke:#000000;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 8.36,47.76 C 7.751574,47.51528 7.222277,46.90182 6.784323,46.39273 5.608271,45.02566 4.964826,43.30281 4.38,41.63 3.446394,38.95956 2.627116,36.19922 2.114165,33.41042 1.415792,29.6135 0.6129846,25.78424 0.3959804,21.94278 0.2093634,18.63925 -0.036735,15.09899 0.67,11.99 1.021272,10.44473 2.335229,8.406245 3.57,7.98 4.66602,7.601652 6.456945,8.746987 7.698531,9.504755 9.584304,10.65569 11.33779,12.01369 12.9958,13.4917 17.54131,17.54374 21.81301,21.89176 26.1391,26.17398 29.19235,29.19627 32.22777,32.23682 35.27,35.27 26.3,39.43333 17.33,43.59667 8.36,47.76 Z" id="path2430" sodipodi:nodetypes="cssssssssscc" inkscape:connector-curvature="0" />
-</clipPath>
-<radialGradient xlink:href="#linearGradient5724" r="11.5" fy="216.4737" fx="778" cy="216.4737" cx="778" gradientTransform="matrix(1,0,0,0.826087,0,38.17391)" gradientUnits="userSpaceOnUse" id="radialGradient8472" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient5724" r="11.5" fy="209.35" fx="777" cy="209.35" cx="777" gradientTransform="matrix(1.434932,0,0,0.608696,-337.9418,82.56952)" gradientUnits="userSpaceOnUse" id="radialGradient8474" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient8482" gradientUnits="userSpaceOnUse" y2="214.25" x2="783" y1="200.25" x1="770.5" id="linearGradient5633" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient8482" gradientUnits="userSpaceOnUse" y2="218.25" x2="782" y1="216.875" x1="763" id="linearGradient5637" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6206" id="linearGradient6212" x1="-15.4575" y1="94.60669" x2="-0.9575" y2="109.6067" gradientUnits="userSpaceOnUse" />
-<clipPath clipPathUnits="userSpaceOnUse" id="clipoutline1">
-<path id="outline1" d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 25.8,88.7 43.9,92.1 47.5,95.7 51.1,99.4 40.2,103.3 43.8,107 47.3,110.7 55.7,107.2 57.2,115.6 58.3,121.8 72.6,118.7 79,113.4 83,110 72.1,110 75.7,106.3 84.7,97.2 92.7,102.2 96,93.8 97.8,89.3 82.4,86.1 86.5,83.2 96.3,76.3 132.3,72.8 115.7,56.2 L 73,12.5 C 67.7,7.5 59,7.5 54.1,12.5 Z M 44.2,77.2 C 45.1,77.2 75,81.2 63.5,84.3 59.1,85.5 38.9,77.2 44.2,77.2 Z M 101.4,93.8 C 101.4,95.9 117.7,97.1 116.8,93.3 115.5,86.9 103.2,87.4 101.4,93.8 Z M 31.9,104.9 C 35.6,108.1 41.2,104.2 43,99.7 39.4,95 26.1,100 31.9,104.9 Z M 99.4,98.2 C 94.8,102.4 100.2,106.8 104.7,103.9 105.9,103.1 104.6,99.2 99.4,98.2 Z" inkscape:connector-curvature="0" />
-</clipPath>
-<linearGradient xlink:href="#WhiteTransparent" y2="76" x2="0" y1="128" x1="0" gradientUnits="userSpaceOnUse" id="linearGradient3731" inkscape:collect="always" />
-<linearGradient id="WhiteTransparent" gradientUnits="userSpaceOnUse">
-<stop style="stop-color:white;stop-opacity:1" offset="0" id="stop7" />
-<stop style="stop-color:white;stop-opacity:0" offset="1" id="stop9" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient3391" y2="40" x2="60" y1="20" x1="80" gradientUnits="userSpaceOnUse" id="linearGradient3733" inkscape:collect="always" />
-<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient3391">
-<stop id="stop3393" offset="0" style="stop-color:white;stop-opacity:1" />
-<stop id="stop3395" offset="1" style="stop-color:white;stop-opacity:0" />
-</linearGradient>
-<linearGradient xlink:href="#WhiteTransparent" y2="60" x2="58" y1="35" x1="33" gradientUnits="userSpaceOnUse" id="linearGradient3735" inkscape:collect="always" />
-<linearGradient xlink:href="#BlackTransparent" y2="64" x2="0" y1="128" x1="0" gradientUnits="userSpaceOnUse" id="linearGradient3737" inkscape:collect="always" />
-<linearGradient id="BlackTransparent" gradientUnits="userSpaceOnUse">
-<stop style="stop-color:black;stop-opacity:1" offset="0" id="stop12" />
-<stop style="stop-color:black;stop-opacity:0" offset="1" id="stop14" />
-</linearGradient>
-<linearGradient xlink:href="#WhiteTransparent" y2="50" x2="90" y1="20" x1="60" gradientUnits="userSpaceOnUse" id="linearGradient3739" inkscape:collect="always" />
-<linearGradient id="eraserFill">
-<stop id="stop5742_1" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop5744_1" offset="1.0000000" style="stop-color:#f3b698;stop-opacity:1" />
-</linearGradient>
-<linearGradient xlink:href="#eraserFill" y2="234.0031" x2="112.201" y1="221.0688" x1="101.0939" gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)" gradientUnits="userSpaceOnUse" id="linearGradient7424" inkscape:collect="always" />
-<linearGradient xlink:href="#eraserFill" y2="188.4128" x2="176.8627" y1="157.8208" x1="144.0824" gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)" gradientUnits="userSpaceOnUse" id="linearGradient7426" inkscape:collect="always" />
-<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5905">
-<rect style="color:#000000;display:inline;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.3344132;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" id="rect5907" width="11.98896" height="11.88748" x="375.8356" y="138.7635" />
-</clipPath>
-<linearGradient xlink:href="#linearGradient5704" y2="167.5526" x2="123.9767" y1="149.3739" x1="113.7436" gradientUnits="userSpaceOnUse" id="linearGradient5389" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5734" y2="21.16041" x2="279.4786" y1="25.25768" x1="283.9804" gradientUnits="userSpaceOnUse" id="linearGradient5391" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="25.59215" x2="283.1054" y1="22.03839" x1="279.645" gradientUnits="userSpaceOnUse" id="linearGradient5393" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.605" x2="18.58443" y1="205.4478" x1="11.87961" gradientTransform="matrix(1,0,0,0.570788,0,88.25561)" gradientUnits="userSpaceOnUse" id="linearGradient5609" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.7454" x2="17.68847" y1="221.1125" x1="19.51159" gradientTransform="matrix(0.997569,0,0,0.654301,-3.963176,65.55004)" gradientUnits="userSpaceOnUse" id="linearGradient5611" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="222.8609" x2="17.28477" y1="213.2477" x1="14.87326" gradientTransform="matrix(0.750795,0,0,0.392032,0.589107,122.468)" gradientUnits="userSpaceOnUse" id="linearGradient5613" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5663" y2="521.0983" x2="36.86864" y1="509.9999" x1="26.00001" gradientTransform="translate(937,-210.9999)" gradientUnits="userSpaceOnUse" id="linearGradient5617" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="174.9988" x2="-40.94155" y1="192.3364" x1="-29" gradientTransform="translate(714.9212,-135)" gradientUnits="userSpaceOnUse" id="linearGradient5619" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.9016" x2="16.94643" y1="219.0517" x1="22.00903" gradientTransform="matrix(1,0,0,1.66306,-4.001611,-151.8935)" gradientUnits="userSpaceOnUse" id="linearGradient5677" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.8026" x2="17.49814" y1="213.2351" x1="14.82746" gradientTransform="matrix(0.752624,0,0,0.996445,0.561763,-7.22312)" gradientUnits="userSpaceOnUse" id="linearGradient5680" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="260.2477" x2="361.7339" y1="264.553" x1="365.2316" gradientTransform="matrix(0.455219,0,0,0.501233,377.5466,-100.7998)" gradientUnits="userSpaceOnUse" id="linearGradient5682" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="32.71318" x2="544.95" y1="27.95536" x1="542.1904" gradientTransform="matrix(0.997993,0,0,0.99958,1.061475,-0.0495296)" gradientUnits="userSpaceOnUse" id="linearGradient5685" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="85.67345" x2="495.948" y1="74.94392" x1="482.6295" gradientUnits="userSpaceOnUse" id="linearGradient5687" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient10585" y2="78.52254" x2="493.3302" y1="77.8489" x1="491.4307" gradientUnits="userSpaceOnUse" id="linearGradient5689" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="29.51806" x2="276.8348" y1="24.09611" x1="272.9582" gradientTransform="translate(0.5,1.547499)" gradientUnits="userSpaceOnUse" id="linearGradient5766" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="28.99122" x2="278.5278" y1="24.1533" x1="273.1214" gradientTransform="translate(0,0.047499)" gradientUnits="userSpaceOnUse" id="linearGradient5768" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="184.8026" x2="979.8044" y1="182.4686" x1="974.1975" gradientUnits="userSpaceOnUse" id="linearGradient5770" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="184.6266" x2="977.4031" y1="180.7934" x1="967.6506" gradientUnits="userSpaceOnUse" id="linearGradient5772" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient500" y2="182.083" x2="979.2319" y1="178.0314" x1="968.2573" gradientTransform="translate(0,-7)" gradientUnits="userSpaceOnUse" id="linearGradient5775" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="184.715" x2="974.5747" y1="178.9373" x1="967.739" gradientTransform="translate(0,-7)" gradientUnits="userSpaceOnUse" id="linearGradient5780" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="178.5336" x2="964.1427" y1="180" x1="974.6495" gradientTransform="translate(0,-2)" gradientUnits="userSpaceOnUse" id="linearGradient5782" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="181.0888" x2="976.5202" y1="177.3404" x1="966.5179" gradientTransform="translate(0,-2)" gradientUnits="userSpaceOnUse" id="linearGradient5784" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="184.8026" x2="979.8044" y1="182.4686" x1="974.1975" gradientUnits="userSpaceOnUse" id="linearGradient5787" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="181.7098" x2="977.9335" y1="178.3186" x1="968.8881" gradientUnits="userSpaceOnUse" id="linearGradient5789" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient5791" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5793" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="218.5416" x2="173.724" y1="209.1406" x1="163.8594" gradientTransform="matrix(1.102855,0,0,1.148517,-167.5042,-41.73143)" gradientUnits="userSpaceOnUse" id="linearGradient5795" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="217.2552" x2="173.0313" y1="207.7552" x1="161.2865" gradientTransform="matrix(1.102855,0,0,1.148517,-168.0557,-42.30568)" gradientUnits="userSpaceOnUse" id="linearGradient5797" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="213" x2="176" y1="213" x1="160" gradientTransform="translate(-150.459,-11.45)" gradientUnits="userSpaceOnUse" id="linearGradient5799" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.605" x2="18.58443" y1="205.4478" x1="11.87961" gradientTransform="matrix(1,0,0,0.570788,0,88.25561)" gradientUnits="userSpaceOnUse" id="linearGradient5801" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.7454" x2="17.68847" y1="218.2885" x1="20.1778" gradientTransform="matrix(0.997569,0,0,0.654301,-3.963176,65.55004)" gradientUnits="userSpaceOnUse" id="linearGradient5803" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.8375" x2="17.88475" y1="213.2477" x1="14.87326" gradientTransform="matrix(0.750795,0,0,0.392032,0.589107,122.468)" gradientUnits="userSpaceOnUse" id="linearGradient5805" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="211.8799" x2="15.65274" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" gradientUnits="userSpaceOnUse" id="linearGradient5807" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.8796" x2="17.50228" y1="218.1055" x1="19.63879" gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" gradientUnits="userSpaceOnUse" id="linearGradient5809" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.1995" x2="17.85282" y1="212.7111" x1="14.85535" gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" gradientUnits="userSpaceOnUse" id="linearGradient5811" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="210.8717" x2="16.80415" y1="205.4478" x1="11.87961" gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" gradientUnits="userSpaceOnUse" id="linearGradient5813" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="212.9507" x2="10.29425" y1="219.117" x1="21.80956" gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" gradientUnits="userSpaceOnUse" id="linearGradient5815" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="218.2771" x2="17.98802" y1="213.6587" x1="16.81461" gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" gradientUnits="userSpaceOnUse" id="linearGradient5817" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="210.5" x2="111.6865" y1="210.5" x1="99.31348" gradientUnits="userSpaceOnUse" id="linearGradient5819" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="206.9966" x2="101.1929" y1="215.4819" x1="108.3513" gradientUnits="userSpaceOnUse" id="linearGradient5821" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="212.9901" x2="108.8156" y1="205.192" x1="101.7507" gradientUnits="userSpaceOnUse" id="linearGradient5823" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="218.3974" x2="22.04275" y1="214.0084" x1="15.15684" gradientTransform="matrix(1.124777,0,0,1.399469,339.507,-41.54364)" gradientUnits="userSpaceOnUse" id="linearGradient5825" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="218.8156" x2="20.98923" y1="215.0097" x1="17.48326" gradientTransform="matrix(1.165669,0,0,1.655559,338.7499,-97.1359)" gradientUnits="userSpaceOnUse" id="linearGradient5827" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="214.3821" x2="16.10928" y1="219.6944" x1="19.08596" gradientTransform="matrix(0.87731,0,0,0.991952,344.0693,46.88201)" gradientUnits="userSpaceOnUse" id="linearGradient5829" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="179.493" x2="-24.43123" y1="179.493" x1="-47.74164" gradientTransform="matrix(1,0,0,0.957993,-0.0384184,13.49742)" gradientUnits="userSpaceOnUse" id="linearGradient5831" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="181.0886" x2="-29.50463" y1="181.0886" x1="-44.41746" gradientTransform="matrix(1,0,0,0.963346,-0.0384184,12.50071)" gradientUnits="userSpaceOnUse" id="linearGradient5833" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="175.9908" x2="-29.01316" y1="175.9908" x1="-37.77876" gradientTransform="translate(-8.989043)" gradientUnits="userSpaceOnUse" id="linearGradient5835" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="179.493" x2="-27.0385" y1="179.493" x1="-48.42912" gradientTransform="matrix(1,0,0,0.957993,0,7.509185)" gradientUnits="userSpaceOnUse" id="linearGradient5837" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="181.645" x2="-29.63546" y1="181.5494" x1="-44.36454" gradientTransform="matrix(1,0,0,0.963346,0,6.51247)" gradientUnits="userSpaceOnUse" id="linearGradient5839" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="181.9908" x2="-29.00001" y1="181.9908" x1="-37.50076" gradientTransform="matrix(1.592997,0,0,1,11.72818,4)" gradientUnits="userSpaceOnUse" id="linearGradient5842" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="255.5" x2="12.50002" y1="249.821" x1="10.19293" gradientUnits="userSpaceOnUse" id="linearGradient5845" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="255.5312" x2="12.53125" y1="251.0312" x1="9.03125" gradientUnits="userSpaceOnUse" id="linearGradient5847" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="221.6924" x2="20.35862" y1="214.0084" x1="15.15684" gradientTransform="matrix(0.625152,0,0,1.007875,-0.61217,35.29459)" gradientUnits="userSpaceOnUse" id="linearGradient5849" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="217.0116" x2="19.15613" y1="215.6721" x1="17.07591" gradientTransform="matrix(0.501399,0,0,1.00217,1.674173,36.50449)" gradientUnits="userSpaceOnUse" id="linearGradient5851" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="215.4618" x2="16.23219" y1="220.3433" x1="19.76252" gradientTransform="matrix(0.377364,0,0,0.600465,3.962295,123.6837)" gradientUnits="userSpaceOnUse" id="linearGradient5853" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient2888" r="7.469679" fy="153.063" fx="171.7755" cy="153.063" cx="171.7755" gradientTransform="matrix(1.122233,1.252981,-2.05495,1.830229,297.3402,-339.2527)" gradientUnits="userSpaceOnUse" id="radialGradient5855" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="138.5" x2="36.18673" y1="132.9464" x1="31.37247" gradientUnits="userSpaceOnUse" id="linearGradient5857" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="137.4738" x2="42.18301" y1="137.5165" x1="34.5194" gradientTransform="translate(-1.5,7.5244)" gradientUnits="userSpaceOnUse" id="linearGradient5859" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7772" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7778" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7780" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7786" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7788" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7794" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7796" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7802" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7804" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7810" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7812" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7818" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7820" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7826" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7828" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7834" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient7836" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.0941" cy="137.9821" cx="375.0941" id="radialGradient7842" inkscape:collect="always" />
-<linearGradient id="linearGradient2485-9">
-<stop id="stop2486-3" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop2487-1" offset="1.0000000" style="stop-color:#aaaaaa;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient3480-8">
-<stop id="stop3482-9" offset="0.0000000" style="stop-color:#646464;stop-opacity:1" />
-<stop id="stop3484-6" offset="1.0000000" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient2485-9" inkscape:collect="always" id="linearGradient6465" gradientUnits="userSpaceOnUse" x1="61.44776" y1="236.4112" x2="64.5183" y2="240.354" gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)" />
-<linearGradient xlink:href="#linearGradient3480-8" inkscape:collect="always" id="linearGradient6467" gradientUnits="userSpaceOnUse" x1="59" y1="235.1341" x2="62.5" y2="239.4902" gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)" />
-<linearGradient xlink:href="#linearGradient5704" y2="183.3223" x2="117.8272" y1="174.4991" x1="110" gradientTransform="matrix(1.004126,0,0,0.991974,339.8742,1.209495)" gradientUnits="userSpaceOnUse" id="linearGradient5936" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6679" y2="178.0064" x2="452.4859" y1="187.2543" x1="456.7332" gradientTransform="matrix(0.9975701,0,0,1.002994,1.42143,-0.2844345)" gradientUnits="userSpaceOnUse" id="linearGradient5939" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6679" y2="180.2034" x2="454.0355" y1="190.8572" x1="464.5001" gradientTransform="matrix(0.9975701,0,0,1.002994,1.42143,-0.2844345)" gradientUnits="userSpaceOnUse" id="linearGradient5941" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6679-6" gradientUnits="userSpaceOnUse" y2="191.2326" x2="98.80204" y1="197.6577" x1="102.7218" id="linearGradient6636-2" inkscape:collect="always" />
-<linearGradient id="linearGradient6679-6">
-<stop style="stop-color:#ffeb74;stop-opacity:1" offset="0" id="stop6681-6" />
-<stop style="stop-color:#ffffff;stop-opacity:1" offset="1" id="stop6683-7" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient6679-6" gradientUnits="userSpaceOnUse" y2="190.2852" x2="99.93163" y1="199.9722" x1="109.2829" id="linearGradient6625-4" inkscape:collect="always" />
-<radialGradient xlink:href="#linearGradient5602" r="0.75" fy="222.75" fx="842.7534" cy="222.75" cx="842.25" gradientTransform="matrix(1,0,0,1.666667,0,-148.5)" gradientUnits="userSpaceOnUse" id="radialGradient5496" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" gradientUnits="userSpaceOnUse" id="linearGradient5769" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.0088" x2="18.70757" y1="218.5568" x1="20.10132" gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" gradientUnits="userSpaceOnUse" id="linearGradient5771" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="220.3475" x2="18.5289" y1="213.6631" x1="15.24248" gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" gradientUnits="userSpaceOnUse" id="linearGradient5773" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" gradientUnits="userSpaceOnUse" id="linearGradient5781" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5899" y2="215.0088" x2="18.70757" y1="218.5568" x1="20.10132" gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" gradientUnits="userSpaceOnUse" id="linearGradient5783" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5899" y2="220.3475" x2="18.5289" y1="213.6631" x1="15.24248" gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" gradientUnits="userSpaceOnUse" id="linearGradient5785" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" gradientUnits="userSpaceOnUse" id="linearGradient5792" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6679" y2="217.8534" x2="19.32815" y1="215.1325" x1="18.13082" gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" gradientUnits="userSpaceOnUse" id="linearGradient5794" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6679" y2="212.9197" x2="16.01938" y1="217.4612" x1="18.52884" gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" gradientUnits="userSpaceOnUse" id="linearGradient5796" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" gradientUnits="userSpaceOnUse" id="linearGradient5798" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.0088" x2="18.70757" y1="218.5568" x1="20.10132" gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" gradientUnits="userSpaceOnUse" id="linearGradient5800" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="220.3475" x2="18.5289" y1="213.6631" x1="15.24248" gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" gradientUnits="userSpaceOnUse" id="linearGradient5802" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.376547,0,0,0.715004,987.5221,390.567)" gradientUnits="userSpaceOnUse" id="linearGradient5804" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.0088" x2="18.70757" y1="218.5568" x1="20.10132" gradientTransform="matrix(2.832796,0,0,1.012546,969.5753,320.266)" gradientUnits="userSpaceOnUse" id="linearGradient5806" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="220.3475" x2="18.5289" y1="213.6631" x1="15.24248" gradientTransform="matrix(2.13203,0,0,0.606678,982.5022,408.3478)" gradientUnits="userSpaceOnUse" id="linearGradient5808" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.876376,0,0,0.566024,994.7794,429.2398)" gradientUnits="userSpaceOnUse" id="linearGradient5810" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.0088" x2="18.70757" y1="218.5568" x1="20.10132" gradientTransform="matrix(2.163766,0,0,0.677519,981.9622,400.4873)" gradientUnits="userSpaceOnUse" id="linearGradient5812" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="220.3475" x2="18.5289" y1="213.6631" x1="15.24248" gradientTransform="matrix(1.628503,0,0,0.405944,991.836,459.4251)" gradientUnits="userSpaceOnUse" id="linearGradient5814" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.760936,0,0,0.714541,964.9956,383.6551)" gradientUnits="userSpaceOnUse" id="linearGradient5816" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.0088" x2="18.70757" y1="218.5568" x1="20.10132" gradientTransform="matrix(1.999772,0,0,0.998752,953.4881,316.2596)" gradientUnits="userSpaceOnUse" id="linearGradient5818" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="220.3475" x2="18.5289" y1="213.6631" x1="15.24248" gradientTransform="matrix(1.505077,0,0,0.598412,962.6137,403.1414)" gradientUnits="userSpaceOnUse" id="linearGradient5820" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5519" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.6554" x2="18.82314" y1="219.9305" x1="20.21689" gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" gradientUnits="userSpaceOnUse" id="linearGradient5521" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.6793" x2="17.94699" y1="213.872" x1="15.74156" gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" gradientUnits="userSpaceOnUse" id="linearGradient5523" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.750568,0,0,1.002646,-133.3919,-18.49926)" gradientUnits="userSpaceOnUse" id="linearGradient5525" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.2099" x2="17.75236" y1="218.9795" x1="18.84686" gradientTransform="matrix(3.333119,0,0,1.671823,-155.1792,-171.7462)" gradientUnits="userSpaceOnUse" id="linearGradient5527" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="217.8234" x2="17.31054" y1="213.2164" x1="16.04734" gradientTransform="matrix(2.508587,0,0,1.001693,-139.9689,-26.31358)" gradientUnits="userSpaceOnUse" id="linearGradient5529" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="218.6017" x2="20.61538" y1="212.6297" x1="13.84434" gradientTransform="matrix(0.751237,0,0,1.001998,-38.40231,-39.41679)" gradientUnits="userSpaceOnUse" id="linearGradient5531" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="219.0135" x2="20.6591" y1="215.0097" x1="17.62746" gradientTransform="matrix(0.669342,0,0,1.001998,-36.88229,-39.41679)" gradientUnits="userSpaceOnUse" id="linearGradient5533" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient6684" y2="213.663" x2="15.9855" y1="219.5232" x1="19.47374" gradientTransform="matrix(0.503763,0,0,0.600361,-33.82784,47.74752)" gradientUnits="userSpaceOnUse" id="linearGradient5535" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.373757,0,0,0.715969,-52.92573,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5537" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.6554" x2="18.82314" y1="219.9305" x1="20.21689" gradientTransform="matrix(1.537676,0,0,1.000883,-61.45158,-22.13894)" gradientUnits="userSpaceOnUse" id="linearGradient5539" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.6793" x2="17.94699" y1="213.872" x1="15.74156" gradientTransform="matrix(1.157292,0,0,0.59969,-54.4347,64.92824)" gradientUnits="userSpaceOnUse" id="linearGradient5541" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.125329,0,0,1.002646,-66.82105,-25.5096)" gradientUnits="userSpaceOnUse" id="linearGradient5543" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.2099" x2="17.75236" y1="218.9795" x1="18.84686" gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" gradientUnits="userSpaceOnUse" id="linearGradient5545" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="217.8234" x2="17.31054" y1="213.2164" x1="16.04734" gradientTransform="matrix(1.88093,0,0,1.001693,-70.83858,-33.32392)" gradientUnits="userSpaceOnUse" id="linearGradient5547" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.114324,0,0,1.002646,-47.33758,-30.1841)" gradientUnits="userSpaceOnUse" id="linearGradient5549" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.5512" x2="17.15024" y1="218.8883" x1="18.50864" gradientTransform="matrix(2.026443,0,0,1.557511,-54.13118,-158.6166)" gradientUnits="userSpaceOnUse" id="linearGradient5551" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.4184" x2="19.38252" y1="213.872" x1="15.74156" gradientTransform="matrix(1.525151,0,0,0.933201,-44.88385,-23.1282)" gradientUnits="userSpaceOnUse" id="linearGradient5553" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5204" y2="92.00739" x2="17.62963" y1="86.26574" x1="13.47978" gradientUnits="userSpaceOnUse" id="linearGradient5555" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="190.6634" x2="-31.90349" y1="182.984" x1="-36.60167" gradientTransform="matrix(0.979208,0,0,1.000037,-0.74827,-0.0068457)" gradientUnits="userSpaceOnUse" id="linearGradient5557" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="190.6634" x2="-31.90349" y1="182.984" x1="-36.60167" gradientTransform="matrix(0.979208,0,0,1.000037,-0.74827,-0.0068457)" gradientUnits="userSpaceOnUse" id="linearGradient5559" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.379581,0,0,0.714792,-52.98861,39.49312)" gradientUnits="userSpaceOnUse" id="linearGradient5561" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.6554" x2="18.82314" y1="219.9305" x1="20.21689" gradientTransform="matrix(1.540284,0,0,0.860045,-61.50452,2.251502)" gradientUnits="userSpaceOnUse" id="linearGradient5563" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.6793" x2="17.94699" y1="213.872" x1="15.74156" gradientTransform="matrix(1.159256,0,0,0.515305,-54.47574,77.06717)" gradientUnits="userSpaceOnUse" id="linearGradient5565" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.128037,0,0,0.860357,-56.33685,-3.243876)" gradientUnits="userSpaceOnUse" id="linearGradient5567" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.2099" x2="17.75236" y1="218.9795" x1="18.84686" gradientTransform="matrix(1.171839,0,0,1.346914,-61.66084,-115.7031)" gradientUnits="userSpaceOnUse" id="linearGradient5569" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="217.8234" x2="17.31054" y1="213.2164" x1="16.04734" gradientTransform="matrix(0.881955,0,0,0.807019,-56.31336,1.465486)" gradientUnits="userSpaceOnUse" id="linearGradient5571" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.125329,0,0,0.860357,-66.82105,3.798256)" gradientUnits="userSpaceOnUse" id="linearGradient5573" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.2099" x2="17.75236" y1="218.9795" x1="18.84686" gradientTransform="matrix(2.499161,0,0,1.346914,-82.24308,-108.661)" gradientUnits="userSpaceOnUse" id="linearGradient5575" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="217.8234" x2="17.31054" y1="213.2164" x1="16.04734" gradientTransform="matrix(1.88093,0,0,0.807019,-70.83858,8.507618)" gradientUnits="userSpaceOnUse" id="linearGradient5577" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5579" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.0088" x2="18.70757" y1="218.5568" x1="20.10132" gradientTransform="matrix(1.588886,0,0,1.000747,-62.51619,-22.10887)" gradientUnits="userSpaceOnUse" id="linearGradient5581" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="220.3475" x2="18.5289" y1="213.6631" x1="15.24248" gradientTransform="matrix(1.195834,0,0,0.599608,-55.26563,64.94646)" gradientUnits="userSpaceOnUse" id="linearGradient5583" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="190.6634" x2="-31.90349" y1="182.984" x1="-36.60167" gradientUnits="userSpaceOnUse" id="linearGradient5585" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.635962,0,0,1.002646,-132.1469,-17.5056)" gradientUnits="userSpaceOnUse" id="linearGradient5599" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="215.2099" x2="17.75236" y1="218.9795" x1="18.84686" gradientTransform="matrix(3.19424,0,0,1.671823,-153.0264,-170.7525)" gradientUnits="userSpaceOnUse" id="linearGradient5601" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="217.8234" x2="17.31054" y1="213.2164" x1="16.04734" gradientTransform="matrix(2.404063,0,0,1.001693,-138.4499,-25.31992)" gradientUnits="userSpaceOnUse" id="linearGradient5603" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="190.6634" x2="-31.90349" y1="182.984" x1="-36.60167" gradientTransform="matrix(0.761633,0,0,0.73832,-7.689547,50.44869)" gradientUnits="userSpaceOnUse" id="linearGradient5605" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="-34.57729" x2="185.5131" y1="-32.76031" x1="191.4072" gradientUnits="userSpaceOnUse" id="linearGradient5607" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="-32.76031" x2="187.8951" y1="-35.83336" x1="184.7529" gradientUnits="userSpaceOnUse" id="linearGradient5610" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.275458,0,0,0.617087,-51.07375,65.67334)" gradientUnits="userSpaceOnUse" id="linearGradient5614" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.6554" x2="18.82314" y1="219.9305" x1="20.21689" gradientTransform="matrix(1.427647,0,0,0.862651,-58.98949,7.443876)" gradientUnits="userSpaceOnUse" id="linearGradient5616" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.6793" x2="17.94699" y1="213.872" x1="15.74156" gradientTransform="matrix(1.074481,0,0,0.516867,-52.4747,82.48618)" gradientUnits="userSpaceOnUse" id="linearGradient5618" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.122046,0,0,1.141686,1256.157,85.12902)" gradientUnits="userSpaceOnUse" id="linearGradient5727" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.5512" x2="17.15024" y1="218.8883" x1="18.50864" gradientTransform="matrix(1.166116,0,0,1.996022,1250.853,-109.4101)" gradientUnits="userSpaceOnUse" id="linearGradient5729" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.4184" x2="19.38252" y1="213.872" x1="15.74156" gradientTransform="matrix(0.877647,0,0,1.195941,1256.174,64.2245)" gradientUnits="userSpaceOnUse" id="linearGradient5731" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.5512" x2="17.15024" y1="218.8883" x1="18.50864" gradientTransform="matrix(3.497619,0,0,4.978934,852.2632,-828.4634)" gradientUnits="userSpaceOnUse" id="linearGradient5733" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.4184" x2="19.38252" y1="213.872" x1="15.74156" gradientTransform="matrix(2.632392,0,0,2.983189,868.2229,-395.3445)" gradientUnits="userSpaceOnUse" id="linearGradient5735" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(2.873378,0,0,2.426599,875.3153,-255.174)" gradientUnits="userSpaceOnUse" id="linearGradient5737" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.122046,0,0,1.141686,1256.157,85.12902)" gradientUnits="userSpaceOnUse" id="linearGradient5739" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.5512" x2="17.15024" y1="218.8883" x1="18.50864" gradientTransform="matrix(1.166116,0,0,2.310495,1250.853,-177.6338)" gradientUnits="userSpaceOnUse" id="linearGradient5741" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.4184" x2="19.38252" y1="213.872" x1="15.74156" gradientTransform="matrix(0.877647,0,0,1.384362,1256.174,23.35694)" gradientUnits="userSpaceOnUse" id="linearGradient5743" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.5512" x2="17.15024" y1="218.8883" x1="18.50864" gradientTransform="matrix(1.845525,0,0,3.663228,882.7464,-542.9603)" gradientUnits="userSpaceOnUse" id="linearGradient5745" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.4184" x2="19.38252" y1="213.872" x1="15.74156" gradientTransform="matrix(1.388986,0,0,2.194866,891.1676,-224.2946)" gradientUnits="userSpaceOnUse" id="linearGradient5747" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.633329,0,0,1.857722,893.2793,-136.2796)" gradientUnits="userSpaceOnUse" id="linearGradient5749" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.5512" x2="17.15024" y1="218.8883" x1="18.50864" gradientTransform="matrix(1.845525,0,0,3.663228,882.7464,-542.9603)" gradientUnits="userSpaceOnUse" id="linearGradient5751" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.4184" x2="19.38252" y1="213.872" x1="15.74156" gradientTransform="matrix(1.388986,0,0,2.194866,891.1676,-224.2946)" gradientUnits="userSpaceOnUse" id="linearGradient5753" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.633329,0,0,1.857722,893.2793,-136.2796)" gradientUnits="userSpaceOnUse" id="linearGradient5755" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.874592,0,0,1.427199,885.7444,-52.79294)" gradientUnits="userSpaceOnUse" id="linearGradient5757" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="214.5512" x2="17.15024" y1="218.8883" x1="18.50864" gradientTransform="matrix(2.163921,0,0,2.660263,872.8832,-331.8032)" gradientUnits="userSpaceOnUse" id="linearGradient5759" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="219.4184" x2="19.38252" y1="213.872" x1="15.74156" gradientTransform="matrix(1.62862,0,0,1.593929,882.7572,-100.3862)" gradientUnits="userSpaceOnUse" id="linearGradient5762" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="209.2774" x2="14.01084" y1="203.3658" x1="10.04167" gradientTransform="matrix(1.629558,0,0,0.429186,88.20441,232.3331)" gradientUnits="userSpaceOnUse" id="linearGradient5764" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="220.3475" x2="18.5289" y1="213.6631" x1="15.24248" gradientTransform="matrix(1.387116,0,0,0.200828,86.1208,278.4604)" gradientUnits="userSpaceOnUse" id="linearGradient5767" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5663" y2="57.5" x2="865.5" y1="66" x1="872" gradientTransform="translate(20)" gradientUnits="userSpaceOnUse" id="linearGradient5824" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2485" y2="30.79385" x2="917.3691" y1="19.1921" x1="905.4675" gradientTransform="matrix(1.159934,0,0,1.224222,-143.4594,-12.87852)" gradientUnits="userSpaceOnUse" id="linearGradient5826" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5704" y2="27.32372" x2="922.5571" y1="20.45271" x1="915.0701" gradientUnits="userSpaceOnUse" id="linearGradient5828" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient700" inkscape:collect="always" id="linearGradient7059" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,33.80746)" x1="606.9615" y1="220.3636" x2="602.0698" y2="221.2004" />
-<linearGradient xlink:href="#linearGradient800" inkscape:collect="always" id="linearGradient7062" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,33.80746)" x1="593.1874" y1="195.5188" x2="599.2378" y2="204.916" />
-<linearGradient xlink:href="#linearGradient700" inkscape:collect="always" id="linearGradient7065" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,33.80746)" x1="587.9551" y1="222.3478" x2="582.4935" y2="220.8004" />
-<linearGradient xlink:href="#linearGradient800" inkscape:collect="always" id="linearGradient7069" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,33.80746)" x1="593.3162" y1="186.6364" x2="597.3068" y2="188.5494" />
-<linearGradient xlink:href="#linearGradient2888" inkscape:collect="always" id="linearGradient7072" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,34.89977)" x1="594.8112" y1="213.1902" x2="594.861" y2="216.7914" />
-<linearGradient xlink:href="#linearGradient800" inkscape:collect="always" id="linearGradient7074" gradientUnits="userSpaceOnUse" x1="609.5726" y1="215.402" x2="612.2578" y2="216.4033" />
-<linearGradient xlink:href="#linearGradient3480" inkscape:collect="always" id="linearGradient7102" gradientUnits="userSpaceOnUse" x1="591.3853" y1="198.5761" x2="592.8656" y2="198.5761" />
-<linearGradient xlink:href="#linearGradient1887" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientUnits="userSpaceOnUse" id="linearGradient2876" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient5740" y2="46.339" x2="414.2602" y1="46.33899" x1="404.6787" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient2878" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient2888" y2="216.7914" x2="594.861" y1="213.1902" x1="594.8112" gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.556,-101.4348)" gradientUnits="userSpaceOnUse" id="linearGradient2880" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="188.5494" x2="597.3068" y1="186.6364" x1="593.3162" gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8846,-102.259)" gradientUnits="userSpaceOnUse" id="linearGradient2882" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient700" y2="220.8004" x2="582.4935" y1="222.3478" x1="587.9551" gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8846,-102.259)" gradientUnits="userSpaceOnUse" id="linearGradient2884" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="204.916" x2="599.2378" y1="195.5188" x1="593.1874" gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8846,-102.259)" gradientUnits="userSpaceOnUse" id="linearGradient2886" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient700" y2="221.2004" x2="602.0698" y1="220.3636" x1="606.9615" gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8846,-102.259)" gradientUnits="userSpaceOnUse" id="linearGradient2889" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient800" y2="216.4033" x2="612.2578" y1="215.402" x1="609.5726" gradientUnits="userSpaceOnUse" id="linearGradient2891" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient3480" y2="198.5761" x2="592.8656" y1="198.5761" x1="591.3853" gradientUnits="userSpaceOnUse" id="linearGradient2893" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient1887" y2="132.8273" x2="906.6448" y1="116.8648" x1="899.6934" gradientUnits="userSpaceOnUse" id="linearGradient3740" inkscape:collect="always" />
-<linearGradient x1="348.6006" y1="338.0772" x2="375.3615" y2="318.0103" id="linearGradient6466-2" xlink:href="#linearGradient6618" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.05203,-3.089519)" />
-<linearGradient x1="348.6006" y1="338.0772" x2="375.3615" y2="318.0103" id="linearGradient6468-0" xlink:href="#linearGradient6618" gradientUnits="userSpaceOnUse" gradientTransform="translate(4.119358,37.58914)" />
-<linearGradient x1="348.6006" y1="338.0772" x2="375.3615" y2="318.0103" id="linearGradient6563-3" xlink:href="#linearGradient6618" gradientUnits="userSpaceOnUse" gradientTransform="translate(28.32058,70.02908)" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient6618" id="linearGradient5783-6-3" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.8269532,0,0,0.8236011,90.7184,44.23329)" x1="348.6006" y1="338.0772" x2="375.3615" y2="318.0103" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient6618" id="linearGradient6583-7" x1="371.2368" y1="322.8861" x2="395.2692" y2="322.8861" gradientUnits="userSpaceOnUse" gradientTransform="translate(0.3379059,-0.1655273)" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient10585-7" id="linearGradient5209" gradientUnits="userSpaceOnUse" x1="5.644915" y1="209.9819" x2="13.52223" y2="214.7789" />
-<linearGradient id="linearGradient10585-7">
-<stop style="stop-color:#d7d7d7;stop-opacity:1" offset="0.0000000" id="stop10587-0" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop10595-2" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient10585-7" y2="214.7789" x2="13.52223" y1="209.9819" x1="5.644915" gradientUnits="userSpaceOnUse" id="linearGradient8278-4" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient10585-7" y2="214.7789" x2="13.52223" y1="209.9819" x1="5.644915" gradientUnits="userSpaceOnUse" id="linearGradient8276-2" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient10585-7" y2="214.7789" x2="13.52223" y1="209.9819" x1="5.644915" gradientUnits="userSpaceOnUse" id="linearGradient8290-1" inkscape:collect="always" />
-<linearGradient xlink:href="#linearGradient10585-7" y2="214.7789" x2="13.52223" y1="209.9819" x1="5.644915" gradientUnits="userSpaceOnUse" id="linearGradient8288-3" inkscape:collect="always" />
-<linearGradient id="linearGradient5704-1">
-<stop id="stop5706-5" offset="0" style="stop-color:#5a5a5a;stop-opacity:1" />
-<stop id="stop5708-0" offset="1.0000000" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient6684-6">
-<stop id="stop6686-3" offset="0.0000000" style="stop-color:#ffbf00;stop-opacity:1" />
-<stop id="stop6688-7" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient24464">
-<stop id="stop24466" offset="0" style="stop-color:#499204;stop-opacity:1" />
-<stop id="stop24468" offset="1.0000000" style="stop-color:#a7e26e;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient6684-6" id="linearGradient7067" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.061943,0.6131129,-0.6131129,-1.061943,1168.341,499.529)" x1="501.3698" y1="278.6932" x2="498.0183" y2="275.9288" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-1" id="linearGradient7070" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.061943,0.6131129,-0.6131129,-1.061943,1170.473,499.786)" x1="497.1992" y1="276.5925" x2="501.1567" y2="279.6869" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient24464" id="linearGradient7073" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-0.9089148,0.8231073,-0.8530767,-0.9420083,659.3328,552.0315)" x1="99.27937" y1="121.4717" x2="95.75075" y2="118.6402" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-0" id="linearGradient8980" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" />
-<linearGradient id="linearGradient5704-0">
-<stop style="stop-color:#5a5a5a;stop-opacity:1" offset="0" id="stop5706-2" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop5708-9" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-6" id="linearGradient8982" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" />
-<linearGradient id="linearGradient5734-6">
-<stop id="stop5736-0" offset="0" style="stop-color:#8ab3df;stop-opacity:1" />
-<stop id="stop5738-9" offset="1" style="stop-color:#ffffff" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-3" id="linearGradient8984" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" />
-<linearGradient id="linearGradient5740-3">
-<stop id="stop5742-5" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop5744-4" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-0" id="linearGradient8986" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-6" id="linearGradient8988" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-3" id="linearGradient8990" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-0" id="linearGradient8772" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-6" id="linearGradient8774" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-3" id="linearGradient8776" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-0" id="linearGradient8766" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-6" id="linearGradient8768" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-3" id="linearGradient8770" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-3" id="linearGradient6608" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" />
-<linearGradient id="linearGradient5704-3">
-<stop style="stop-color:#5a5a5a;stop-opacity:1" offset="0" id="stop5706-7" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop5708-90" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-2" id="linearGradient6610" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" />
-<linearGradient id="linearGradient5734-2">
-<stop id="stop5736-3" offset="0" style="stop-color:#8ab3df;stop-opacity:1" />
-<stop id="stop5738-99" offset="1" style="stop-color:#ffffff" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-7" id="linearGradient6612" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" />
-<linearGradient id="linearGradient5740-7">
-<stop id="stop5742-0" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop5744-3" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-3" id="linearGradient6614" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-2" id="linearGradient6616" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-7" id="linearGradient6618-9" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" />
-<linearGradient xlink:href="#linearGradient5704-46" y2="351.125" x2="511.4375" y1="347.1808" x1="508.1888" gradientUnits="userSpaceOnUse" id="linearGradient5857-1" inkscape:collect="always" />
-<linearGradient id="linearGradient5704-46">
-<stop style="stop-color:#5a5a5a;stop-opacity:1" offset="0" id="stop668" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop5708-01" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient5704-48" y2="352.1231" x2="518.6993" y1="346.5179" x1="515.2157" gradientUnits="userSpaceOnUse" id="linearGradient5857-64" inkscape:collect="always" />
-<linearGradient id="linearGradient5704-48">
-<stop style="stop-color:#5a5a5a;stop-opacity:1" offset="0" id="stop673" />
-<stop style="stop-color:#000000;stop-opacity:1" offset="1.0000000" id="stop5708-16" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient4698-52" y2="350.407" x2="532.363" y1="347.4531" x1="529.5001" gradientUnits="userSpaceOnUse" id="linearGradient5621-6" inkscape:collect="always" />
-<linearGradient id="linearGradient4698-52">
-<stop id="stop4700-98" offset="0" style="stop-color:#a2d3ff;stop-opacity:1" />
-<stop id="stop4702-1" offset="1.0000000" style="stop-color:#004c91;stop-opacity:1" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient4698-1" y2="350.5838" x2="538.064" y1="346.8714" x1="534.5285" gradientUnits="userSpaceOnUse" id="linearGradient5621-8" inkscape:collect="always" />
-<linearGradient id="linearGradient4698-1">
-<stop id="stop4700-5" offset="0" style="stop-color:#a2d3ff;stop-opacity:1" />
-<stop id="stop4702-2" offset="1.0000000" style="stop-color:#004c91;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-9" id="linearGradient12203" x1="515.9623" y1="349.3102" x2="523.4155" y2="346.7762" gradientUnits="userSpaceOnUse" />
-<linearGradient id="linearGradient3480-9">
-<stop id="stop3482-6" offset="0.0000000" style="stop-color:#646464;stop-opacity:1" />
-<stop id="stop3484-0" offset="1.0000000" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-9" id="linearGradient12201" x1="519.4526" y1="354.5319" x2="521.2233" y2="351.8581" gradientUnits="userSpaceOnUse" />
-<linearGradient gradientTransform="rotate(15,511.8463,316.8629)" y2="351.8581" x2="521.2233" y1="354.5319" x1="519.4526" gradientUnits="userSpaceOnUse" id="linearGradient12220" xlink:href="#linearGradient3480-4" inkscape:collect="always" />
-<linearGradient id="linearGradient3480-4">
-<stop id="stop3482-7" offset="0.0000000" style="stop-color:#646464;stop-opacity:1" />
-<stop id="stop3484-8" offset="1.0000000" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient id="linearGradient4698-8">
-<stop id="stop4700-6" offset="0" style="stop-color:#a2d3ff;stop-opacity:1" />
-<stop id="stop4702-24" offset="1.0000000" style="stop-color:#004c91;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient4698-8" id="linearGradient12388" gradientUnits="userSpaceOnUse" x1="31.37247" y1="132.9464" x2="36.18673" y2="138.5" />
-<radialGradient inkscape:collect="always" xlink:href="#linearGradient4698-8" id="radialGradient12390" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.153846,0,120.5976)" cx="35.25" cy="142.5244" fx="35.25" fy="142.5244" r="3.25" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient4698-8" id="linearGradient12392" gradientUnits="userSpaceOnUse" gradientTransform="translate(-1.5,7.5244)" x1="34.5194" y1="137.5165" x2="42.18301" y2="137.4738" />
-<linearGradient inkscape:collect="always" id="linearGradient5912">
-<stop style="stop-color:#000000;stop-opacity:1" offset="0" id="stop5914" />
-<stop style="stop-color:#808080;stop-opacity:1" offset="1" id="stop5916" />
-</linearGradient>
-<linearGradient id="linearGradient6784-4" inkscape:collect="always">
-<stop id="stop6786-7" offset="0" style="stop-color:#000000;stop-opacity:1" />
-<stop id="stop6788-0" offset="1" style="stop-color:#808080;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5912" id="linearGradient5918" x1="643.5" y1="311" x2="634.5" y2="299.5" gradientUnits="userSpaceOnUse" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient6784-4" id="linearGradient5918-3-6" x1="675.5" y1="310" x2="664.5" y2="297.5" gradientUnits="userSpaceOnUse" />
-<linearGradient inkscape:collect="always" id="linearGradient5926">
-<stop style="stop-color:#004c91;stop-opacity:1" offset="0" id="stop5928" />
-<stop style="stop-color:#91c5f3;stop-opacity:1" offset="1" id="stop5930" />
-</linearGradient>
-<linearGradient inkscape:collect="always" id="linearGradient5926-0-9">
-<stop style="stop-color:#004c91;stop-opacity:1" offset="0" id="stop5928-3-1" />
-<stop style="stop-color:#91c5f3;stop-opacity:1" offset="1" id="stop5930-5-6" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5926" id="linearGradient5932" gradientUnits="userSpaceOnUse" x1="656.1874" y1="305.6875" x2="647" y2="293.5" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient5926-0-9" id="linearGradient5932-9-2" gradientUnits="userSpaceOnUse" x1="686.5" y1="318.5" x2="677.5" y2="306.5" />
-<linearGradient inkscape:collect="always" xlink:href="#eraserFill-6" id="linearGradient10236" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.13356,0,0,1.133368,-243.4437,205.1983)" x1="101.0939" y1="221.0688" x2="112.201" y2="234.0031" />
-<linearGradient id="eraserFill-6">
-<stop id="stop5742_1-1" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop5744_1-5" offset="1.0000000" style="stop-color:#f3b698;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#eraserFill-6" id="linearGradient10238" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.809546,0,0,0.809417,-240.0191,332.4799)" x1="144.0824" y1="157.8208" x2="176.8627" y2="188.4128" />
-<linearGradient inkscape:collect="always" id="gray_to_white">
-<stop id="stop7750-9" offset="0" style="stop-color:#afafaf;stop-opacity:1" />
-<stop id="stop7748-6" offset="1" style="stop-color:#e6e6e6;stop-opacity:1" />
-</linearGradient>
-<linearGradient y2="536.965" x2="217.426" y1="536.767" x1="263.478" gradientTransform="matrix(0.117347,0,0,0.117347,252.7175,248.3363)" gradientUnits="userSpaceOnUse" id="linearGradient7163" xlink:href="#gray_to_white" inkscape:collect="always" />
-<radialGradient r="62.3947" fy="542.529" fx="234.355" cy="542.529" cx="234.355" gradientTransform="matrix(1,0,0,0.263368,0,365.571)" gradientUnits="userSpaceOnUse" id="radialGradient7218" xlink:href="#BlackTransparent" inkscape:collect="always" />
-<radialGradient r="62.3947" fy="542.529" fx="234.355" cy="542.529" cx="234.355" gradientTransform="matrix(1,0,0,0.263368,0,365.571)" gradientUnits="userSpaceOnUse" id="radialGradient7220" xlink:href="#WhiteTransparent" inkscape:collect="always" />
-<linearGradient y2="376.4393" x2="-557.8917" y1="115.2545" x1="-815.2852" gradientTransform="matrix(1,0,0,0.997925,315.4232,-138.2771)" gradientUnits="userSpaceOnUse" id="linearGradient15270-5" xlink:href="#linearGradient3480-7-6" inkscape:collect="always" />
-<linearGradient id="linearGradient3480-7-6">
-<stop id="stop3482-77-2" offset="0.0000000" style="stop-color:#646464;stop-opacity:1" />
-<stop id="stop3484-3-2" offset="1.0000000" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient xlink:href="#linearGradient5740-1-4-6" y2="180.6826" x2="164.3598" y1="172.2059" x1="161.736" gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" gradientUnits="userSpaceOnUse" id="linearGradient5545-0-70" inkscape:collect="always" />
-<linearGradient id="linearGradient5740-1-4-6">
-<stop id="stop5742-8-4-8" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1" />
-<stop id="stop5744-32-6-3" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1" />
-</linearGradient>
-<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" />
-<stop id="stop1889-94" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient10331" id="linearGradient10399" gradientUnits="userSpaceOnUse" x1="255.513" y1="92.579" x2="264.6582" y2="83.39406" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient10359" id="linearGradient33193" gradientUnits="userSpaceOnUse" x1="14.56176" y1="185.4726" x2="22.91343" y2="193.8308" />
-<linearGradient id="linearGradient10359" inkscape:collect="always">
-<stop id="stop10361" offset="0" style="stop-color:#c80000" />
-<stop id="stop10363" offset="1" style="stop-color:#f99e9e;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-8-6" id="linearGradient33195" gradientUnits="userSpaceOnUse" x1="7.859756" y1="190.7533" x2="25.59999" y2="190.0497" />
-<linearGradient id="linearGradient3480-8-6">
-<stop id="stop3482-9-9" offset="0.0000000" style="stop-color:#646464;stop-opacity:1" />
-<stop id="stop3484-6-1" offset="1.0000000" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-8-6" id="linearGradient33210" gradientUnits="userSpaceOnUse" x1="11.04291" y1="190.3311" x2="23.16458" y2="191.3432" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-3" id="linearGradient33212" gradientUnits="userSpaceOnUse" x1="11.04291" y1="190.3311" x2="21.57254" y2="190.0497" />
-<linearGradient id="linearGradient3480-3">
-<stop id="stop3482-8" offset="0.0000000" style="stop-color:#646464;stop-opacity:1" />
-<stop id="stop3484-5" offset="1.0000000" style="stop-color:#000000;stop-opacity:1" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient10359" id="linearGradient33191" gradientUnits="userSpaceOnUse" x1="24.49481" y1="214.0368" x2="14.87818" y2="201.604" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient10349" id="linearGradient33206" gradientUnits="userSpaceOnUse" x1="14.95977" y1="203.6547" x2="23.60995" y2="211.0178" />
-<linearGradient inkscape:collect="always" id="linearGradient10349">
-<stop style="stop-color:#a2f156;stop-opacity:1" offset="0" id="stop10351" />
-<stop style="stop-color:#a2f156;stop-opacity:0" offset="1" id="stop10353" />
-</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-8-6" id="linearGradient33208" gradientUnits="userSpaceOnUse" x1="8.364343" y1="207.3121" x2="25.59999" y2="207.5353" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-8-6" id="linearGradient33214" gradientUnits="userSpaceOnUse" x1="11.89733" y1="207.3945" x2="22.12529" y2="207.5352" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient900-2" id="linearGradient33204" gradientUnits="userSpaceOnUse" x1="14.22924" y1="201.6041" x2="23.09063" y2="212.7821" />
-<linearGradient id="linearGradient900-2">
-<stop id="stop1014-7" offset="0.0000000" style="stop-color:#e4ffa6;stop-opacity:1" />
-<stop id="stop1015-3" offset="1.0000000" style="stop-color:#3a7801;stop-opacity:1" />
-</linearGradient>
-</defs>
-<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="svg1" inkscape:grid-bbox="true" inkscape:pageopacity="1.0000000" pagecolor="#e8e8e4" snaptoguides="true" showguides="true" inkscape:window-y="27" inkscape:window-x="0" inkscape:window-height="958" inkscape:window-width="1280" inkscape:cy="331.0498" inkscape:cx="592.0806" inkscape:zoom="2.736" gridtolerance="6" snaptogrid="false" showgrid="false" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="8" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="false" objecttolerance="11" inkscape:snap-bbox="false" inkscape:snap-nodes="true" inkscape:bbox-nodes="false" inkscape:bbox-paths="false" inkscape:snap-global="false" inkscape:snap-center="false" inkscape:snap-midpoints="false" inkscape:snap-intersection-paths="true" inkscape:object-paths="false" inkscape:snap-object-midpoints="true" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:snap-smooth-nodes="false" inkscape:snap-text-baseline="false" inkscape:snap-page="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-bbox-edge-midpoints="false">
-<inkscape:grid type="xygrid" id="grid9252" originx="0px" originy="0px" spacingx="0.5px" spacingy="0.5px" empspacing="2" visible="true" enabled="true" snapvisiblegridlinesonly="true" />
-<sodipodi:guide orientation="0,1" position="630.08101,968.02815" id="guide4946" />
-<sodipodi:guide orientation="0,1" position="618.47896,943.93157" id="guide4948" />
-</sodipodi:namedview>
-<metadata id="metadata1810">
-<rdf:RDF>
-<cc:Work rdf:about="">
-<dc:description>Created with Inkscape
+<svg
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:cc="http://creativecommons.org/ns#"
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+ xmlns:svg="http://www.w3.org/2000/svg"
+ xmlns="http://www.w3.org/2000/svg"
+ xmlns: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.91 r13725"
+ sodipodi:docname="icons.svg"
+ height="540"
+ width="1250"
+ sodipodi:version="0.32"
+ id="svg1"
+ inkscape:output_extension="org.inkscape.output.svg.inkscape"
+ version="1.0"
+ viewBox="0 0 1250 540">
+ <defs
+ id="defs3">
+ <linearGradient
+ id="linearGradient10331">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop10333" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="1"
+ id="stop10335" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6206">
+ <stop
+ style="stop-color:#8ab3df;stop-opacity:1"
+ offset="0"
+ id="stop6208" />
+ <stop
+ style="stop-color:#5eba69;stop-opacity:1"
+ offset="1"
+ id="stop6210" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6618">
+ <stop
+ offset="0"
+ style="stop-color:#1caf19;stop-opacity:1"
+ id="stop6620" />
+ <stop
+ offset="1"
+ style="stop-color:#6df668;stop-opacity:1"
+ id="stop6622" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7836">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7838" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7840" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7828">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7830" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7832" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7820">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7822" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7824" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7812">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7814" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7816" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7804">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7806" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7808" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7796">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7798" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7800" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7788">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7790" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7792" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7780">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7782" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7784" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient7772">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop7774" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop7776" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5602">
+ <stop
+ style="stop-color:#cccccc;stop-opacity:1"
+ offset="0"
+ id="stop5604" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1"
+ id="stop5606" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient8482"
+ inkscape:collect="always">
+ <stop
+ id="stop8484"
+ offset="0"
+ style="stop-color:#b3b3b3;stop-opacity:1" />
+ <stop
+ id="stop8486"
+ offset="1"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5724">
+ <stop
+ style="stop-color:#fffdf8;stop-opacity:1"
+ offset="0.0000000"
+ id="stop5726" />
+ <stop
+ id="stop5730"
+ offset="0.43478271"
+ style="stop-color:#fcfaf5;stop-opacity:1" />
+ <stop
+ style="stop-color:#cdccc7;stop-opacity:1"
+ offset="1.0000000"
+ id="stop5728" />
+ </linearGradient>
+ <inkscape:path-effect
+ effect="skeletal"
+ id="path-effect9860"
+ prop_scale="1.03"
+ pattern="M 758,-28 C 731.4411,-14.26939 718,-6 718,0 718,6 731.2091,26.0201 745.0684,28 753.0684,14 745.1344,-7.97121 758,-28 Z M 774,-20 C 762.1542,-11.10251 755.371,10.77622 774,22 762.7419,-2.46745 773.2605,-19.05005 774,-20 Z M 794,-14 C 780.8555,-3.853014 784,6 794,14 788,2 793.2503,-13.90401 794,-14 Z M 824,-19.06843 C 819.1449,-17.91054 817.0099,-10.02155 814,-8 808.1838,-4.093675 803.8914,-5.12669 803.9754,-0.0179303 804.0843,6.61057 806.4811,4.501851 814,8 816.3465,9.091689 821.1139,18.51673 824,18.93157 820,4.93157 820,-7.06843 824,-19.06843 Z"
+ scale_y_rel="true"
+ pattern-nodetypes="czcccccccccssscc"
+ is_visible="true"
+ deactivate_knotholder="false"
+ copytype="single_stretched"
+ spacing="0"
+ normal_offset="0"
+ tang_offset="0"
+ prop_units="false"
+ vertical_pattern="false"
+ fuse_tolerance="0" />
+ <linearGradient
+ id="linearGradient4832"
+ inkscape:collect="always">
+ <stop
+ id="stop4834"
+ offset="0"
+ style="stop-color:#8686bf;stop-opacity:1" />
+ <stop
+ id="stop4836"
+ offset="1"
+ style="stop-color:#9191b6;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4826"
+ inkscape:collect="always">
+ <stop
+ id="stop4828"
+ offset="0"
+ style="stop-color:#d7d7ff;stop-opacity:1" />
+ <stop
+ id="stop4830"
+ offset="1"
+ style="stop-color:#d7d7ff;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4820"
+ inkscape:collect="always">
+ <stop
+ id="stop4822"
+ offset="0"
+ style="stop-color:#393986;stop-opacity:1" />
+ <stop
+ id="stop4824"
+ offset="1"
+ style="stop-color:#53536c;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4798">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0"
+ id="stop4802" />
+ <stop
+ style="stop-color:#5eba69;stop-opacity:1"
+ offset="1"
+ id="stop4800" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4935">
+ <stop
+ style="stop-color:#5eba69;stop-opacity:1"
+ offset="0"
+ id="stop4939" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="1"
+ id="stop4937" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient700"
+ gradientTransform="matrix(-0.42698,-0.87201,0.87201,-0.42698,11.5331,-7.26288)"
+ y2="-0.473952"
+ x2="-16.4355"
+ y1="-1.11146"
+ x1="-30.5127"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3352"
+ inkscape:collect="always" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4721">
+ <stop
+ style="stop-color:#f57900;stop-opacity:1"
+ offset="0"
+ id="stop4723" />
+ <stop
+ style="stop-color:#73d216;stop-opacity:0"
+ offset="1"
+ id="stop4725" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4709"
+ inkscape:collect="always">
+ <stop
+ id="stop4711"
+ offset="0"
+ style="stop-color:#75507b;stop-opacity:1" />
+ <stop
+ id="stop4713"
+ offset="1"
+ style="stop-color:#73d216;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4696">
+ <stop
+ style="stop-color:#73d216;stop-opacity:1"
+ offset="0"
+ id="stop4698" />
+ <stop
+ style="stop-color:#73d216;stop-opacity:0"
+ offset="1"
+ id="stop4701" />
+ </linearGradient>
+ <marker
+ inkscape:stockid="Arrow1Send"
+ orient="auto"
+ refY="0"
+ refX="0"
+ id="Arrow1Send">
+ <path
+ id="path4834"
+ d="M 0,0 5,-5 -12.5,0 5,5 0,0 Z"
+ style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none"
+ transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
+ inkscape:connector-curvature="0" />
+ </marker>
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="translate(-0.999998,-0.937496)"
+ gradientUnits="userSpaceOnUse"
+ y2="311.8198"
+ x2="696.8668"
+ y1="306.0704"
+ x1="693.4026"
+ id="linearGradient4618"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="translate(-0.999998,-0.937496)"
+ gradientUnits="userSpaceOnUse"
+ y2="311.079"
+ x2="698.2679"
+ y1="303.7007"
+ x1="693.279"
+ id="linearGradient4610"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="309.7338"
+ x2="698.7269"
+ y1="304.2242"
+ x1="695.0141"
+ id="linearGradient4649"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient16137"
+ y2="729.9991"
+ x2="60.49544"
+ y1="715.913"
+ x1="54.46346"
+ gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4849"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient16137"
+ y2="719.9376"
+ x2="54.73784"
+ y1="729.3028"
+ x1="64.23671"
+ gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4859"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientUnits="userSpaceOnUse"
+ y2="125.3162"
+ x2="91.62061"
+ y1="125.3162"
+ x1="84.62939"
+ id="linearGradient4811"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientUnits="userSpaceOnUse"
+ y2="159"
+ x2="186.7169"
+ y1="159"
+ x1="171.2831"
+ id="linearGradient4819"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient12513">
+ <stop
+ style="stop-color:black;stop-opacity:1"
+ offset="0"
+ id="stop12515" />
+ <stop
+ style="stop-color:#2a2a2a;stop-opacity:1"
+ offset="1"
+ id="stop12517" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient12513"
+ gradientUnits="userSpaceOnUse"
+ y2="712.1672"
+ x2="61.99598"
+ y1="715.7595"
+ x1="64.60896"
+ id="linearGradient12519"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="244.6786"
+ x2="717.6032"
+ y1="249.9805"
+ x1="712.986"
+ gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient12592"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="240.8761"
+ x2="717.6405"
+ y1="248.9147"
+ x1="713.5084"
+ gradientTransform="matrix(1.016495,0,0,-1,-11.43409,493.3688)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient12555"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient4528">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0.0000000"
+ id="stop4530" />
+ <stop
+ id="stop4534"
+ offset="0.37719297"
+ style="stop-color:#d4e0ef;stop-opacity:1" />
+ <stop
+ style="stop-color:#98b6d3;stop-opacity:1"
+ offset="1.0000000"
+ id="stop4532" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6679">
+ <stop
+ style="stop-color:#ffeb74;stop-opacity:1"
+ offset="0"
+ id="stop6681" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="1"
+ id="stop6683" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5899">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0"
+ id="stop5901" />
+ <stop
+ style="stop-color:#ffacb5;stop-opacity:1"
+ offset="1"
+ id="stop5903" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5858">
+ <stop
+ style="stop-color:#ffa01e"
+ offset="0.0000000"
+ id="stop5860" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop5862" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5740">
+ <stop
+ id="stop5742"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop5744"
+ offset="1.0000000"
+ style="stop-color:#98b6d3;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5734">
+ <stop
+ id="stop5736"
+ offset="0"
+ style="stop-color:#8ab3df;stop-opacity:1" />
+ <stop
+ id="stop5738"
+ offset="1"
+ style="stop-color:#ffffff" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5704">
+ <stop
+ style="stop-color:#5a5a5a;stop-opacity:1"
+ offset="0"
+ id="stop5706" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop5708" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient16137">
+ <stop
+ style="stop-color:#db5d00;stop-opacity:1"
+ offset="0.0000000"
+ id="stop16139" />
+ <stop
+ style="stop-color:#ffd749;stop-opacity:1"
+ offset="0.35076979"
+ id="stop16141" />
+ <stop
+ style="stop-color:#fff593;stop-opacity:1"
+ offset="0.59668732"
+ id="stop16143" />
+ <stop
+ style="stop-color:#fff7c2;stop-opacity:1"
+ offset="0.78382427"
+ id="stop16145" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="1.0000000"
+ id="stop16147" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient14614">
+ <stop
+ style="stop-color:#c80000"
+ offset="0"
+ id="stop14616" />
+ <stop
+ style="stop-color:#bf0000;stop-opacity:0"
+ offset="1"
+ id="stop14618" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient5204">
+ <stop
+ style="stop-color:#4e6e90;stop-opacity:1"
+ offset="0"
+ id="stop5206" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop5208" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient4343">
+ <stop
+ style="stop-color:#fff9f9;stop-opacity:1"
+ offset="0"
+ id="stop4345" />
+ <stop
+ style="stop-color:#fff9f9;stop-opacity:0"
+ offset="1"
+ id="stop4347" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6684">
+ <stop
+ style="stop-color:#ffbf00;stop-opacity:1"
+ offset="0.0000000"
+ id="stop6686" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="1.0000000"
+ id="stop6688" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6524">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0.0000000"
+ id="stop6526" />
+ <stop
+ style="stop-color:#e2e1e1;stop-opacity:1"
+ offset="1.0000000"
+ id="stop6528" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5663">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop5665" />
+ <stop
+ style="stop-color:#000000;stop-opacity:0"
+ offset="1"
+ id="stop5667" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient10585">
+ <stop
+ style="stop-color:#d7d7d7;stop-opacity:1"
+ offset="0.0000000"
+ id="stop10587" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop10595" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3480">
+ <stop
+ id="stop3482"
+ offset="0.0000000"
+ style="stop-color:#646464;stop-opacity:1" />
+ <stop
+ id="stop3484"
+ offset="1.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3466">
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="0.0000000"
+ id="stop3468" />
+ <stop
+ style="stop-color:#a0a0a0;stop-opacity:1"
+ offset="1.0000000"
+ id="stop3470" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1887">
+ <stop
+ id="stop1888"
+ offset="0.0000000"
+ style="stop-color:#fffdf8;stop-opacity:1" />
+ <stop
+ id="stop1889"
+ offset="1.0000000"
+ style="stop-color:#cdccc7;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2485">
+ <stop
+ id="stop2486"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop2487"
+ offset="1.0000000"
+ style="stop-color:#aaaaaa;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient2888">
+ <stop
+ id="stop2889"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop2894"
+ offset="1"
+ style="stop-color:#8ab3de;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient1610">
+ <stop
+ id="stop1611"
+ offset="0.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ <stop
+ id="stop3053"
+ offset="0.35076979"
+ style="stop-color:#7f7f7f;stop-opacity:1" />
+ <stop
+ id="stop3054"
+ offset="0.59668732"
+ style="stop-color:#bfbfbf;stop-opacity:1" />
+ <stop
+ id="stop3055"
+ offset="0.78382427"
+ style="stop-color:#dfdfdf;stop-opacity:1" />
+ <stop
+ id="stop1612"
+ offset="1.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient500">
+ <stop
+ id="stop1007"
+ offset="0.0000000"
+ style="stop-color:#e7eaf0;stop-opacity:1" />
+ <stop
+ id="stop1008"
+ offset="1.0000000"
+ style="stop-color:#bacadd;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient700">
+ <stop
+ id="stop347"
+ offset="0"
+ style="stop-color:#376796;stop-opacity:1" />
+ <stop
+ id="stop348"
+ offset="1.0000000"
+ style="stop-color:#b0dde2;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient800">
+ <stop
+ id="stop998"
+ offset="0"
+ style="stop-color:#f3ff49;stop-opacity:1" />
+ <stop
+ id="stop999"
+ offset="1"
+ style="stop-color:#ffa01e;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient900">
+ <stop
+ id="stop1014"
+ offset="0.0000000"
+ style="stop-color:#e4ffa6;stop-opacity:1" />
+ <stop
+ id="stop1015"
+ offset="1.0000000"
+ style="stop-color:#3a7801;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient5734"
+ gradientTransform="translate(1.863401,-1.999999)"
+ gradientUnits="userSpaceOnUse"
+ y2="164.9546"
+ x2="23.61528"
+ y1="170.3782"
+ x1="22.45293"
+ id="linearGradient3628"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4935"
+ gradientTransform="matrix(0.89781,0,0,0.89781,-0.81747,10.4227)"
+ gradientUnits="userSpaceOnUse"
+ y2="96.397"
+ x2="-14.7622"
+ y1="107.85"
+ x1="-0.535315"
+ id="linearGradient10520"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ gradientUnits="userSpaceOnUse"
+ y2="240.354"
+ x2="64.5183"
+ y1="236.4112"
+ x1="61.44776"
+ id="linearGradient4005"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ gradientUnits="userSpaceOnUse"
+ y2="243.4301"
+ x2="62.51569"
+ y1="239.1431"
+ x1="59.4322"
+ id="linearGradient4013"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientUnits="userSpaceOnUse"
+ y2="239.2758"
+ x2="63.40303"
+ y1="236"
+ x1="58.95215"
+ id="linearGradient4072"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientUnits="userSpaceOnUse"
+ y2="239.4902"
+ x2="62.5"
+ y1="235.1341"
+ x1="59"
+ id="linearGradient4080"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="translate(0,0.0207681)"
+ gradientUnits="userSpaceOnUse"
+ y2="257.662"
+ x2="14.32074"
+ y1="251"
+ x1="8"
+ id="linearGradient4088"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="257.662"
+ x2="14.32074"
+ y1="251"
+ x1="8"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3208"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="186.1308"
+ x2="-35.44985"
+ y1="186.1107"
+ x1="-43.56253"
+ gradientTransform="matrix(0,1.686539,-1.016949,0,148.1771,249.4699)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6665"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="matrix(0,1.007194,-1.016949,0,148.1771,220.2629)"
+ y2="187"
+ x2="-30.05"
+ y1="187"
+ x1="-43.95"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6667"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="matrix(1.003713,0,0,1,0.163202,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="187"
+ x2="-30.05"
+ y1="187"
+ x1="-43.95"
+ id="linearGradient7544"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="186.7495"
+ x2="-34.24569"
+ y1="183.3679"
+ x1="-42.13395"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient7548"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ gradientTransform="translate(-0.96863,1.05455)"
+ y2="182.3506"
+ x2="-34.67712"
+ y1="183.8118"
+ x1="-33.56642"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient10560"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ gradientTransform="translate(-139.9686,15.05455)"
+ gradientUnits="userSpaceOnUse"
+ y2="166.1914"
+ x2="110.1206"
+ y1="163.4373"
+ x1="107.9483"
+ id="linearGradient10579"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient10585"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.173327,0.323606,-0.837131,0.448376,121.9729,116.365)"
+ r="4.772141"
+ fy="185.3796"
+ fx="-39.00645"
+ cy="185.3796"
+ cx="-39.00645"
+ id="radialGradient10597"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ gradientUnits="userSpaceOnUse"
+ y2="215.9465"
+ x2="143.2251"
+ y1="214.8174"
+ x1="148"
+ id="linearGradient10641"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ gradientTransform="matrix(1.02198,0,0,1,-8.949568,-1)"
+ gradientUnits="userSpaceOnUse"
+ y2="264.6892"
+ x2="366.0981"
+ y1="261.2473"
+ x1="361.7094"
+ id="linearGradient11815"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3466"
+ y2="126.5225"
+ x2="338.0838"
+ y1="117.2489"
+ x1="337.1166"
+ gradientTransform="rotate(-45,340.6656,118.1192)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11021"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.33896"
+ x2="414.6234"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(0.539989,0,0,0.883257,-125.2513,264.0607)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient13469"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.33905"
+ x2="415.1663"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(0.666914,0,0,0.896427,-159.6137,266.4372)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient13473"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.33901"
+ x2="415.2005"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(0.868799,0,0,0.896064,-239.3931,260.4497)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient13477"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ gradientTransform="translate(41.00246,10.00003)"
+ gradientUnits="userSpaceOnUse"
+ y2="293"
+ x2="76.13622"
+ y1="293"
+ x1="70"
+ id="linearGradient14343"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5734"
+ gradientUnits="userSpaceOnUse"
+ y2="307.8311"
+ x2="80.62299"
+ y1="311.4508"
+ x1="83.82937"
+ id="linearGradient14389"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4528"
+ y2="76.98393"
+ x2="690"
+ y1="67.59227"
+ x1="705.2217"
+ gradientTransform="matrix(1.124999,0,0,1.125,-85.22497,-7.125909)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient18352"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="174.9393"
+ x2="974.4352"
+ y1="172.4419"
+ x1="974.4352"
+ gradientTransform="matrix(0.7,0,0,1,311.2,8.5)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5644"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="185"
+ x2="992.7362"
+ y1="181.5609"
+ x1="994.1533"
+ id="linearGradient5658"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5663"
+ gradientTransform="translate(0.0706497,-0.23015)"
+ gradientUnits="userSpaceOnUse"
+ y2="179.1932"
+ x2="990.5735"
+ y1="185.1891"
+ x1="989.8774"
+ id="linearGradient5669"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="184.8026"
+ x2="979.8044"
+ y1="182.4686"
+ x1="974.1975"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5693"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="184.715"
+ x2="974.5747"
+ y1="178.9373"
+ x1="967.739"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5695"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="80.14188"
+ x2="250.665"
+ y1="73.65818"
+ x1="256.8945"
+ gradientTransform="matrix(0.939394,0,0,1,15.63564,3.573014)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11197"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="79.5"
+ x2="269.5485"
+ y1="79.5"
+ x1="261.1073"
+ gradientTransform="translate(0.514439,0.573014)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient11210"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="translate(-0.0158611,0.0730141)"
+ gradientUnits="userSpaceOnUse"
+ y2="77.99037"
+ x2="258.0151"
+ y1="70.98074"
+ x1="266.0303"
+ id="linearGradient11286"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="translate(-0.0158611,0.0730141)"
+ gradientUnits="userSpaceOnUse"
+ y2="78.83605"
+ x2="262.5385"
+ y1="74.38268"
+ x1="266.6476"
+ id="linearGradient11294"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="matrix(1,0,0,0.982332,-0.0158611,1.3452)"
+ gradientUnits="userSpaceOnUse"
+ y2="71.03742"
+ x2="256.5"
+ y1="69.71401"
+ x1="261.0343"
+ id="linearGradient11302"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ gradientUnits="userSpaceOnUse"
+ y2="103.556"
+ x2="275.4545"
+ y1="95.67754"
+ x1="270.1718"
+ id="linearGradient11335"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient10585"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,1.033243,0,-3.241221)"
+ r="7.520315"
+ fy="95.72343"
+ fx="269.9677"
+ cy="95.72343"
+ cx="269.9677"
+ id="radialGradient11343"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientUnits="userSpaceOnUse"
+ y2="103.556"
+ x2="275.4545"
+ y1="95.67754"
+ x1="270.1718"
+ id="linearGradient11359"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="matrix(1,0,0,0.940296,0,5.373155)"
+ gradientUnits="userSpaceOnUse"
+ y2="93.16346"
+ x2="276.8255"
+ y1="90"
+ x1="271.2126"
+ id="linearGradient11367"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="178.6575"
+ x2="-33.69472"
+ y1="187.863"
+ x1="-37.33073"
+ gradientTransform="matrix(0,1,-1.02198,0,139.2452,218.9968)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6573"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient900"
+ y2="264.4648"
+ x2="367.2651"
+ y1="261.2473"
+ x1="361.6976"
+ gradientTransform="matrix(1.02198,0,0,1,-8.921317,-0.991053)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6662"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="178.6575"
+ x2="-33.69472"
+ y1="187.863"
+ x1="-37.33073"
+ gradientTransform="matrix(0,1,-1.02198,0,139.2735,219.0057)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6664"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ gradientUnits="userSpaceOnUse"
+ y2="190.2341"
+ x2="-41.62015"
+ y1="183.1965"
+ x1="-38.78242"
+ id="linearGradient6672"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ gradientUnits="userSpaceOnUse"
+ y2="183.8145"
+ x2="-40.58511"
+ y1="189.5493"
+ x1="-42.30934"
+ id="linearGradient6690"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ gradientTransform="matrix(1.003597,0,0,1,0.158094,0)"
+ gradientUnits="userSpaceOnUse"
+ y2="180.95"
+ x2="-32.95787"
+ y1="175.9331"
+ x1="-34.94375"
+ id="linearGradient6727"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="178.6575"
+ x2="-33.69472"
+ y1="187.863"
+ x1="-37.33073"
+ gradientTransform="rotate(90,-37.4946,182.5022)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6731"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="184.4165"
+ x2="-32.04113"
+ y1="186.8153"
+ x1="-36.94574"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6737"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="178.6575"
+ x2="-33.69472"
+ y1="187.863"
+ x1="-37.33073"
+ gradientTransform="rotate(90,-37.4946,182.5022)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6739"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="matrix(1.003713,0,0,1,0.163202,0)"
+ y2="187"
+ x2="-30.05"
+ y1="187"
+ x1="-43.95"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6743"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="matrix(1.003597,0,0,1,0.158094,0)"
+ y2="187"
+ x2="-30.05"
+ y1="187"
+ x1="-43.95"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6745"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4343"
+ gradientTransform="translate(41.8634,-175.7596)"
+ gradientUnits="userSpaceOnUse"
+ y2="335.0308"
+ x2="-10.52821"
+ y1="332.0769"
+ x1="-13.05958"
+ id="linearGradient4349"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientTransform="matrix(1,0,0,0.973548,1.5,3.761392)"
+ gradientUnits="userSpaceOnUse"
+ y2="178.0223"
+ x2="15.84741"
+ y1="174.9419"
+ x1="14.01976"
+ id="linearGradient4360"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5734"
+ gradientTransform="matrix(1,0,0,0.973548,1.5,3.761392)"
+ gradientUnits="userSpaceOnUse"
+ y2="175.9469"
+ x2="13.84897"
+ y1="177.4415"
+ x1="15"
+ id="linearGradient4369"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="30.79385"
+ x2="917.3691"
+ y1="19.21119"
+ x1="904.083"
+ gradientTransform="matrix(0.839788,0,0,0.88527,150.222,-1.762836)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5494"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="30.79385"
+ x2="917.3691"
+ y1="15.86083"
+ x1="900.9927"
+ gradientTransform="matrix(0.791429,0,0,0.832948,188.7144,-7.002499)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5506"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ gradientTransform="matrix(1,0,0,0.900774,0,8.915579)"
+ gradientUnits="userSpaceOnUse"
+ y2="88.23264"
+ x2="499.0386"
+ y1="83.8125"
+ x1="494.3125"
+ id="linearGradient5761"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient900"
+ y2="266.8492"
+ x2="368.4475"
+ y1="259.1585"
+ x1="359.5376"
+ gradientTransform="matrix(1.270957,0,0,1.195374,110.6171,-279.6099)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6204"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ gradientUnits="userSpaceOnUse"
+ y2="28.3706"
+ x2="572.5851"
+ y1="26.23856"
+ x1="573.1181"
+ id="linearGradient6220"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientUnits="userSpaceOnUse"
+ y2="38.68793"
+ x2="575.8765"
+ y1="24.52513"
+ x1="558.0709"
+ id="linearGradient6255"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientUnits="userSpaceOnUse"
+ y2="28.21831"
+ x2="574.5176"
+ y1="22.43135"
+ x1="562.2006"
+ id="linearGradient6263"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="34.17011"
+ x2="570.1624"
+ y1="26.23856"
+ x1="566.2487"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6330"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2888"
+ y2="33.63204"
+ x2="576.5"
+ y1="28.64459"
+ x1="574.6573"
+ gradientTransform="translate(-6)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6332"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="120.5792"
+ x2="98.37736"
+ y1="120.625"
+ x1="95.23788"
+ gradientTransform="matrix(0.833333,0,0,1,7.291667,1.125)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4723"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="128.7048"
+ x2="70.21282"
+ y1="132.3595"
+ x1="66.82119"
+ gradientTransform="matrix(0.845944,0,0,1,30.52281,-4.619314)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4726"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5858"
+ y2="120.8261"
+ x2="73.44604"
+ y1="122.5006"
+ x1="64.94328"
+ gradientTransform="matrix(0.845944,0,0,1,30.563,-0.625005)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4728"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ gradientUnits="userSpaceOnUse"
+ y2="125.9596"
+ x2="89.70349"
+ y1="125.8732"
+ x1="85.64042"
+ id="linearGradient5476"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ gradientUnits="userSpaceOnUse"
+ y2="118.8367"
+ x2="89.00298"
+ y1="120.6427"
+ x1="85.86581"
+ id="linearGradient5492"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2888"
+ y2="41.695"
+ x2="-21.25"
+ y1="34.12175"
+ x1="-26.25288"
+ gradientTransform="translate(200,120)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5524"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2888"
+ gradientUnits="userSpaceOnUse"
+ y2="146.119"
+ x2="172.708"
+ y1="167.853"
+ x1="182.981"
+ id="linearGradient5536"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient16137"
+ gradientTransform="translate(-474.994,-196)"
+ y2="304.7992"
+ x2="496.6998"
+ y1="311.0814"
+ x1="503.4623"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient14646"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient700"
+ gradientTransform="translate(-474.994,-196)"
+ y2="298.3802"
+ x2="502.1328"
+ y1="299.7858"
+ x1="505.6819"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient14650"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="translate(-474.994,-196)"
+ y2="301.2458"
+ x2="503.2033"
+ y1="296.2422"
+ x1="494.7954"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient14652"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient14614"
+ gradientTransform="translate(-474.994,-196)"
+ y2="300.8249"
+ x2="500.2523"
+ y1="302.0055"
+ x1="503.9067"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient14654"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="213.663"
+ x2="15.9855"
+ y1="219.5232"
+ x1="19.47374"
+ gradientTransform="matrix(0.75262,0,0,0.59916,3.63262,86.9905)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5679"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ gradientTransform="translate(-0.93075)"
+ gradientUnits="userSpaceOnUse"
+ y2="219.0135"
+ x2="20.6591"
+ y1="215.0097"
+ x1="17.62746"
+ id="linearGradient5694"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="304.5938"
+ x2="454.2664"
+ y1="293.7904"
+ x1="448.7902"
+ id="linearGradient5856"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5899"
+ y2="172.6258"
+ x2="129.2304"
+ y1="154.3315"
+ x1="113.1702"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5907"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5899"
+ gradientUnits="userSpaceOnUse"
+ y2="180.112"
+ x2="137.9319"
+ y1="156.459"
+ x1="115.927"
+ id="linearGradient5915"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="167.5526"
+ x2="123.9767"
+ y1="149.3739"
+ x1="113.7436"
+ id="linearGradient6574"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="195.8891"
+ x2="101.695"
+ y1="191.0442"
+ x1="98.53114"
+ id="linearGradient6644"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.605"
+ x2="18.58443"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1,0,0,0.570788,0,88.2556)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6666"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.7455"
+ x2="17.09525"
+ y1="218.5388"
+ x1="19.64591"
+ gradientTransform="matrix(1.066601,0,0,0.654301,-5.23183,65.54498)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6668"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.8375"
+ x2="17.88475"
+ y1="213.2477"
+ x1="14.87326"
+ gradientTransform="matrix(0.80275,0,0,0.392032,-0.364526,122.4629)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6670"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.605"
+ x2="18.58443"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.300191,0,0,0.432481,-3.154508,116.6655)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6696"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="217.0041"
+ x2="19.57123"
+ y1="210.2974"
+ x1="15.67863"
+ gradientTransform="matrix(1.103365,0,0,0.199883,-4.736921,163.6837)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6700"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientTransform="matrix(1,0,0,1.133349,0,-27.33777)"
+ y2="211.605"
+ x2="18.58443"
+ y1="205.4478"
+ x1="11.87961"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient7596"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5734"
+ y2="218.8141"
+ x2="21.32992"
+ y1="214.8097"
+ x1="16.3967"
+ gradientTransform="matrix(1,0,0,1.980119,-4.001611,-220.1696)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient7598"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.8026"
+ x2="17.49814"
+ y1="214.5411"
+ x1="15.64649"
+ gradientTransform="matrix(0.752624,0,0,1.186414,0.561763,-47.91824)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient7600"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.605"
+ x2="18.58443"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.124786,0,0,1.000669,344.0026,53.00302)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient10394"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.0763"
+ x2="16.76138"
+ y1="218.8138"
+ x1="20.71646"
+ gradientTransform="matrix(1.165662,0,0,1.664561,338.7448,-99.07928)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient10396"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.9876"
+ x2="17.04738"
+ y1="214.5411"
+ x1="15.64649"
+ gradientTransform="matrix(0.877306,0,0,0.997343,344.0641,45.72171)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient10398"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="218.3974"
+ x2="22.04275"
+ y1="214.0084"
+ x1="15.15684"
+ gradientTransform="matrix(1.124777,0,0,1.798127,314.1438,-265.2068)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient10434"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="218.8156"
+ x2="20.98923"
+ y1="215.0097"
+ x1="17.48326"
+ gradientTransform="matrix(1.165669,0,0,2.325584,313.3867,-379.6724)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient10436"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="214.3821"
+ x2="16.10928"
+ y1="219.6944"
+ x1="19.08596"
+ gradientTransform="matrix(0.87731,0,0,1.393407,318.7061,-177.3687)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient10438"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientTransform="translate(7)"
+ gradientUnits="userSpaceOnUse"
+ y2="124.1941"
+ x2="336.8484"
+ y1="121.9937"
+ x1="332.8779"
+ id="linearGradient10450"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ gradientUnits="userSpaceOnUse"
+ y2="37.90074"
+ x2="201.2521"
+ y1="26.49475"
+ x1="192.9638"
+ id="linearGradient10473"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="189.9042"
+ x2="-39.0581"
+ y1="186.0423"
+ x1="-40.92714"
+ id="linearGradient10481"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="184.1298"
+ x2="-33.18686"
+ y1="182.3336"
+ x1="-34.91058"
+ id="linearGradient10489"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ gradientUnits="userSpaceOnUse"
+ y2="312.9608"
+ x2="102.0417"
+ y1="308.2066"
+ x1="94.93215"
+ id="linearGradient6001"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ gradientTransform="matrix(1,0,0,0.991519,0,2.569281)"
+ gradientUnits="userSpaceOnUse"
+ y2="313.3821"
+ x2="124.8045"
+ y1="306.5469"
+ x1="118.5487"
+ id="linearGradient6026"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ gradientUnits="userSpaceOnUse"
+ y2="316"
+ x2="119.9323"
+ y1="311.0052"
+ x1="114.0927"
+ id="linearGradient6034"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.8799"
+ x2="15.65274"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6124"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.8796"
+ x2="17.50228"
+ y1="218.1055"
+ x1="19.63879"
+ gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6126"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.7801"
+ x2="18.5289"
+ y1="212.9046"
+ x1="15.38278"
+ gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6128"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="210.8717"
+ x2="16.80415"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6138"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.1112"
+ x2="14.53613"
+ y1="219.2215"
+ x1="21.80956"
+ gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6140"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.2771"
+ x2="17.98802"
+ y1="214.6474"
+ x1="16.35263"
+ gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6142"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3466"
+ gradientUnits="userSpaceOnUse"
+ y2="78.5"
+ x2="258.9182"
+ y1="80.00585"
+ x1="256.3262"
+ id="linearGradient6187"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.8799"
+ x2="15.65274"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.249566,0,0,1.420757,477.3232,-211.4881)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6224"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.445"
+ x2="16.37369"
+ y1="219.0054"
+ x1="21.88428"
+ gradientTransform="matrix(1.332493,0,0,2.661873,470.7912,-492.2235)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6226"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.1995"
+ x2="17.85282"
+ y1="214.6697"
+ x1="16.46609"
+ gradientTransform="matrix(1.002867,0,0,1.594894,476.8719,-260.6659)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6228"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="90.93561"
+ x2="497.2314"
+ y1="83.41934"
+ x1="490"
+ id="linearGradient5598"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5734"
+ gradientUnits="userSpaceOnUse"
+ y2="21.16041"
+ x2="279.4786"
+ y1="25.25768"
+ x1="283.9804"
+ id="linearGradient5612"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="25.59215"
+ x2="283.1054"
+ y1="22.03839"
+ x1="279.645"
+ id="linearGradient5620"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="309.5"
+ x2="81.92466"
+ y1="306.8306"
+ x1="79.59917"
+ id="linearGradient5632"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientTransform="translate(1,-1.24044)"
+ gradientUnits="userSpaceOnUse"
+ y2="169.5792"
+ x2="21.9317"
+ y1="167.0667"
+ x1="19.57576"
+ id="linearGradient5670"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5663"
+ gradientTransform="rotate(-12.16379,92.75996,132.2011)"
+ gradientUnits="userSpaceOnUse"
+ y2="120.936"
+ x2="87.87154"
+ y1="124.9658"
+ x1="94.05392"
+ id="linearGradient6123"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="247.0562"
+ x2="497.458"
+ y1="250.0241"
+ x1="500.0935"
+ gradientTransform="rotate(-12.16378,-271.0474,2116.582)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6168"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="121.3373"
+ x2="97.37693"
+ y1="118.015"
+ x1="94.58905"
+ gradientTransform="matrix(0.97755,-0.210707,0.218379,1.013142,-30.17658,18.69473)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6170"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientTransform="translate(0.30283,0.11441)"
+ gradientUnits="userSpaceOnUse"
+ y2="129.0092"
+ x2="86.0206"
+ y1="115.2534"
+ x1="75.09241"
+ id="linearGradient6189"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient700"
+ y2="118.6402"
+ x2="95.75075"
+ y1="121.4717"
+ x1="99.27937"
+ gradientTransform="matrix(0.97755,-0.211918,0.218379,1.018965,-62.10329,4.028774)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6325"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ gradientTransform="matrix(1,0,0,1.005747,-443,-167.4216)"
+ y2="275.9288"
+ x2="498.0183"
+ y1="278.6932"
+ x1="501.3698"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5228"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="279.6869"
+ x2="501.1567"
+ y1="276.5925"
+ x1="497.1992"
+ gradientTransform="matrix(1,0,0,1.005747,-444.4008,-168.4784)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5230"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientUnits="userSpaceOnUse"
+ y2="109.4688"
+ x2="48.80305"
+ y1="98.27665"
+ x1="44.28383"
+ id="linearGradient5436"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5774"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.6554"
+ x2="18.82314"
+ y1="219.9305"
+ x1="20.21689"
+ gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5776"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.6793"
+ x2="17.94699"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5778"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5786"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.6554"
+ x2="18.82314"
+ y1="219.9305"
+ x1="20.21689"
+ gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5788"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.6793"
+ x2="17.94699"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5790"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="218.6017"
+ x2="20.61538"
+ y1="212.6297"
+ x1="13.84434"
+ gradientTransform="matrix(0.751237,0,0,1.394996,1124.637,-101.6946)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3702"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="219.0135"
+ x2="20.6591"
+ y1="215.0097"
+ x1="17.62746"
+ gradientTransform="matrix(0.669342,0,0,1.655859,1126.157,-158.3099)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3704"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="213.663"
+ x2="15.9855"
+ y1="219.5232"
+ x1="19.47374"
+ gradientTransform="matrix(0.503763,0,0,0.992131,1129.211,-14.26594)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3706"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="218.6017"
+ x2="20.61538"
+ y1="212.6297"
+ x1="13.84434"
+ gradientTransform="matrix(1.123736,0,0,1.394996,1109.243,-88.69465)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3732"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="219.0135"
+ x2="20.6591"
+ y1="215.0097"
+ x1="17.62746"
+ gradientTransform="matrix(1.160002,0,0,1.655859,1108.567,-145.3099)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3734"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="213.663"
+ x2="15.9855"
+ y1="219.5232"
+ x1="19.47374"
+ gradientTransform="matrix(0.873045,0,0,0.992131,1113.859,-1.26599)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3736"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientTransform="translate(209.9854,0.409827)"
+ y2="38.28079"
+ x2="333.0172"
+ y1="34.56033"
+ x1="330.3861"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4736"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientTransform="translate(209.9854,0.409827)"
+ y2="39.12316"
+ x2="339.5418"
+ y1="33.54247"
+ x1="335.4563"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4738"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="254.2391"
+ x2="359.6935"
+ y1="269.269"
+ x1="368.9123"
+ gradientTransform="matrix(0.81842,0,0,0.200075,254.0602,-14.15959)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4740"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="259.7575"
+ x2="360.5774"
+ y1="265.3882"
+ x1="366.4836"
+ gradientTransform="matrix(0.181871,0,0,0.200075,474.8909,-14.15959)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4742"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ gradientTransform="translate(209.9854,0.409827)"
+ y2="31.66687"
+ x2="346"
+ y1="29.13977"
+ x1="344"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4748"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="234.0031"
+ x2="112.201"
+ y1="221.0688"
+ x1="101.0939"
+ gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient9254"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="188.4128"
+ x2="176.8627"
+ y1="157.8208"
+ x1="144.0824"
+ gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient9256"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="1.491036"
+ x2="223.9659"
+ y1="15.97338"
+ x1="206.4689"
+ gradientTransform="matrix(1.006993,0,0,1,-1.456289,0.0155694)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6160"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient4528"
+ r="8"
+ fy="72.99935"
+ fx="717.9988"
+ cy="72.99935"
+ cx="717.9988"
+ gradientTransform="matrix(1.12634,-0.471221,0.445195,1.164731,-121.1975,328.3106)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient4374"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6524"
+ y2="28.96459"
+ x2="843.9635"
+ y1="45.30668"
+ x1="860.239"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3749"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6524"
+ y2="28.96459"
+ x2="843.9635"
+ y1="45.30668"
+ x1="860.239"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3755"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2888"
+ y2="153.3422"
+ x2="176.0136"
+ y1="167.8534"
+ x1="182.9813"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8492"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2888"
+ y2="37.21967"
+ x2="-23.22442"
+ y1="34.12175"
+ x1="-26.25288"
+ gradientTransform="translate(200,120)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8494"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="120.5792"
+ x2="98.37736"
+ y1="120.625"
+ x1="95.23788"
+ gradientTransform="matrix(0.833333,0,0,1,7.291667,1.125)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8496"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="117.8514"
+ x2="89.75233"
+ y1="119.8891"
+ x1="85.2589"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8498"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5858"
+ y2="117.4021"
+ x2="75.1424"
+ y1="123.2129"
+ x1="65.27716"
+ gradientTransform="matrix(0.845944,0,0,1,30.563,-0.625005)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8500"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="125.9596"
+ x2="89.70349"
+ y1="125.8732"
+ x1="85.64042"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8502"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4528"
+ y2="246.8192"
+ x2="683.847"
+ y1="252.3578"
+ x1="673.6465"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8709"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4528"
+ y2="251.9159"
+ x2="678.7324"
+ y1="256.0717"
+ x1="671.7674"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8711"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4218"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4220"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4249"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4251"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5198"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5200"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="244.6786"
+ x2="717.6032"
+ y1="249.9805"
+ x1="712.986"
+ gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5218"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient12513"
+ y2="712.1672"
+ x2="61.99598"
+ y1="715.7595"
+ x1="64.60896"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5220"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5944"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5946"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.8799"
+ x2="15.65274"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5948"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.8796"
+ x2="17.50228"
+ y1="218.1055"
+ x1="19.63879"
+ gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5950"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.1995"
+ x2="17.85282"
+ y1="212.7111"
+ x1="14.85535"
+ gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5952"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="210.8717"
+ x2="16.80415"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5954"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="212.9507"
+ x2="10.29425"
+ y1="219.117"
+ x1="21.80956"
+ gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5956"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.2771"
+ x2="17.98802"
+ y1="213.6587"
+ x1="16.81461"
+ gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5958"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="264.6892"
+ x2="366.0981"
+ y1="261.2473"
+ x1="361.7094"
+ gradientTransform="matrix(1.02198,0,0,1,-306.8063,31.29639)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5960"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="178.6575"
+ x2="-33.69472"
+ y1="187.863"
+ x1="-37.33073"
+ gradientTransform="matrix(0,1,-1.02198,0,-158.6115,251.2932)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5962"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="264.6892"
+ x2="366.0981"
+ y1="261.2473"
+ x1="361.7094"
+ gradientTransform="matrix(1.02198,0,0,1,-307.3063,52.7964)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6122"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="178.6575"
+ x2="-33.69472"
+ y1="187.863"
+ x1="-37.33073"
+ gradientTransform="matrix(0,1,-1.02198,0,-159.1115,272.7932)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6125"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="212.9507"
+ x2="10.29425"
+ y1="219.117"
+ x1="21.80956"
+ gradientTransform="matrix(1.66352,0,0,3.319677,33.71939,-404.9123)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6146"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.2771"
+ x2="17.98802"
+ y1="213.6587"
+ x1="16.81461"
+ gradientTransform="matrix(1.252006,0,0,1.989026,41.31058,-116.1321)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6148"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="210.8717"
+ x2="16.80415"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.49944,0,0,1.713117,42.76116,-42.5525)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6151"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.8796"
+ x2="17.50228"
+ y1="218.1055"
+ x1="19.63879"
+ gradientTransform="matrix(1.165662,0,0,1.995259,38.42262,-122.5159)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6154"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.1995"
+ x2="17.85282"
+ y1="212.7111"
+ x1="14.85535"
+ gradientTransform="matrix(0.877306,0,0,1.195484,43.74192,51.05256)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6156"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.8799"
+ x2="15.65274"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.124786,0,0,1.142472,43.68042,71.69251)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6159"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientTransform="matrix(1,0,0,0.996869,180.9431,-216.2098)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6369"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="215.9465"
+ x2="143.2251"
+ y1="214.8174"
+ x1="148"
+ gradientTransform="translate(158,-105)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6371"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="215.9465"
+ x2="143.2251"
+ y1="214.8174"
+ x1="148"
+ gradientTransform="translate(158,-105)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient6436"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientTransform="matrix(0.735355,0,0,0.733012,215.5241,-110.6465)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient15119"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="215.9465"
+ x2="143.2251"
+ y1="214.8174"
+ x1="148"
+ gradientTransform="translate(158,-105)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient15121"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="215.9465"
+ x2="143.2251"
+ y1="214.8174"
+ x1="148"
+ gradientTransform="translate(158,-105)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient15135"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientTransform="matrix(0.533827,0,0,0.532126,226.8053,-40.17395)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient15141"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ 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"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="215.9465"
+ x2="143.2251"
+ y1="214.8174"
+ x1="148"
+ gradientTransform="translate(158,-105)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient15213"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientTransform="matrix(1,0,0,0.996869,215.9431,-248.2098)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4689"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4696"
+ gradientTransform="matrix(0.898695,0,0,0.466666,34.08168,53.63336)"
+ gradientUnits="userSpaceOnUse"
+ y2="107.4082"
+ x2="334.4963"
+ y1="86.63547"
+ x1="334.4035"
+ id="linearGradient4703"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4709"
+ y2="107.4082"
+ x2="334.4963"
+ y1="86.63547"
+ x1="334.4035"
+ gradientTransform="matrix(0.898695,0,0,0.933333,38.74835,6.266664)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4707"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4721"
+ y2="107.4082"
+ x2="334.4963"
+ y1="86.63547"
+ x1="334.4035"
+ gradientTransform="matrix(0.898695,0,0,0.666666,43.41501,33.33337)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4718"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5684"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5686"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="translate(-105,-15)"
+ y2="213"
+ x2="176"
+ y1="213"
+ x1="160"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5692"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ gradientTransform="translate(-105,-15)"
+ y2="213.0785"
+ x2="175.2934"
+ y1="213"
+ x1="160"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5696"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5728"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5730"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5750"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5752"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="311.079"
+ x2="698.2679"
+ y1="303.7007"
+ x1="693.279"
+ gradientTransform="translate(-0.999998,-0.937496)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5777"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="311.8198"
+ x2="696.8668"
+ y1="306.0704"
+ x1="693.4026"
+ gradientTransform="translate(-0.999998,-0.937496)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5779"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="213"
+ x2="176"
+ y1="213"
+ x1="160"
+ gradientTransform="translate(-147.4999,-94.5)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5841"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="218.5416"
+ x2="173.724"
+ y1="209.1406"
+ x1="163.8594"
+ gradientTransform="matrix(1.102855,0,0,1.148517,-164.5451,-124.7814)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5844"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="217.2552"
+ x2="173.0313"
+ y1="207.7552"
+ x1="161.2865"
+ gradientTransform="matrix(1.102855,0,0,1.148517,-165.0966,-125.3557)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5846"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient4798"
+ r="9.41594"
+ fy="-2729.78"
+ fx="-293.812"
+ cy="-2729.78"
+ cx="-293.812"
+ gradientTransform="matrix(1.20758,0.0165454,0.27747,1.03554,1573.42,3294.03)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient4365"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4935"
+ gradientTransform="matrix(1.00712,0,0,1.00712,16.0574,-204.726)"
+ y2="96.397"
+ x2="-14.7622"
+ y1="107.85"
+ x1="-0.535315"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4246"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ gradientTransform="matrix(1.062197,0,0,0.9973142,-1261.924,1.593331)"
+ gradientUnits="userSpaceOnUse"
+ y2="308.5"
+ x2="536.5"
+ y1="308.5"
+ x1="522.991"
+ id="linearGradient9331"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="214.0299"
+ x2="1095.32"
+ y1="180.8225"
+ x1="1095.307"
+ gradientTransform="matrix(0.9891733,0,0,0.9571849,-1182.248,9.280945)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4415"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="206.9573"
+ x2="1095.32"
+ y1="178.1412"
+ x1="1095.32"
+ gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.51422)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4428"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="213.1752"
+ x2="1095.32"
+ y1="180.1614"
+ x1="1095.32"
+ gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.2438)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4437"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="214.2806"
+ x2="1095.32"
+ y1="177.7928"
+ x1="1095.32"
+ gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.22875)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4447"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="209.1681"
+ x2="1096.518"
+ y1="181.3308"
+ x1="1096.518"
+ gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.2438)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4453"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="175.6769"
+ x2="1095.32"
+ y1="207.0233"
+ x1="1095.32"
+ gradientTransform="matrix(0.6644326,0,0,0.4062185,-764.818,107.4099)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4501"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="178.569"
+ x2="1095.381"
+ y1="203.0941"
+ x1="1095.32"
+ gradientTransform="matrix(0.6644326,0,0,-0.4062185,-764.818,258.5598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4507"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="179.9122"
+ x2="1095.32"
+ y1="205.1863"
+ x1="1095.32"
+ gradientTransform="matrix(0.6644326,0,0,-0.4062185,-764.818,264.5598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4521"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1610"
+ y2="178.569"
+ x2="1095.381"
+ y1="203.0941"
+ x1="1095.32"
+ gradientTransform="matrix(0.6644326,0,0,0.4062185,-764.818,101.4099)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient4523"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4826"
+ gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)"
+ y2="509.0494"
+ x2="354.9541"
+ y1="500.7186"
+ x1="368.343"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5184"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4820"
+ gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)"
+ y2="532.951"
+ x2="348.706"
+ y1="510.1404"
+ x1="359.7146"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5187"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient4832"
+ gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)"
+ y2="481.6766"
+ x2="373.9961"
+ y1="508.1568"
+ x1="348.706"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5190"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient19967-4-5">
+ <stop
+ id="stop19969-37-6"
+ offset="0"
+ style="stop-color:#73d216" />
+ <stop
+ id="stop19971-1-4"
+ offset="1.0000000"
+ style="stop-color:#4e9a06;stop-opacity:1" />
+ </linearGradient>
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient19967-4-5"
+ id="radialSnotBall"
+ gradientUnits="userSpaceOnUse"
+ cx="366.7874"
+ cy="1670.756"
+ fx="366.7874"
+ fy="1670.756"
+ r="4.275793" />
+ <clipPath
+ id="cieClip"
+ clipPathUnits="userSpaceOnUse">
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+ d="M 8.36,47.76 C 7.751574,47.51528 7.222277,46.90182 6.784323,46.39273 5.608271,45.02566 4.964826,43.30281 4.38,41.63 3.446394,38.95956 2.627116,36.19922 2.114165,33.41042 1.415792,29.6135 0.6129846,25.78424 0.3959804,21.94278 0.2093634,18.63925 -0.036735,15.09899 0.67,11.99 1.021272,10.44473 2.335229,8.406245 3.57,7.98 4.66602,7.601652 6.456945,8.746987 7.698531,9.504755 9.584304,10.65569 11.33779,12.01369 12.9958,13.4917 17.54131,17.54374 21.81301,21.89176 26.1391,26.17398 29.19235,29.19627 32.22777,32.23682 35.27,35.27 26.3,39.43333 17.33,43.59667 8.36,47.76 Z"
+ id="path2430"
+ sodipodi:nodetypes="cssssssssscc"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <radialGradient
+ xlink:href="#linearGradient5724"
+ r="11.5"
+ fy="216.4737"
+ fx="778"
+ cy="216.4737"
+ cx="778"
+ gradientTransform="matrix(1,0,0,0.826087,0,38.17391)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient8472"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient5724"
+ r="11.5"
+ fy="209.35"
+ fx="777"
+ cy="209.35"
+ cx="777"
+ gradientTransform="matrix(1.434932,0,0,0.608696,-337.9418,82.56952)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient8474"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient8482"
+ gradientUnits="userSpaceOnUse"
+ y2="214.25"
+ x2="783"
+ y1="200.25"
+ x1="770.5"
+ id="linearGradient5633"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient8482"
+ gradientUnits="userSpaceOnUse"
+ y2="218.25"
+ x2="782"
+ y1="216.875"
+ x1="763"
+ id="linearGradient5637"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6206"
+ id="linearGradient6212"
+ x1="-15.4575"
+ y1="94.60669"
+ x2="-0.9575"
+ y2="109.6067"
+ gradientUnits="userSpaceOnUse" />
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipoutline1">
+ <path
+ id="outline1"
+ d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 25.8,88.7 43.9,92.1 47.5,95.7 51.1,99.4 40.2,103.3 43.8,107 47.3,110.7 55.7,107.2 57.2,115.6 58.3,121.8 72.6,118.7 79,113.4 83,110 72.1,110 75.7,106.3 84.7,97.2 92.7,102.2 96,93.8 97.8,89.3 82.4,86.1 86.5,83.2 96.3,76.3 132.3,72.8 115.7,56.2 L 73,12.5 C 67.7,7.5 59,7.5 54.1,12.5 Z M 44.2,77.2 C 45.1,77.2 75,81.2 63.5,84.3 59.1,85.5 38.9,77.2 44.2,77.2 Z M 101.4,93.8 C 101.4,95.9 117.7,97.1 116.8,93.3 115.5,86.9 103.2,87.4 101.4,93.8 Z M 31.9,104.9 C 35.6,108.1 41.2,104.2 43,99.7 39.4,95 26.1,100 31.9,104.9 Z M 99.4,98.2 C 94.8,102.4 100.2,106.8 104.7,103.9 105.9,103.1 104.6,99.2 99.4,98.2 Z"
+ inkscape:connector-curvature="0" />
+ </clipPath>
+ <linearGradient
+ xlink:href="#WhiteTransparent"
+ y2="76"
+ x2="0"
+ y1="128"
+ x1="0"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3731"
+ inkscape:collect="always" />
+ <linearGradient
+ id="WhiteTransparent"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ style="stop-color:white;stop-opacity:1"
+ offset="0"
+ id="stop7" />
+ <stop
+ style="stop-color:white;stop-opacity:0"
+ offset="1"
+ id="stop9" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient3391"
+ y2="40"
+ x2="60"
+ y1="20"
+ x1="80"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3733"
+ inkscape:collect="always" />
+ <linearGradient
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3391">
+ <stop
+ id="stop3393"
+ offset="0"
+ style="stop-color:white;stop-opacity:1" />
+ <stop
+ id="stop3395"
+ offset="1"
+ style="stop-color:white;stop-opacity:0" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#WhiteTransparent"
+ y2="60"
+ x2="58"
+ y1="35"
+ x1="33"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3735"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#BlackTransparent"
+ y2="64"
+ x2="0"
+ y1="128"
+ x1="0"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3737"
+ inkscape:collect="always" />
+ <linearGradient
+ id="BlackTransparent"
+ gradientUnits="userSpaceOnUse">
+ <stop
+ style="stop-color:black;stop-opacity:1"
+ offset="0"
+ id="stop12" />
+ <stop
+ style="stop-color:black;stop-opacity:0"
+ offset="1"
+ id="stop14" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#WhiteTransparent"
+ y2="50"
+ x2="90"
+ y1="20"
+ x1="60"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3739"
+ inkscape:collect="always" />
+ <linearGradient
+ id="eraserFill">
+ <stop
+ id="stop5742_1"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop5744_1"
+ offset="1.0000000"
+ style="stop-color:#f3b698;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#eraserFill"
+ y2="234.0031"
+ x2="112.201"
+ y1="221.0688"
+ x1="101.0939"
+ gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient7424"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#eraserFill"
+ y2="188.4128"
+ x2="176.8627"
+ y1="157.8208"
+ x1="144.0824"
+ gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient7426"
+ inkscape:collect="always" />
+ <clipPath
+ clipPathUnits="userSpaceOnUse"
+ id="clipPath5905">
+ <rect
+ style="color:#000000;display:inline;visibility:visible;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.3344132;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
+ id="rect5907"
+ width="11.98896"
+ height="11.88748"
+ x="375.8356"
+ y="138.7635" />
+ </clipPath>
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="167.5526"
+ x2="123.9767"
+ y1="149.3739"
+ x1="113.7436"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5389"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5734"
+ y2="21.16041"
+ x2="279.4786"
+ y1="25.25768"
+ x1="283.9804"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5391"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="25.59215"
+ x2="283.1054"
+ y1="22.03839"
+ x1="279.645"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5393"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.605"
+ x2="18.58443"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1,0,0,0.570788,0,88.25561)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5609"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.7454"
+ x2="17.68847"
+ y1="221.1125"
+ x1="19.51159"
+ gradientTransform="matrix(0.997569,0,0,0.654301,-3.963176,65.55004)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5611"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="222.8609"
+ x2="17.28477"
+ y1="213.2477"
+ x1="14.87326"
+ gradientTransform="matrix(0.750795,0,0,0.392032,0.589107,122.468)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5613"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5663"
+ y2="521.0983"
+ x2="36.86864"
+ y1="509.9999"
+ x1="26.00001"
+ gradientTransform="translate(937,-210.9999)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5617"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="174.9988"
+ x2="-40.94155"
+ y1="192.3364"
+ x1="-29"
+ gradientTransform="translate(714.9212,-135)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5619"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.9016"
+ x2="16.94643"
+ y1="219.0517"
+ x1="22.00903"
+ gradientTransform="matrix(1,0,0,1.66306,-4.001611,-151.8935)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5677"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.8026"
+ x2="17.49814"
+ y1="213.2351"
+ x1="14.82746"
+ gradientTransform="matrix(0.752624,0,0,0.996445,0.561763,-7.22312)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5680"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="260.2477"
+ x2="361.7339"
+ y1="264.553"
+ x1="365.2316"
+ gradientTransform="matrix(0.455219,0,0,0.501233,377.5466,-100.7998)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5682"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="32.71318"
+ x2="544.95"
+ y1="27.95536"
+ x1="542.1904"
+ gradientTransform="matrix(0.997993,0,0,0.99958,1.061475,-0.0495296)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5685"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="85.67345"
+ x2="495.948"
+ y1="74.94392"
+ x1="482.6295"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5687"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient10585"
+ y2="78.52254"
+ x2="493.3302"
+ y1="77.8489"
+ x1="491.4307"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5689"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="29.51806"
+ x2="276.8348"
+ y1="24.09611"
+ x1="272.9582"
+ gradientTransform="translate(0.5,1.547499)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5766"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="28.99122"
+ x2="278.5278"
+ y1="24.1533"
+ x1="273.1214"
+ gradientTransform="translate(0,0.047499)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5768"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="184.8026"
+ x2="979.8044"
+ y1="182.4686"
+ x1="974.1975"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5770"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="184.6266"
+ x2="977.4031"
+ y1="180.7934"
+ x1="967.6506"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5772"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient500"
+ y2="182.083"
+ x2="979.2319"
+ y1="178.0314"
+ x1="968.2573"
+ gradientTransform="translate(0,-7)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5775"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="184.715"
+ x2="974.5747"
+ y1="178.9373"
+ x1="967.739"
+ gradientTransform="translate(0,-7)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5780"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="178.5336"
+ x2="964.1427"
+ y1="180"
+ x1="974.6495"
+ gradientTransform="translate(0,-2)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5782"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="181.0888"
+ x2="976.5202"
+ y1="177.3404"
+ x1="966.5179"
+ gradientTransform="translate(0,-2)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5784"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="184.8026"
+ x2="979.8044"
+ y1="182.4686"
+ x1="974.1975"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5787"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="181.7098"
+ x2="977.9335"
+ y1="178.3186"
+ x1="968.8881"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5789"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5791"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5793"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="218.5416"
+ x2="173.724"
+ y1="209.1406"
+ x1="163.8594"
+ gradientTransform="matrix(1.102855,0,0,1.148517,-167.5042,-41.73143)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5795"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="217.2552"
+ x2="173.0313"
+ y1="207.7552"
+ x1="161.2865"
+ gradientTransform="matrix(1.102855,0,0,1.148517,-168.0557,-42.30568)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5797"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="213"
+ x2="176"
+ y1="213"
+ x1="160"
+ gradientTransform="translate(-150.459,-11.45)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5799"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.605"
+ x2="18.58443"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1,0,0,0.570788,0,88.25561)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5801"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.7454"
+ x2="17.68847"
+ y1="218.2885"
+ x1="20.1778"
+ gradientTransform="matrix(0.997569,0,0,0.654301,-3.963176,65.55004)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5803"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.8375"
+ x2="17.88475"
+ y1="213.2477"
+ x1="14.87326"
+ gradientTransform="matrix(0.750795,0,0,0.392032,0.589107,122.468)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5805"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="211.8799"
+ x2="15.65274"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5807"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.8796"
+ x2="17.50228"
+ y1="218.1055"
+ x1="19.63879"
+ gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5809"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.1995"
+ x2="17.85282"
+ y1="212.7111"
+ x1="14.85535"
+ gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5811"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="210.8717"
+ x2="16.80415"
+ y1="205.4478"
+ x1="11.87961"
+ gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5813"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="212.9507"
+ x2="10.29425"
+ y1="219.117"
+ x1="21.80956"
+ gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5815"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="218.2771"
+ x2="17.98802"
+ y1="213.6587"
+ x1="16.81461"
+ gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5817"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="210.5"
+ x2="111.6865"
+ y1="210.5"
+ x1="99.31348"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5819"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="206.9966"
+ x2="101.1929"
+ y1="215.4819"
+ x1="108.3513"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5821"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="212.9901"
+ x2="108.8156"
+ y1="205.192"
+ x1="101.7507"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5823"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="218.3974"
+ x2="22.04275"
+ y1="214.0084"
+ x1="15.15684"
+ gradientTransform="matrix(1.124777,0,0,1.399469,339.507,-41.54364)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5825"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="218.8156"
+ x2="20.98923"
+ y1="215.0097"
+ x1="17.48326"
+ gradientTransform="matrix(1.165669,0,0,1.655559,338.7499,-97.1359)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5827"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="214.3821"
+ x2="16.10928"
+ y1="219.6944"
+ x1="19.08596"
+ gradientTransform="matrix(0.87731,0,0,0.991952,344.0693,46.88201)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5829"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="179.493"
+ x2="-24.43123"
+ y1="179.493"
+ x1="-47.74164"
+ gradientTransform="matrix(1,0,0,0.957993,-0.0384184,13.49742)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5831"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="181.0886"
+ x2="-29.50463"
+ y1="181.0886"
+ x1="-44.41746"
+ gradientTransform="matrix(1,0,0,0.963346,-0.0384184,12.50071)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5833"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="175.9908"
+ x2="-29.01316"
+ y1="175.9908"
+ x1="-37.77876"
+ gradientTransform="translate(-8.989043)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5835"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="179.493"
+ x2="-27.0385"
+ y1="179.493"
+ x1="-48.42912"
+ gradientTransform="matrix(1,0,0,0.957993,0,7.509185)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5837"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="181.645"
+ x2="-29.63546"
+ y1="181.5494"
+ x1="-44.36454"
+ gradientTransform="matrix(1,0,0,0.963346,0,6.51247)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5839"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="181.9908"
+ x2="-29.00001"
+ y1="181.9908"
+ x1="-37.50076"
+ gradientTransform="matrix(1.592997,0,0,1,11.72818,4)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5842"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="255.5"
+ x2="12.50002"
+ y1="249.821"
+ x1="10.19293"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5845"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="255.5312"
+ x2="12.53125"
+ y1="251.0312"
+ x1="9.03125"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5847"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="221.6924"
+ x2="20.35862"
+ y1="214.0084"
+ x1="15.15684"
+ gradientTransform="matrix(0.625152,0,0,1.007875,-0.61217,35.29459)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5849"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="217.0116"
+ x2="19.15613"
+ y1="215.6721"
+ x1="17.07591"
+ gradientTransform="matrix(0.501399,0,0,1.00217,1.674173,36.50449)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5851"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="215.4618"
+ x2="16.23219"
+ y1="220.3433"
+ x1="19.76252"
+ gradientTransform="matrix(0.377364,0,0,0.600465,3.962295,123.6837)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5853"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient2888"
+ r="7.469679"
+ fy="153.063"
+ fx="171.7755"
+ cy="153.063"
+ cx="171.7755"
+ gradientTransform="matrix(1.122233,1.252981,-2.05495,1.830229,297.3402,-339.2527)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient5855"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="138.5"
+ x2="36.18673"
+ y1="132.9464"
+ x1="31.37247"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5857"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="137.4738"
+ x2="42.18301"
+ y1="137.5165"
+ x1="34.5194"
+ gradientTransform="translate(-1.5,7.5244)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5859"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7772"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7778"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7780"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7786"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7788"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7794"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7796"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7802"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7804"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7810"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7812"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7818"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7820"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7826"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7828"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7834"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient7836"
+ gradientUnits="userSpaceOnUse"
+ r="1.111868"
+ fy="137.9821"
+ fx="375.0941"
+ cy="137.9821"
+ cx="375.0941"
+ id="radialGradient7842"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient2485-9">
+ <stop
+ id="stop2486-3"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop2487-1"
+ offset="1.0000000"
+ style="stop-color:#aaaaaa;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient3480-8">
+ <stop
+ id="stop3482-9"
+ offset="0.0000000"
+ style="stop-color:#646464;stop-opacity:1" />
+ <stop
+ id="stop3484-6"
+ offset="1.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient2485-9"
+ inkscape:collect="always"
+ id="linearGradient6465"
+ gradientUnits="userSpaceOnUse"
+ x1="61.44776"
+ y1="236.4112"
+ x2="64.5183"
+ y2="240.354"
+ gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)" />
+ <linearGradient
+ xlink:href="#linearGradient3480-8"
+ inkscape:collect="always"
+ id="linearGradient6467"
+ gradientUnits="userSpaceOnUse"
+ x1="59"
+ y1="235.1341"
+ x2="62.5"
+ y2="239.4902"
+ gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="183.3223"
+ x2="117.8272"
+ y1="174.4991"
+ x1="110"
+ gradientTransform="matrix(1.004126,0,0,0.991974,339.8742,1.209495)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5936"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6679"
+ y2="178.0064"
+ x2="452.4859"
+ y1="187.2543"
+ x1="456.7332"
+ gradientTransform="matrix(0.9975701,0,0,1.002994,1.42143,-0.2844345)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5939"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6679"
+ y2="180.2034"
+ x2="454.0355"
+ y1="190.8572"
+ x1="464.5001"
+ gradientTransform="matrix(0.9975701,0,0,1.002994,1.42143,-0.2844345)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5941"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6679-6"
+ gradientUnits="userSpaceOnUse"
+ y2="191.2326"
+ x2="98.80204"
+ y1="197.6577"
+ x1="102.7218"
+ id="linearGradient6636-2"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient6679-6">
+ <stop
+ style="stop-color:#ffeb74;stop-opacity:1"
+ offset="0"
+ id="stop6681-6" />
+ <stop
+ style="stop-color:#ffffff;stop-opacity:1"
+ offset="1"
+ id="stop6683-7" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient6679-6"
+ gradientUnits="userSpaceOnUse"
+ y2="190.2852"
+ x2="99.93163"
+ y1="199.9722"
+ x1="109.2829"
+ id="linearGradient6625-4"
+ inkscape:collect="always" />
+ <radialGradient
+ xlink:href="#linearGradient5602"
+ r="0.75"
+ fy="222.75"
+ fx="842.7534"
+ cy="222.75"
+ cx="842.25"
+ gradientTransform="matrix(1,0,0,1.666667,0,-148.5)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient5496"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5769"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.0088"
+ x2="18.70757"
+ y1="218.5568"
+ x1="20.10132"
+ gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5771"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="220.3475"
+ x2="18.5289"
+ y1="213.6631"
+ x1="15.24248"
+ gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5773"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5781"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5899"
+ y2="215.0088"
+ x2="18.70757"
+ y1="218.5568"
+ x1="20.10132"
+ gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5783"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5899"
+ y2="220.3475"
+ x2="18.5289"
+ y1="213.6631"
+ x1="15.24248"
+ gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5785"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5792"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6679"
+ y2="217.8534"
+ x2="19.32815"
+ y1="215.1325"
+ x1="18.13082"
+ gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5794"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6679"
+ y2="212.9197"
+ x2="16.01938"
+ y1="217.4612"
+ x1="18.52884"
+ gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5796"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5798"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.0088"
+ x2="18.70757"
+ y1="218.5568"
+ x1="20.10132"
+ gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5800"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="220.3475"
+ x2="18.5289"
+ y1="213.6631"
+ x1="15.24248"
+ gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5802"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.376547,0,0,0.715004,987.5221,390.567)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5804"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.0088"
+ x2="18.70757"
+ y1="218.5568"
+ x1="20.10132"
+ gradientTransform="matrix(2.832796,0,0,1.012546,969.5753,320.266)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5806"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="220.3475"
+ x2="18.5289"
+ y1="213.6631"
+ x1="15.24248"
+ gradientTransform="matrix(2.13203,0,0,0.606678,982.5022,408.3478)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5808"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.876376,0,0,0.566024,994.7794,429.2398)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5810"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.0088"
+ x2="18.70757"
+ y1="218.5568"
+ x1="20.10132"
+ gradientTransform="matrix(2.163766,0,0,0.677519,981.9622,400.4873)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5812"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="220.3475"
+ x2="18.5289"
+ y1="213.6631"
+ x1="15.24248"
+ gradientTransform="matrix(1.628503,0,0,0.405944,991.836,459.4251)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5814"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.760936,0,0,0.714541,964.9956,383.6551)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5816"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.0088"
+ x2="18.70757"
+ y1="218.5568"
+ x1="20.10132"
+ gradientTransform="matrix(1.999772,0,0,0.998752,953.4881,316.2596)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5818"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="220.3475"
+ x2="18.5289"
+ y1="213.6631"
+ x1="15.24248"
+ gradientTransform="matrix(1.505077,0,0,0.598412,962.6137,403.1414)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5820"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5519"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.6554"
+ x2="18.82314"
+ y1="219.9305"
+ x1="20.21689"
+ gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5521"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.6793"
+ x2="17.94699"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5523"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.750568,0,0,1.002646,-133.3919,-18.49926)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5525"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.2099"
+ x2="17.75236"
+ y1="218.9795"
+ x1="18.84686"
+ gradientTransform="matrix(3.333119,0,0,1.671823,-155.1792,-171.7462)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5527"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="217.8234"
+ x2="17.31054"
+ y1="213.2164"
+ x1="16.04734"
+ gradientTransform="matrix(2.508587,0,0,1.001693,-139.9689,-26.31358)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5529"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="218.6017"
+ x2="20.61538"
+ y1="212.6297"
+ x1="13.84434"
+ gradientTransform="matrix(0.751237,0,0,1.001998,-38.40231,-39.41679)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5531"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="219.0135"
+ x2="20.6591"
+ y1="215.0097"
+ x1="17.62746"
+ gradientTransform="matrix(0.669342,0,0,1.001998,-36.88229,-39.41679)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5533"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient6684"
+ y2="213.663"
+ x2="15.9855"
+ y1="219.5232"
+ x1="19.47374"
+ gradientTransform="matrix(0.503763,0,0,0.600361,-33.82784,47.74752)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5535"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.373757,0,0,0.715969,-52.92573,45.42126)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5537"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.6554"
+ x2="18.82314"
+ y1="219.9305"
+ x1="20.21689"
+ gradientTransform="matrix(1.537676,0,0,1.000883,-61.45158,-22.13894)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5539"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.6793"
+ x2="17.94699"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.157292,0,0,0.59969,-54.4347,64.92824)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5541"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.125329,0,0,1.002646,-66.82105,-25.5096)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5543"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.2099"
+ x2="17.75236"
+ y1="218.9795"
+ x1="18.84686"
+ gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5545"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="217.8234"
+ x2="17.31054"
+ y1="213.2164"
+ x1="16.04734"
+ gradientTransform="matrix(1.88093,0,0,1.001693,-70.83858,-33.32392)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5547"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.114324,0,0,1.002646,-47.33758,-30.1841)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5549"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.5512"
+ x2="17.15024"
+ y1="218.8883"
+ x1="18.50864"
+ gradientTransform="matrix(2.026443,0,0,1.557511,-54.13118,-158.6166)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5551"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.4184"
+ x2="19.38252"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.525151,0,0,0.933201,-44.88385,-23.1282)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5553"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5204"
+ y2="92.00739"
+ x2="17.62963"
+ y1="86.26574"
+ x1="13.47978"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5555"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="190.6634"
+ x2="-31.90349"
+ y1="182.984"
+ x1="-36.60167"
+ gradientTransform="matrix(0.979208,0,0,1.000037,-0.74827,-0.0068457)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5557"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="190.6634"
+ x2="-31.90349"
+ y1="182.984"
+ x1="-36.60167"
+ gradientTransform="matrix(0.979208,0,0,1.000037,-0.74827,-0.0068457)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5559"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.379581,0,0,0.714792,-52.98861,39.49312)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5561"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.6554"
+ x2="18.82314"
+ y1="219.9305"
+ x1="20.21689"
+ gradientTransform="matrix(1.540284,0,0,0.860045,-61.50452,2.251502)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5563"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.6793"
+ x2="17.94699"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.159256,0,0,0.515305,-54.47574,77.06717)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5565"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.128037,0,0,0.860357,-56.33685,-3.243876)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5567"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.2099"
+ x2="17.75236"
+ y1="218.9795"
+ x1="18.84686"
+ gradientTransform="matrix(1.171839,0,0,1.346914,-61.66084,-115.7031)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5569"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="217.8234"
+ x2="17.31054"
+ y1="213.2164"
+ x1="16.04734"
+ gradientTransform="matrix(0.881955,0,0,0.807019,-56.31336,1.465486)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5571"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.125329,0,0,0.860357,-66.82105,3.798256)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5573"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.2099"
+ x2="17.75236"
+ y1="218.9795"
+ x1="18.84686"
+ gradientTransform="matrix(2.499161,0,0,1.346914,-82.24308,-108.661)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5575"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="217.8234"
+ x2="17.31054"
+ y1="213.2164"
+ x1="16.04734"
+ gradientTransform="matrix(1.88093,0,0,0.807019,-70.83858,8.507618)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5577"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5579"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.0088"
+ x2="18.70757"
+ y1="218.5568"
+ x1="20.10132"
+ gradientTransform="matrix(1.588886,0,0,1.000747,-62.51619,-22.10887)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5581"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="220.3475"
+ x2="18.5289"
+ y1="213.6631"
+ x1="15.24248"
+ gradientTransform="matrix(1.195834,0,0,0.599608,-55.26563,64.94646)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5583"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="190.6634"
+ x2="-31.90349"
+ y1="182.984"
+ x1="-36.60167"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5585"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.635962,0,0,1.002646,-132.1469,-17.5056)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5599"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="215.2099"
+ x2="17.75236"
+ y1="218.9795"
+ x1="18.84686"
+ gradientTransform="matrix(3.19424,0,0,1.671823,-153.0264,-170.7525)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5601"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="217.8234"
+ x2="17.31054"
+ y1="213.2164"
+ x1="16.04734"
+ gradientTransform="matrix(2.404063,0,0,1.001693,-138.4499,-25.31992)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5603"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="190.6634"
+ x2="-31.90349"
+ y1="182.984"
+ x1="-36.60167"
+ gradientTransform="matrix(0.761633,0,0,0.73832,-7.689547,50.44869)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5605"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="-34.57729"
+ x2="185.5131"
+ y1="-32.76031"
+ x1="191.4072"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5607"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="-32.76031"
+ x2="187.8951"
+ y1="-35.83336"
+ x1="184.7529"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5610"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.275458,0,0,0.617087,-51.07375,65.67334)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5614"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.6554"
+ x2="18.82314"
+ y1="219.9305"
+ x1="20.21689"
+ gradientTransform="matrix(1.427647,0,0,0.862651,-58.98949,7.443876)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5616"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.6793"
+ x2="17.94699"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.074481,0,0,0.516867,-52.4747,82.48618)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5618"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.122046,0,0,1.141686,1256.157,85.12902)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5727"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.5512"
+ x2="17.15024"
+ y1="218.8883"
+ x1="18.50864"
+ gradientTransform="matrix(1.166116,0,0,1.996022,1250.853,-109.4101)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5729"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.4184"
+ x2="19.38252"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(0.877647,0,0,1.195941,1256.174,64.2245)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5731"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.5512"
+ x2="17.15024"
+ y1="218.8883"
+ x1="18.50864"
+ gradientTransform="matrix(3.497619,0,0,4.978934,852.2632,-828.4634)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5733"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.4184"
+ x2="19.38252"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(2.632392,0,0,2.983189,868.2229,-395.3445)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5735"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(2.873378,0,0,2.426599,875.3153,-255.174)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5737"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.122046,0,0,1.141686,1256.157,85.12902)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5739"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.5512"
+ x2="17.15024"
+ y1="218.8883"
+ x1="18.50864"
+ gradientTransform="matrix(1.166116,0,0,2.310495,1250.853,-177.6338)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5741"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.4184"
+ x2="19.38252"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(0.877647,0,0,1.384362,1256.174,23.35694)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5743"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.5512"
+ x2="17.15024"
+ y1="218.8883"
+ x1="18.50864"
+ gradientTransform="matrix(1.845525,0,0,3.663228,882.7464,-542.9603)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5745"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.4184"
+ x2="19.38252"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.388986,0,0,2.194866,891.1676,-224.2946)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5747"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.633329,0,0,1.857722,893.2793,-136.2796)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5749"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.5512"
+ x2="17.15024"
+ y1="218.8883"
+ x1="18.50864"
+ gradientTransform="matrix(1.845525,0,0,3.663228,882.7464,-542.9603)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5751"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.4184"
+ x2="19.38252"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.388986,0,0,2.194866,891.1676,-224.2946)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5753"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.633329,0,0,1.857722,893.2793,-136.2796)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5755"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.874592,0,0,1.427199,885.7444,-52.79294)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5757"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="214.5512"
+ x2="17.15024"
+ y1="218.8883"
+ x1="18.50864"
+ gradientTransform="matrix(2.163921,0,0,2.660263,872.8832,-331.8032)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5759"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="219.4184"
+ x2="19.38252"
+ y1="213.872"
+ x1="15.74156"
+ gradientTransform="matrix(1.62862,0,0,1.593929,882.7572,-100.3862)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5762"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="209.2774"
+ x2="14.01084"
+ y1="203.3658"
+ x1="10.04167"
+ gradientTransform="matrix(1.629558,0,0,0.429186,88.20441,232.3331)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5764"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="220.3475"
+ x2="18.5289"
+ y1="213.6631"
+ x1="15.24248"
+ gradientTransform="matrix(1.387116,0,0,0.200828,86.1208,278.4604)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5767"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5663"
+ y2="57.5"
+ x2="865.5"
+ y1="66"
+ x1="872"
+ gradientTransform="translate(20)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5824"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2485"
+ y2="30.79385"
+ x2="917.3691"
+ y1="19.1921"
+ x1="905.4675"
+ gradientTransform="matrix(1.159934,0,0,1.224222,-143.4594,-12.87852)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5826"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5704"
+ y2="27.32372"
+ x2="922.5571"
+ y1="20.45271"
+ x1="915.0701"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5828"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient700"
+ inkscape:collect="always"
+ id="linearGradient7059"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,33.80746)"
+ x1="606.9615"
+ y1="220.3636"
+ x2="602.0698"
+ y2="221.2004" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ inkscape:collect="always"
+ id="linearGradient7062"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,33.80746)"
+ x1="593.1874"
+ y1="195.5188"
+ x2="599.2378"
+ y2="204.916" />
+ <linearGradient
+ xlink:href="#linearGradient700"
+ inkscape:collect="always"
+ id="linearGradient7065"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,33.80746)"
+ x1="587.9551"
+ y1="222.3478"
+ x2="582.4935"
+ y2="220.8004" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ inkscape:collect="always"
+ id="linearGradient7069"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,33.80746)"
+ x1="593.3162"
+ y1="186.6364"
+ x2="597.3068"
+ y2="188.5494" />
+ <linearGradient
+ xlink:href="#linearGradient2888"
+ inkscape:collect="always"
+ id="linearGradient7072"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,34.89977)"
+ x1="594.8112"
+ y1="213.1902"
+ x2="594.861"
+ y2="216.7914" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ inkscape:collect="always"
+ id="linearGradient7074"
+ gradientUnits="userSpaceOnUse"
+ x1="609.5726"
+ y1="215.402"
+ x2="612.2578"
+ y2="216.4033" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ inkscape:collect="always"
+ id="linearGradient7102"
+ gradientUnits="userSpaceOnUse"
+ x1="591.3853"
+ y1="198.5761"
+ x2="592.8656"
+ y2="198.5761" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="350.1636"
+ x2="130.3522"
+ y1="343.258"
+ x1="121.1177"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2876"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient5740"
+ y2="46.339"
+ x2="414.2602"
+ y1="46.33899"
+ x1="404.6787"
+ gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2878"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient2888"
+ y2="216.7914"
+ x2="594.861"
+ y1="213.1902"
+ x1="594.8112"
+ gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.556,-101.4348)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2880"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="188.5494"
+ x2="597.3068"
+ y1="186.6364"
+ x1="593.3162"
+ gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8846,-102.259)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2882"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient700"
+ y2="220.8004"
+ x2="582.4935"
+ y1="222.3478"
+ x1="587.9551"
+ gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8846,-102.259)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2884"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="204.916"
+ x2="599.2378"
+ y1="195.5188"
+ x1="593.1874"
+ gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8846,-102.259)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2886"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient700"
+ y2="221.2004"
+ x2="602.0698"
+ y1="220.3636"
+ x1="606.9615"
+ gradientTransform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8846,-102.259)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2889"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient800"
+ y2="216.4033"
+ x2="612.2578"
+ y1="215.402"
+ x1="609.5726"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2891"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient3480"
+ y2="198.5761"
+ x2="592.8656"
+ y1="198.5761"
+ x1="591.3853"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient2893"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient1887"
+ y2="132.8273"
+ x2="906.6448"
+ y1="116.8648"
+ x1="899.6934"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient3740"
+ inkscape:collect="always" />
+ <linearGradient
+ x1="348.6006"
+ y1="338.0772"
+ x2="375.3615"
+ y2="318.0103"
+ id="linearGradient6466-2"
+ xlink:href="#linearGradient6618"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(19.05203,-3.089519)" />
+ <linearGradient
+ x1="348.6006"
+ y1="338.0772"
+ x2="375.3615"
+ y2="318.0103"
+ id="linearGradient6468-0"
+ xlink:href="#linearGradient6618"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(4.119358,37.58914)" />
+ <linearGradient
+ x1="348.6006"
+ y1="338.0772"
+ x2="375.3615"
+ y2="318.0103"
+ id="linearGradient6563-3"
+ xlink:href="#linearGradient6618"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(28.32058,70.02908)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6618"
+ id="linearGradient5783-6-3"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.8269532,0,0,0.8236011,90.7184,44.23329)"
+ x1="348.6006"
+ y1="338.0772"
+ x2="375.3615"
+ y2="318.0103" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6618"
+ id="linearGradient6583-7"
+ x1="371.2368"
+ y1="322.8861"
+ x2="395.2692"
+ y2="322.8861"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(0.3379059,-0.1655273)" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10585-7"
+ id="linearGradient5209"
+ gradientUnits="userSpaceOnUse"
+ x1="5.644915"
+ y1="209.9819"
+ x2="13.52223"
+ y2="214.7789" />
+ <linearGradient
+ id="linearGradient10585-7">
+ <stop
+ style="stop-color:#d7d7d7;stop-opacity:1"
+ offset="0.0000000"
+ id="stop10587-0" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop10595-2" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient10585-7"
+ y2="214.7789"
+ x2="13.52223"
+ y1="209.9819"
+ x1="5.644915"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8278-4"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient10585-7"
+ y2="214.7789"
+ x2="13.52223"
+ y1="209.9819"
+ x1="5.644915"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8276-2"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient10585-7"
+ y2="214.7789"
+ x2="13.52223"
+ y1="209.9819"
+ x1="5.644915"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8290-1"
+ inkscape:collect="always" />
+ <linearGradient
+ xlink:href="#linearGradient10585-7"
+ y2="214.7789"
+ x2="13.52223"
+ y1="209.9819"
+ x1="5.644915"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient8288-3"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5704-1">
+ <stop
+ id="stop5706-5"
+ offset="0"
+ style="stop-color:#5a5a5a;stop-opacity:1" />
+ <stop
+ id="stop5708-0"
+ offset="1.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6684-6">
+ <stop
+ id="stop6686-3"
+ offset="0.0000000"
+ style="stop-color:#ffbf00;stop-opacity:1" />
+ <stop
+ id="stop6688-7"
+ offset="1.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient24464">
+ <stop
+ id="stop24466"
+ offset="0"
+ style="stop-color:#499204;stop-opacity:1" />
+ <stop
+ id="stop24468"
+ offset="1.0000000"
+ style="stop-color:#a7e26e;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6684-6"
+ id="linearGradient7067"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.061943,0.6131129,-0.6131129,-1.061943,1168.341,499.529)"
+ x1="501.3698"
+ y1="278.6932"
+ x2="498.0183"
+ y2="275.9288" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5704-1"
+ id="linearGradient7070"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-1.061943,0.6131129,-0.6131129,-1.061943,1170.473,499.786)"
+ x1="497.1992"
+ y1="276.5925"
+ x2="501.1567"
+ y2="279.6869" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient24464"
+ id="linearGradient7073"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(-0.9089148,0.8231073,-0.8530767,-0.9420083,659.3328,552.0315)"
+ x1="99.27937"
+ y1="121.4717"
+ x2="95.75075"
+ y2="118.6402" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5704-0"
+ id="linearGradient8980"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)"
+ x1="11.87961"
+ y1="205.4478"
+ x2="18.58443"
+ y2="211.605" />
+ <linearGradient
+ id="linearGradient5704-0">
+ <stop
+ style="stop-color:#5a5a5a;stop-opacity:1"
+ offset="0"
+ id="stop5706-2" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop5708-9" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5734-6"
+ id="linearGradient8982"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)"
+ x1="16.3967"
+ y1="214.8097"
+ x2="21.32992"
+ y2="218.8141" />
+ <linearGradient
+ id="linearGradient5734-6">
+ <stop
+ id="stop5736-0"
+ offset="0"
+ style="stop-color:#8ab3df;stop-opacity:1" />
+ <stop
+ id="stop5738-9"
+ offset="1"
+ style="stop-color:#ffffff" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-3"
+ id="linearGradient8984"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)"
+ x1="15.64649"
+ y1="214.5411"
+ x2="17.49814"
+ y2="218.8026" />
+ <linearGradient
+ id="linearGradient5740-3">
+ <stop
+ id="stop5742-5"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop5744-4"
+ offset="1.0000000"
+ style="stop-color:#98b6d3;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5704-0"
+ id="linearGradient8986"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)"
+ x1="11.87961"
+ y1="205.4478"
+ x2="18.58443"
+ y2="211.605" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5734-6"
+ id="linearGradient8988"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)"
+ x1="16.3967"
+ y1="214.8097"
+ x2="21.32992"
+ y2="218.8141" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-3"
+ id="linearGradient8990"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)"
+ x1="15.64649"
+ y1="214.5411"
+ x2="17.49814"
+ y2="218.8026" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5704-0"
+ id="linearGradient8772"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)"
+ x1="11.87961"
+ y1="205.4478"
+ x2="18.58443"
+ y2="211.605" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5734-6"
+ id="linearGradient8774"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)"
+ x1="16.3967"
+ y1="214.8097"
+ x2="21.32992"
+ y2="218.8141" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-3"
+ id="linearGradient8776"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)"
+ x1="15.64649"
+ y1="214.5411"
+ x2="17.49814"
+ y2="218.8026" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5704-0"
+ id="linearGradient8766"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)"
+ x1="11.87961"
+ y1="205.4478"
+ x2="18.58443"
+ y2="211.605" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5734-6"
+ id="linearGradient8768"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)"
+ x1="16.3967"
+ y1="214.8097"
+ x2="21.32992"
+ y2="218.8141" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-3"
+ id="linearGradient8770"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)"
+ x1="15.64649"
+ y1="214.5411"
+ x2="17.49814"
+ y2="218.8026" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5704-3"
+ id="linearGradient6608"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)"
+ x1="11.87961"
+ y1="205.4478"
+ x2="18.58443"
+ y2="211.605" />
+ <linearGradient
+ id="linearGradient5704-3">
+ <stop
+ style="stop-color:#5a5a5a;stop-opacity:1"
+ offset="0"
+ id="stop5706-7" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop5708-90" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5734-2"
+ id="linearGradient6610"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)"
+ x1="16.3967"
+ y1="214.8097"
+ x2="21.32992"
+ y2="218.8141" />
+ <linearGradient
+ id="linearGradient5734-2">
+ <stop
+ id="stop5736-3"
+ offset="0"
+ style="stop-color:#8ab3df;stop-opacity:1" />
+ <stop
+ id="stop5738-99"
+ offset="1"
+ style="stop-color:#ffffff" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-7"
+ id="linearGradient6612"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)"
+ x1="15.64649"
+ y1="214.5411"
+ x2="17.49814"
+ y2="218.8026" />
+ <linearGradient
+ id="linearGradient5740-7">
+ <stop
+ id="stop5742-0"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop5744-3"
+ offset="1.0000000"
+ style="stop-color:#98b6d3;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5704-3"
+ id="linearGradient6614"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)"
+ x1="11.87961"
+ y1="205.4478"
+ x2="18.58443"
+ y2="211.605" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5734-2"
+ id="linearGradient6616"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)"
+ x1="16.3967"
+ y1="214.8097"
+ x2="21.32992"
+ y2="218.8141" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5740-7"
+ id="linearGradient6618-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)"
+ x1="15.64649"
+ y1="214.5411"
+ x2="17.49814"
+ y2="218.8026" />
+ <linearGradient
+ xlink:href="#linearGradient5704-46"
+ y2="351.125"
+ x2="511.4375"
+ y1="347.1808"
+ x1="508.1888"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5857-1"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5704-46">
+ <stop
+ style="stop-color:#5a5a5a;stop-opacity:1"
+ offset="0"
+ id="stop668" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop5708-01" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient5704-48"
+ y2="352.1231"
+ x2="518.6993"
+ y1="346.5179"
+ x1="515.2157"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5857-64"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5704-48">
+ <stop
+ style="stop-color:#5a5a5a;stop-opacity:1"
+ offset="0"
+ id="stop673" />
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="1.0000000"
+ id="stop5708-16" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient4698-52"
+ y2="350.407"
+ x2="532.363"
+ y1="347.4531"
+ x1="529.5001"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5621-6"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient4698-52">
+ <stop
+ id="stop4700-98"
+ offset="0"
+ style="stop-color:#a2d3ff;stop-opacity:1" />
+ <stop
+ id="stop4702-1"
+ offset="1.0000000"
+ style="stop-color:#004c91;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient4698-1"
+ y2="350.5838"
+ x2="538.064"
+ y1="346.8714"
+ x1="534.5285"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5621-8"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient4698-1">
+ <stop
+ id="stop4700-5"
+ offset="0"
+ style="stop-color:#a2d3ff;stop-opacity:1" />
+ <stop
+ id="stop4702-2"
+ offset="1.0000000"
+ style="stop-color:#004c91;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3480-9"
+ id="linearGradient12203"
+ x1="515.9623"
+ y1="349.3102"
+ x2="523.4155"
+ y2="346.7762"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ id="linearGradient3480-9">
+ <stop
+ id="stop3482-6"
+ offset="0.0000000"
+ style="stop-color:#646464;stop-opacity:1" />
+ <stop
+ id="stop3484-0"
+ offset="1.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3480-9"
+ id="linearGradient12201"
+ x1="519.4526"
+ y1="354.5319"
+ x2="521.2233"
+ y2="351.8581"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ gradientTransform="rotate(15,511.8463,316.8629)"
+ y2="351.8581"
+ x2="521.2233"
+ y1="354.5319"
+ x1="519.4526"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient12220"
+ xlink:href="#linearGradient3480-4"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3480-4">
+ <stop
+ id="stop3482-7"
+ offset="0.0000000"
+ style="stop-color:#646464;stop-opacity:1" />
+ <stop
+ id="stop3484-8"
+ offset="1.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient4698-8">
+ <stop
+ id="stop4700-6"
+ offset="0"
+ style="stop-color:#a2d3ff;stop-opacity:1" />
+ <stop
+ id="stop4702-24"
+ offset="1.0000000"
+ style="stop-color:#004c91;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4698-8"
+ id="linearGradient12388"
+ gradientUnits="userSpaceOnUse"
+ x1="31.37247"
+ y1="132.9464"
+ x2="36.18673"
+ y2="138.5" />
+ <radialGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4698-8"
+ id="radialGradient12390"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1,0,0,0.153846,0,120.5976)"
+ cx="35.25"
+ cy="142.5244"
+ fx="35.25"
+ fy="142.5244"
+ r="3.25" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient4698-8"
+ id="linearGradient12392"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-1.5,7.5244)"
+ x1="34.5194"
+ y1="137.5165"
+ x2="42.18301"
+ y2="137.4738" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5912">
+ <stop
+ style="stop-color:#000000;stop-opacity:1"
+ offset="0"
+ id="stop5914" />
+ <stop
+ style="stop-color:#808080;stop-opacity:1"
+ offset="1"
+ id="stop5916" />
+ </linearGradient>
+ <linearGradient
+ id="linearGradient6784-4"
+ inkscape:collect="always">
+ <stop
+ id="stop6786-7"
+ offset="0"
+ style="stop-color:#000000;stop-opacity:1" />
+ <stop
+ id="stop6788-0"
+ offset="1"
+ style="stop-color:#808080;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5912"
+ id="linearGradient5918"
+ x1="643.5"
+ y1="311"
+ x2="634.5"
+ y2="299.5"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient6784-4"
+ id="linearGradient5918-3-6"
+ x1="675.5"
+ y1="310"
+ x2="664.5"
+ y2="297.5"
+ gradientUnits="userSpaceOnUse" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5926">
+ <stop
+ style="stop-color:#004c91;stop-opacity:1"
+ offset="0"
+ id="stop5928" />
+ <stop
+ style="stop-color:#91c5f3;stop-opacity:1"
+ offset="1"
+ id="stop5930" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5926-0-9">
+ <stop
+ style="stop-color:#004c91;stop-opacity:1"
+ offset="0"
+ id="stop5928-3-1" />
+ <stop
+ style="stop-color:#91c5f3;stop-opacity:1"
+ offset="1"
+ id="stop5930-5-6" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5926"
+ id="linearGradient5932"
+ gradientUnits="userSpaceOnUse"
+ x1="656.1874"
+ y1="305.6875"
+ x2="647"
+ y2="293.5" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient5926-0-9"
+ id="linearGradient5932-9-2"
+ gradientUnits="userSpaceOnUse"
+ x1="686.5"
+ y1="318.5"
+ x2="677.5"
+ y2="306.5" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#eraserFill-6"
+ id="linearGradient10236"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(1.13356,0,0,1.133368,-243.4437,205.1983)"
+ x1="101.0939"
+ y1="221.0688"
+ x2="112.201"
+ y2="234.0031" />
+ <linearGradient
+ id="eraserFill-6">
+ <stop
+ id="stop5742_1-1"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop5744_1-5"
+ offset="1.0000000"
+ style="stop-color:#f3b698;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#eraserFill-6"
+ id="linearGradient10238"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="matrix(0.809546,0,0,0.809417,-240.0191,332.4799)"
+ x1="144.0824"
+ y1="157.8208"
+ x2="176.8627"
+ y2="188.4128" />
+ <linearGradient
+ inkscape:collect="always"
+ id="gray_to_white">
+ <stop
+ id="stop7750-9"
+ offset="0"
+ style="stop-color:#afafaf;stop-opacity:1" />
+ <stop
+ id="stop7748-6"
+ offset="1"
+ style="stop-color:#e6e6e6;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ y2="536.965"
+ x2="217.426"
+ y1="536.767"
+ x1="263.478"
+ gradientTransform="matrix(0.117347,0,0,0.117347,252.7175,248.3363)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient7163"
+ xlink:href="#gray_to_white"
+ inkscape:collect="always" />
+ <radialGradient
+ r="62.3947"
+ fy="542.529"
+ fx="234.355"
+ cy="542.529"
+ cx="234.355"
+ gradientTransform="matrix(1,0,0,0.263368,0,365.571)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient7218"
+ xlink:href="#BlackTransparent"
+ inkscape:collect="always" />
+ <radialGradient
+ r="62.3947"
+ fy="542.529"
+ fx="234.355"
+ cy="542.529"
+ cx="234.355"
+ gradientTransform="matrix(1,0,0,0.263368,0,365.571)"
+ gradientUnits="userSpaceOnUse"
+ id="radialGradient7220"
+ xlink:href="#WhiteTransparent"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="376.4393"
+ x2="-557.8917"
+ y1="115.2545"
+ x1="-815.2852"
+ gradientTransform="matrix(1,0,0,0.997925,315.4232,-138.2771)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient15270-5"
+ xlink:href="#linearGradient3480-7-6"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient3480-7-6">
+ <stop
+ id="stop3482-77-2"
+ offset="0.0000000"
+ style="stop-color:#646464;stop-opacity:1" />
+ <stop
+ id="stop3484-3-2"
+ offset="1.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ xlink:href="#linearGradient5740-1-4-6"
+ y2="180.6826"
+ x2="164.3598"
+ y1="172.2059"
+ x1="161.736"
+ gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient5545-0-70"
+ inkscape:collect="always" />
+ <linearGradient
+ id="linearGradient5740-1-4-6">
+ <stop
+ id="stop5742-8-4-8"
+ offset="0.0000000"
+ style="stop-color:#ffffff;stop-opacity:1" />
+ <stop
+ id="stop5744-32-6-3"
+ offset="1.0000000"
+ style="stop-color:#98b6d3;stop-opacity:1" />
+ </linearGradient>
+ <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" />
+ <stop
+ id="stop1889-94"
+ offset="1.0000000"
+ style="stop-color:#cdccc7;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10331"
+ id="linearGradient10399"
+ gradientUnits="userSpaceOnUse"
+ x1="255.513"
+ y1="92.579"
+ x2="264.6582"
+ y2="83.39406" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10359"
+ id="linearGradient33193"
+ gradientUnits="userSpaceOnUse"
+ x1="14.56176"
+ y1="185.4726"
+ x2="22.91343"
+ y2="193.8308" />
+ <linearGradient
+ id="linearGradient10359"
+ inkscape:collect="always">
+ <stop
+ id="stop10361"
+ offset="0"
+ style="stop-color:#c80000" />
+ <stop
+ id="stop10363"
+ offset="1"
+ style="stop-color:#f99e9e;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3480-8-6"
+ id="linearGradient33195"
+ gradientUnits="userSpaceOnUse"
+ x1="7.859756"
+ y1="190.7533"
+ x2="25.59999"
+ y2="190.0497" />
+ <linearGradient
+ id="linearGradient3480-8-6">
+ <stop
+ id="stop3482-9-9"
+ offset="0.0000000"
+ style="stop-color:#646464;stop-opacity:1" />
+ <stop
+ id="stop3484-6-1"
+ offset="1.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3480-8-6"
+ id="linearGradient33210"
+ gradientUnits="userSpaceOnUse"
+ x1="11.04291"
+ y1="190.3311"
+ x2="23.16458"
+ y2="191.3432" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3480-3"
+ id="linearGradient33212"
+ gradientUnits="userSpaceOnUse"
+ x1="11.04291"
+ y1="190.3311"
+ x2="21.57254"
+ y2="190.0497" />
+ <linearGradient
+ id="linearGradient3480-3">
+ <stop
+ id="stop3482-8"
+ offset="0.0000000"
+ style="stop-color:#646464;stop-opacity:1" />
+ <stop
+ id="stop3484-5"
+ offset="1.0000000"
+ style="stop-color:#000000;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10359"
+ id="linearGradient33191"
+ gradientUnits="userSpaceOnUse"
+ x1="24.49481"
+ y1="214.0368"
+ x2="14.87818"
+ y2="201.604" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient10349"
+ id="linearGradient33206"
+ gradientUnits="userSpaceOnUse"
+ x1="14.95977"
+ y1="203.6547"
+ x2="23.60995"
+ y2="211.0178" />
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient10349">
+ <stop
+ style="stop-color:#a2f156;stop-opacity:1"
+ offset="0"
+ id="stop10351" />
+ <stop
+ style="stop-color:#a2f156;stop-opacity:0"
+ offset="1"
+ id="stop10353" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3480-8-6"
+ id="linearGradient33208"
+ gradientUnits="userSpaceOnUse"
+ x1="8.364343"
+ y1="207.3121"
+ x2="25.59999"
+ y2="207.5353" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient3480-8-6"
+ id="linearGradient33214"
+ gradientUnits="userSpaceOnUse"
+ x1="11.89733"
+ y1="207.3945"
+ x2="22.12529"
+ y2="207.5352" />
+ <linearGradient
+ inkscape:collect="always"
+ xlink:href="#linearGradient900-2"
+ id="linearGradient33204"
+ gradientUnits="userSpaceOnUse"
+ x1="14.22924"
+ y1="201.6041"
+ x2="23.09063"
+ y2="212.7821" />
+ <linearGradient
+ id="linearGradient900-2">
+ <stop
+ id="stop1014-7"
+ offset="0.0000000"
+ style="stop-color:#e4ffa6;stop-opacity:1" />
+ <stop
+ id="stop1015-3"
+ offset="1.0000000"
+ style="stop-color:#3a7801;stop-opacity:1" />
+ </linearGradient>
+ <linearGradient
+ inkscape:collect="always"
+ id="linearGradient5799-9"
+ gradientUnits="userSpaceOnUse"
+ gradientTransform="translate(-157.4999,-207.5)"
+ x1="160"
+ y1="213"
+ x2="176"
+ y2="213"
+ xlink:href="#linearGradient3480" />
+ <linearGradient
+ y2="218.5416"
+ x2="173.724"
+ y1="209.14059"
+ x1="163.85941"
+ gradientTransform="matrix(1.102855,0,0,1.148517,-174.5451,-237.7814)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient20188"
+ xlink:href="#linearGradient1887"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="217.2552"
+ x2="173.0313"
+ y1="207.7552"
+ x1="161.2865"
+ gradientTransform="matrix(1.102855,0,0,1.148517,-175.0966,-238.3557)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient20190"
+ xlink:href="#linearGradient3480"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="218.5416"
+ x2="173.724"
+ y1="209.14059"
+ x1="163.85941"
+ gradientTransform="matrix(1.102855,0,0,1.148517,-174.5451,-237.7814)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient20197"
+ xlink:href="#linearGradient1887"
+ inkscape:collect="always" />
+ <linearGradient
+ y2="217.2552"
+ x2="173.0313"
+ y1="207.7552"
+ x1="161.2865"
+ gradientTransform="matrix(1.102855,0,0,1.148517,-175.0966,-238.3557)"
+ gradientUnits="userSpaceOnUse"
+ id="linearGradient20199"
+ xlink:href="#linearGradient3480"
+ inkscape:collect="always" />
+ </defs>
+ <sodipodi:namedview
+ inkscape:guide-bbox="true"
+ inkscape:current-layer="svg1"
+ inkscape:grid-bbox="true"
+ inkscape:pageopacity="1.0000000"
+ pagecolor="#e8e8e4"
+ snaptoguides="true"
+ showguides="true"
+ inkscape:window-y="27"
+ inkscape:window-x="0"
+ inkscape:window-height="960"
+ inkscape:window-width="1280"
+ inkscape:cy="306.78907"
+ inkscape:cx="613.7595"
+ inkscape:zoom="2.736"
+ gridtolerance="6"
+ snaptogrid="false"
+ showgrid="false"
+ id="base"
+ inkscape:document-units="px"
+ inkscape:grid-points="true"
+ guidetolerance="8"
+ fill="#8ab3de"
+ stroke="#646464"
+ inkscape:object-nodes="false"
+ objecttolerance="11"
+ inkscape:snap-bbox="false"
+ inkscape:snap-nodes="true"
+ inkscape:bbox-nodes="false"
+ inkscape:bbox-paths="false"
+ inkscape:snap-global="false"
+ inkscape:snap-center="false"
+ inkscape:snap-midpoints="false"
+ inkscape:snap-intersection-paths="true"
+ inkscape:object-paths="false"
+ inkscape:snap-object-midpoints="true"
+ inkscape:window-maximized="1"
+ inkscape:snap-grids="true"
+ inkscape:snap-smooth-nodes="false"
+ inkscape:snap-text-baseline="false"
+ inkscape:snap-page="true"
+ inkscape:snap-bbox-midpoints="false"
+ inkscape:snap-bbox-edge-midpoints="false">
+ <inkscape:grid
+ type="xygrid"
+ id="grid9252"
+ originx="0px"
+ originy="0px"
+ spacingx="0.5px"
+ spacingy="0.5px"
+ empspacing="2"
+ visible="true"
+ enabled="true"
+ snapvisiblegridlinesonly="true" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="630.08101,968.02815"
+ id="guide4946" />
+ <sodipodi:guide
+ orientation="0,1"
+ position="618.47896,943.93157"
+ id="guide4948" />
+ </sodipodi:namedview>
+ <metadata
+ id="metadata1810">
+ <rdf:RDF>
+ <cc:Work
+ rdf:about="">
+ <dc:description>Created with Inkscape
http://www.inkscape.org/</dc:description>
-<dc:format>image/svg+xml</dc:format>
-<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-<cc:license rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
-<dc:creator>
-<cc:Agent>
-<dc:title>Inkscape Developers</dc:title>
-</cc:Agent>
-</dc:creator>
-<dc:rights>
-<cc:Agent>
-<dc:title>Inkscape Developers</dc:title>
-</cc:Agent>
-</dc:rights>
-<dc:title />
-</cc:Work>
-<cc:License rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
-<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" />
-<cc:permits rdf:resource="http://web.resource.org/cc/Distribution" />
-<cc:requires rdf:resource="http://web.resource.org/cc/Notice" />
-<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
-<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" />
-<cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" />
-</cc:License>
-</rdf:RDF>
-</metadata>
-<g id="pixelart-trace" transform="translate(-18.39737,3.867394)" inkscape:label="#g10374">
-<g transform="translate(4.748695,-1.046956)" id="g10366">
-<rect style="fill:#ff0000" id="rect10358" width="8" height="8" x="248.6895" y="82.21829" />
-<rect y="90.21829" x="248.6895" height="8" width="8" id="rect10364" style="fill:#00ff00" />
-<rect y="90.21829" x="256.6895" height="8" width="8" id="rect10362" style="fill:#ffff00" />
-<rect y="82.21829" x="256.6895" height="8" width="8" id="rect10360" style="fill:#0000ff" />
-</g>
-<g transform="translate(2.35278,0.184832)" id="g10339">
-<path style="fill:none;stroke:url(#linearGradient10399);stroke-width:1px" d="M 256.013,84.079 C 256.013,84.079 260.1779,83.14391 262.513,85.479 264.8481,87.81409 264.013,92.079 264.013,92.079" id="path9547" inkscape:connector-curvature="0" sodipodi:nodetypes="czc" />
-<rect style="fill:#000000" id="rect9507" width="1" height="1" x="255.5127" y="90.57895" />
-<rect y="83.57895" x="255.5127" height="1" width="1" id="rect9509" style="fill:#cccccc" />
-<rect style="fill:#4d4d4d" id="rect9513" width="1" height="1" x="254.5127" y="89.57895" />
-<rect style="fill:#4d4d4d" id="rect9515" width="1" height="1" x="254.5127" y="88.57895" />
-<rect style="fill:#808080" id="rect9517" width="1" height="1" x="253.5127" y="87.57895" />
-<rect style="fill:#808080" id="rect9519" width="1" height="1" x="253.5127" y="86.57895" />
-<rect style="fill:#b3b3b3" id="rect9521" width="1" height="1" x="254.5127" y="85.57895" />
-<rect style="fill:#b3b3b3" id="rect9523" width="1" height="1" x="254.5127" y="84.57895" />
-<rect y="91.57895" x="256.5127" height="1" width="1" id="rect9525" style="fill:#000000" />
-<rect y="92.57895" x="257.5127" height="1" width="1" id="rect9527" style="fill:#4d4d4d" />
-<rect style="fill:#4d4d4d" id="rect9531" width="1" height="1" x="258.5127" y="92.57895" />
-<rect style="fill:#808080" id="rect9533" width="1" height="1" x="259.5127" y="93.57895" />
-<rect style="fill:#808080" id="rect9535" width="1" height="1" x="260.5127" y="93.57895" />
-<rect style="fill:#b3b3b3" id="rect9537" width="1" height="1" x="261.5127" y="92.57895" />
-<rect style="fill:#b3b3b3" id="rect9539" width="1" height="1" x="262.5127" y="92.57895" />
-<rect style="fill:#cccccc" id="rect9541" width="1" height="1" x="263.5127" y="91.57895" />
-</g>
-</g>
-<use xlink:href="#g6790" inkscape:label="#use6796" height="1250" width="1250" transform="translate(49.67355,1.575031)" id="draw-polygon" y="0" x="0" />
-<use xlink:href="#g6786" inkscape:label="#use6794" height="1250" width="1250" transform="translate(64.14951,-2.923161)" id="draw-star" y="0" x="0" />
-<use xlink:href="#transform-skew-horizontal" inkscape:label="#use5772" height="1250" width="1250" transform="rotate(-90,822.5335,214.531)" id="transform-skew-vertical" y="0" x="0" />
-<g id="inkscape-logo" transform="matrix(0.1336824,0,0,0.1336824,329.5233,64.55912)" inkscape:label="#inkscape_options">
-<use xlink:href="#outline1" height="128" width="128" y="0" x="0" style="opacity:0.1;fill:none" id="use32" class="outline-big" />
-<use xlink:href="#outline1" height="128" width="128" y="0" x="0" style="opacity:0.2;fill:none" id="use34" class="outline-small" />
-<use xlink:href="#outline1" height="128" width="128" y="0" x="0" id="use36" class="black;" />
-<use xlink:href="#outline1" height="128" width="128" y="0" x="0" style="opacity:0.2;fill:none" id="use38" class="stroke-highlight" clip-path="url(#clipoutline1)" />
-<use xlink:href="#outline1" height="128" width="128" y="0" x="0" id="use40" class="specularity" style="opacity:0.5;fill:url(#linearGradient3731)" />
-<use xlink:href="#outline1" height="128" width="128" y="0" x="0" id="use42" class="low-specularity" style="opacity:0.25;fill:url(#linearGradient3733)" />
-<path class="specularity" style="opacity:0.5;fill:url(#linearGradient3735)" d="M 16.8,56.9 C 5.7,67.9 25.2,64.8 40.2,70.7 L 71.2,16.2 C 66.5,11.4 60.5,11.8 56.2,16.2 Z" id="path44" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient3737)" class="shade" d="M 8.9,61.7 C 6.3,71.1 22.3,70.9 31.2,74.4 32.7,73.5 33.5,72.4 32.4,71.4 25.2,67.8 11,67.8 8.9,61.7 Z M 120,62.7 C 117.3,71.6 94.5,75 86.6,79.7 85.5,80.8 86.2,81.8 87.5,82.8 97.3,77.9 123.2,74.1 120,62.7 Z M 44.3,73.7 C 41.1,73.7 39.1,75.3 44.9,77.4 52.6,78 63.7,81.1 66.1,82.1 69.8,75.5 45.1,73.7 44.3,73.7 Z M 23.2,82.2 C 21.9,83.1 21.2,84.1 22.3,85.1 25.8,88.8 43.8,92.2 47.5,95.8 48.4,94.6 48.7,93.4 47.6,92.2 44.2,88.8 28.2,85.6 23.2,82.2 Z M 103,91.3 C 102.3,92.1 101.7,93 101.5,94 101.5,96.1 116.9,97.4 116.9,93.4 116.6,92.7 116.3,92 115.7,91.3 112.9,92.9 106,92.5 103,91.3 Z M 95.6,91.7 C 92.2,98.8 84.3,94.2 75.8,102.8 74.4,104.3 75.2,105.1 76.5,105.8 85.2,97.6 93.2,102.9 96.2,94 96.4,93.1 96.2,92.4 95.6,91.7 Z M 41.6,98.7 C 39.2,101.9 35,104 32,101.4 31.7,101.2 31.5,100.9 31.3,100.6 30.2,102 30.2,103.5 32,105.1 35.6,108.2 41.3,104.3 43,99.9 42.7,99.4 42.1,99 41.6,98.7 Z M 98.3,99.7 C 96,103.4 100.6,106.4 104.7,104.1 105.3,103.4 105.2,102 104.1,100.6 101.7,101.8 99.4,101.1 98.3,99.7 Z M 43.9,103.6 C 43,104.7 42.7,106 43.8,107.2 47.4,110.8 55.8,107.3 57.3,115.8 58.4,121.9 72,118.7 78.8,113.8 80.3,112.16 79.6,111.1 78.3,110.3 71.2,115.1 58.3,118 57.3,112.2 55.8,103.7 47.5,107.1 43.9,103.6 Z" id="path46" inkscape:connector-curvature="0" />
-<path id="icecap" class="full-specularity" style="fill:url(#linearGradient3739)" d="M 70.5,15.5 86.8,32.1 C 88.3,33.6 88.3,36.7 87.4,37.6 L 79.3,31 77.7,40.7 71,37.1 60.1,44 56.5,29.5 50.7,42.1 36.2,42 C 33.4,42 33.8,39.1 36.7,36.2 42.4,29.9 53.5,19.2 57,15.5 60.6,11.8 66.9,11.9 70.5,15.5 Z" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(839.0362,80.70908)" id="layer1" />
-<g style="stroke:#000000" transform="translate(-251.412,155.0283)" id="path-simplify" inkscape:label="#simplify">
-<path id="path10936" style="fill:none;stroke-linecap:round" d="M 486.953,205.5 501.953,205.5 M 501.953,201.4255 C 495.453,205.9255 493.453,194.4542 486.953,200.4255 M 486.953,193.6678 C 488.953,198.6678 489.0896,191.5995 490.953,190.6678 492.953,189.6678 493.2942,193.6914 493.953,195.6678 494.953,198.6678 495.953,192.6678 497.953,191.6678 500.7814,190.2536 497.953,198.6678 501.953,194.6678" inkscape:connector-curvature="0" />
-</g>
-<g id="paint-none" transform="matrix(0.79999,0,0,0.799999,325.9038,309.7987)" inkscape:label="#fill_none">
-<rect y="11.50168" x="773.8801" height="24.99999" width="25" id="rect194" style="fill:none" />
-<path id="path2473" d="M 781.3777,19.00161 791.3808,29.00165" style="fill:none;stroke:#000000;stroke-width:2.9587891;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path id="path2474" d="M 791.3808,19.00161 781.3777,29.00164" style="fill:none;stroke:#000000;stroke-width:2.9587891;stroke-linecap:round" inkscape:connector-curvature="0" />
-</g>
-<g id="stroke-cap-butt" transform="translate(44.5,219.7886)" inkscape:label="#cap_butt">
-<rect style="color:#000000;fill:none;stroke-width:9" id="rect3854" width="24" height="24" x="899.5" y="158.25" />
-<path style="fill:#99b6d4;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:square" d="M 903,181.7114 903,167.7887 920,167.7887 920,181.7114" id="path3844" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,1)" id="use5734" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,5)" id="use5736" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,9)" id="use5738" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,13)" id="use5741" y="0" x="0" />
-</g>
-<g transform="translate(75.52,219.75)" id="stroke-cap-square" inkscape:label="#cap_square">
-<rect style="color:#000000;fill:none;stroke-width:9" id="rect3876" width="24" height="24" x="899.5" y="158.25" />
-<path style="fill:#99b6d4;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 902.98,181.75 902.94,158.75 919.98,158.75 920.02,181.75" id="path3878" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,13)" id="use5743" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,9)" id="use5746" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,5)" id="use5748" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,1)" id="use5751" y="0" x="0" />
-</g>
-<g transform="translate(105.56,219.75)" id="stroke-cap-round" inkscape:label="#cap_round">
-<rect style="color:#000000;fill:none;stroke-width:9" id="rect3904" width="24" height="24" x="899.5" y="158.25" />
-<path style="fill:#99b6d4;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 902.94,181.75 902.98,168.75 C 902.98,162.75 905.48,158.75 911.48,158.75 917.48,158.75 919.98,162.75 920.02,168.75 L 919.98,181.75" id="path3906" sodipodi:nodetypes="ccscc" inkscape:connector-curvature="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,13)" id="use5753" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,9)" id="use5755" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,5)" id="use5759" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,1)" id="use5761" y="0" x="0" />
-</g>
-<g transform="translate(74.46,189.75)" id="stroke-join-bevel" inkscape:label="#join_bevel">
-<path style="fill:#99b6d4;fill-rule:evenodd" d="M 900.04,181.75 900,171.25 912,158.75 923,158.75 923,176.25 917,176.25 917,181.75" id="path3939" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:none;stroke-width:9" id="rect3918" width="24" height="24" x="899.5" y="158.25" />
-<path id="path3920" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 900.04,181.75 900,171.25 912,158.75 923,158.75 M 917,181.75 917,175.75 923,175.75" inkscape:connector-curvature="0" />
-<use xlink:href="#use5673" height="1250" width="1250" id="use5703" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-3.999997)" id="use5705" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-7.999997)" id="use5707" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12)" id="use5709" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,4)" id="use5711" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,8)" id="use5713" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,12)" id="use5715" y="0" x="0" />
-</g>
-<g transform="translate(105.46,189.75)" id="stroke-join-round" inkscape:label="#join_round">
-<path style="fill:#99b6d4;fill-rule:evenodd" d="M 900.04,181.75 900,178.75 C 900,166.25 907,158.75 919.5,158.75 L 923,158.75 923,176.25 917,176.25 917,181.75" id="path3949" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:none;stroke-width:9" id="rect3951" width="24" height="24" x="899.5" y="158.25" />
-<path id="path3953" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 900.04,181.75 900,178.75 C 900,166.25 907,158.75 919.5,158.75 L 923,158.75 M 917,181.75 917,175.75 923,175.75" inkscape:connector-curvature="0" />
-<use xlink:href="#use5673" height="1250" width="1250" id="use5718" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-3.999997)" id="use5720" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-7.999997)" id="use5722" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12)" id="use5724" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,4)" id="use5726" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,8)" id="use5728" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,12)" id="use5731" y="0" x="0" />
-</g>
-<g transform="matrix(0.791665,0,0,0.833336,428.2796,305.4214)" id="paint-unknown" inkscape:label="#fill_unset">
-<g id="g2496" transform="matrix(0.959998,0,0,0.96,344.8925,1.216355)">
-<rect style="fill:none;stroke-width:0.0520834" id="rect2499" width="25" height="24.99999" x="596.8749" y="15.62504" />
-</g>
-<path id="text2490" d="M 930.6839,16.18176 C 932.6605,16.18178 934.4131,16.63394 935.9414,17.53823 937.6736,18.57445 938.5397,19.9686 938.5397,21.72069 938.5397,23.19022 938.0098,24.34887 936.9502,25.19666 L 934.0463,27.42465 C 933.0885,28.00869 933.0885,28.63983 933.0885,29.69486 L 926.7203,29.69486 C 926.371,27.11114 927.5253,26.39788 928.4219,25.58776 928.6664,25.36169 929.6965,24.61431 930.8978,23.64236 931.6467,23.03653 932.2428,22.70038 932.2428,22.00329 932.2428,21.51347 932.0288,21.11783 931.6009,20.81638 931.1933,20.51495 930.7042,20.36424 930.1337,20.36422 929.5019,20.36424 928.4154,20.5903 928.3849,22.4837 L 928.4154,23.41628 922.1186,23.41628 C 922.1186,22.2859 922.3631,20.79755 922.8522,19.96858 923.3209,19.1208 924.0239,18.40488 924.9613,17.82082 926.5101,16.84117 928.1366,16.18178 930.6839,16.18176 M 926.8066,31.89421 933.0424,31.89421 933.0424,37.78169 926.8066,37.78169 926.8066,31.89421" style="fill:#000000" sodipodi:nodetypes="ccsccccsssssccccscccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="align-horizontal-baseline" transform="matrix(-1,0,0,0.997921,1118.206,-16.51693)" inkscape:label="#al_baselines_vert">
-<use xlink:href="#path5120" height="1250" width="1250" id="use5262" y="0" x="0" transform="matrix(-1,0,0,1.000085,-38.76176,-94.35424)" />
-<rect style="fill:none" id="rect2758" width="24.05" height="24" x="80.6858" y="-28.803" transform="matrix(0,1,1,0,0,0)" />
-<path id="text3357" d="M -11.9668,90.11223 C -12.7455,89.43522 -14.0693,89.67792 -14.6597,90.46077 -15.6351,91.64638 -15.9172,93.16305 -16.2761,94.58222 -16.5423,95.79253 -16.7095,97.02162 -16.7771,98.2554 -17.5654,96.69517 -18.4736,95.01934 -18.4901,93.26239 -18.5119,92.37434 -17.9777,91.62159 -17.6209,90.83626 -17.3262,90.17803 -18.1376,89.4931 -18.8334,89.70428 -19.6856,89.87006 -19.8276,90.81043 -19.803,91.48473 -19.7134,93.49021 -18.8909,95.4594 -18.0586,97.29225 -16.8791,99.71268 -15.1908,101.9573 -12.9826,103.6604 -12.1142,104.2845 -9.9179,105.0083 -8.8334,104.6324 -6.8334,103.6372 -6.8334,101.6468 -8.8334,101.6468 -9.552,101.3227 -11.3725,102.8907 -12.1086,102.866 -13.3235,102.857 -14.1896,101.8146 -14.5175,100.8217 -14.8507,99.50814 -14.5389,98.151 -14.3331,96.84131 -13.9978,95.13877 -13.6205,93.40174 -12.7366,91.86153 -12.5558,91.26334 -11.1394,90.90781 -11.9668,90.11223 Z" style="fill:#000000" sodipodi:nodetypes="cccccsccccccccccc" inkscape:connector-curvature="0" />
-<path transform="scale(-1.036041,0.965213)" style="fill:url(#linearGradient5555)" d="M 15.59046,88.20062 C 15.05718,88.20062 14.65483,88.29109 14.38344,88.47202 14.11679,88.65296 13.98347,88.9196 13.98347,89.27194 13.98347,89.59572 14.0906,89.85046 14.30487,90.03615 14.5239,90.21709 14.82625,90.30756 15.21193,90.30756 15.69283,90.30756 16.09755,90.13615 16.4261,89.79332 16.75463,89.44574 16.9189,89.01245 16.91891,88.49345 L 16.91891,88.20062 15.59047,88.20062 M 19.49723,87.23643 19.49723,91.80027 16.91891,91.80027 16.91891,90.61467 C 16.57608,91.10034 16.1904,91.45507 15.76188,91.67885 15.33334,91.89788 14.81196,92.00739 14.19774,92.00739 13.36925,92.00739 12.6955,91.76694 12.17651,91.28603 11.66227,90.80037 11.40515,90.17186 11.40515,89.4005 11.40515,88.4625 11.72655,87.77447 12.36934,87.33641 13.0169,86.89837 14.03109,86.67934 15.41191,86.67933 L 16.91891,86.67933 16.91891,86.47935 C 16.9189,86.07464 16.75939,85.77943 16.44038,85.59372 16.12136,85.40327 15.62379,85.30804 14.94767,85.30804 14.4001,85.30804 13.89062,85.3628 13.41924,85.47231 12.94786,85.58183 12.50981,85.7461 12.10508,85.96512 L 12.10508,84.01531 C 12.65265,83.88199 13.2026,83.782 13.75493,83.71533 14.30725,83.64392 14.85958,83.60821 15.41191,83.6082 16.85462,83.60821 17.895,83.8939 18.53304,84.46526 19.17582,85.03188 19.49722,85.9556 19.49723,87.23642" id="text5563" inkscape:connector-curvature="0" />
-</g>
-<g transform="matrix(-1,0,0,1,1113.181,14.06347)" id="align-vertical-baseline" inkscape:label="#al_baselines_hor">
-<use xlink:href="#use5843" height="1250" width="1250" id="use5850" y="0" x="0" transform="matrix(-1,0,0,1,1079.687,-98.5528)" />
-<rect transform="matrix(0,1,1,0,0,0)" y="-33.803" x="79.96361" height="24" width="24" id="rect2784" style="fill:none" />
-<use xlink:href="#text5563" height="1250" width="1250" id="use5253" y="0" x="0" transform="matrix(1,0,0,0.997921,-12.75291,5.405751)" />
-<use xlink:href="#text3357" height="1250" width="1250" id="use5256" y="0" x="0" transform="matrix(1,0,0,0.997921,-2.522537,-4.58035)" />
-</g>
-<path style="fill:#000000;fill-rule:evenodd" d="M 1105,339 C 1115.397,339 1117.885,319 1111.421,319 1104.873,319 1094.578,335.0032 1105.037,335.0032 1115.363,335.0032 1105.127,319 1098.605,319 1092.082,319 1094.42,339 1105,339 Z" id="fill-rule-even-odd" sodipodi:nodetypes="ccccs" inkscape:label="#fillrule_evenodd" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccs" id="fill-rule-nonzero" d="M 1135,339 C 1145.397,339 1147.885,319 1141.421,319 1134.873,319 1124.578,335.0031 1135.037,335.0031 1145.363,335.0031 1135.127,319 1128.605,319 1122.082,319 1124.42,339 1135,339 Z" style="fill:#000000" inkscape:label="#fillrule_nonzero" inkscape:connector-curvature="0" />
-<g id="draw-rectangle" inkscape:label="#draw_rect">
-<rect y="115" x="450" height="24" width="24" id="rect4167" style="color:#000000;fill:none;stroke-width:1.0000001" />
-<rect y="117.5082" x="452.5083" height="18.99178" width="18.99167" id="draw_rect1" style="color:#000000;fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="118.5" x="453.5" height="17" width="17" id="rect5872" style="color:#000000;fill:url(#linearGradient9254);fill-rule:evenodd;stroke:url(#linearGradient9256);stroke-width:0.9999998;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="draw-spiral" inkscape:label="#draw_arc" transform="translate(365,55.03909)">
-<path id="path225" d="M 96.15762,162.8596 C 97.13102,162.613 97.57865,164.0572 97.41106,164.9134 97.06058,166.7039 95.2053,167.3265 93.84743,166.7376 91.73055,165.8194 91.04652,162.8327 91.93009,160.5906 93.14639,157.5042 96.51921,156.5472 99.05114,158.0025 102.3022,159.8712 103.283,164.6618 101.6324,168.2427 99.60556,172.6399 94.64474,173.9406 90.95391,171.5947 86.56055,168.8022 85.28012,162.1726 87.70877,157.2612 90.53418,151.5475 97.09916,149.9013 101.9447,153.1454 107.4835,156.8536 109.0646,165.3333 105.8537,171.5721 105.8432,171.5925 105.8326,171.613 105.822,171.6333" style="fill:none;stroke:#000000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<rect y="150" x="85" height="24" width="24" id="rect4211" style="color:#000000;fill:none" />
-</g>
-<g id="zoom" transform="translate(280,-64.96091)" inkscape:label="#draw_zoom">
-<circle transform="matrix(1.087654,0,0,1.087684,-16.16957,-14.33312)" id="path4199" style="color:#000000;fill:#c8c8c8;fill-rule:evenodd;stroke:#c8c8c8;stroke-width:0.8704858;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" cx="179" cy="159" r="7" />
-<rect y="150" x="170" height="24" width="24" id="rect4242" style="color:#000000;fill:none" />
-<circle transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)" id="path4272" style="color:#000000;fill:url(#linearGradient5536);fill-rule:evenodd;stroke:#000000;stroke-width:0.9301261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" cx="179" cy="159" r="7" />
-<path style="fill:url(#linearGradient5524);fill-rule:evenodd" d="M 172,160 C 177,159 176,154 181,153 179,151 175.5,151.8333 174,153 172.5,154.1667 171,158 172,160 Z" id="path5507" sodipodi:nodetypes="cczc" inkscape:connector-curvature="0" />
-<g transform="matrix(-0.707107,0.707107,-0.732853,-0.732853,338.9611,194.4488)" id="g4696">
-<path style="fill:url(#linearGradient4723);fill-rule:evenodd" d="M 85.625,124.8009 C 87.29167,123.8009 88.95833,123.8009 90.625,124.8009 L 90.24628,115.9591 C 88.89722,115.3058 87.62782,115.4979 86.07962,115.9591 L 85.625,124.8009 Z" id="path4701" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient5492);fill-rule:evenodd;stroke:url(#linearGradient4728);stroke-width:0.9648682;stroke-linecap:round;stroke-linejoin:round" d="M 90.62502,124.8009 90.58264,115.9811 C 89.73669,114.9811 86.3975,114.9353 85.55156,115.9353 L 85.625,124.8009" id="path4709" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient5476);fill-rule:evenodd;stroke:url(#linearGradient4726);stroke-width:0.9648682;stroke-linecap:round;stroke-linejoin:round" d="M 85.625,124.8009 86.54346,126.5815 C 87.58329,126.3701 88.56338,126.4085 89.54346,126.5815 L 90.625,124.8009 C 89.77906,123.8009 86.47094,123.8009 85.625,124.8009 Z" id="path4705" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path4711" d="M 86.62925,116.947 86.62505,123.1827" style="fill:none;stroke:#ffffff;stroke-width:0.9648682;stroke-linecap:round" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="draw-text" transform="translate(425,196.9756)" inkscape:label="#draw_text">
-<path sodipodi:nodetypes="ccccccccccccc" id="path604" d="M 41.91177,127.0244 41.91177,130.0244 43.91177,130.0244 43.91177,148.0244 41.91177,148.0244 41.91177,151.0244 48.91177,151.0244 48.91177,148.0244 46.91177,148.0244 46.91177,130.0244 48.91177,130.0244 48.91177,127.0244 41.91177,127.0244 Z" style="fill:#ffffff;fill-rule:evenodd" inkscape:connector-curvature="0" />
-<path id="path598" d="M 45.41177,129.5 45.41177,148.5369" style="fill:none;stroke:#000000;stroke-width:0.9999999;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path id="path599" d="M 46.38747,128.5244 47.6956,128.5133" style="fill:none;stroke:#000000;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path600" d="M 46.39879,149.5244 47.52504,149.5244" style="fill:none;stroke:#000000;stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path id="path601" d="M 44.5,149.5244 43.32353,149.5244" style="fill:none;stroke:#000000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path id="path602" d="M 44.46788,128.5244 43.31153,128.5244" style="fill:none;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect y="127" x="25" height="24" width="24" id="rect5171" style="color:#000000;fill:none" />
-<g id="g3805">
-<path style="fill:url(#linearGradient5857);stroke:#000000" d="M 33,129.5 38,129.5 44.5,147.5 40.5,147.5 39.5,145 31.5,145 30.5,147.5 26.5,147.5 33,129.5 Z M 38.5,141.5 35.5,133 32.5,141.5 38.5,141.5 Z" id="text2410" sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5817" d="M 33.5,130.5 28,146" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#646464;stroke-width:1.0000002px;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5828" d="M 38,142.5244 32.5,142.5244" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5859);stroke-width:1.0000002px;stroke-linecap:round" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="color-gradient" transform="translate(470,295)" inkscape:label="#draw_gradient">
-<rect y="90" x="-20" height="24" width="24" id="rect2808" style="color:#000000;fill:none;stroke-width:0.4532662" />
-<rect style="color:#000000;fill:url(#linearGradient4246);fill-rule:evenodd;stroke-width:0.453266" id="rect4244" width="22.1569" height="22.1569" x="-3.07859" y="-113.076" transform="scale(-1)" />
-<rect y="92.1239" x="-17.876" height="19.7519" width="19.7519" id="rect3548" style="color:#000000;fill:url(#linearGradient10520);fill-rule:evenodd;stroke-width:0.453266" />
-<path sodipodi:nodetypes="cc" id="path3570" d="M -15.3527,96.3045 -0.647354,107.695" style="fill:none;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<rect y="94.8769" x="-16.184" height="4.01786" width="4.0099" id="rect3568" style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<use xlink:href="#rect3568" height="1250" width="1250" transform="matrix(1,0,0,0.99644,12.2265,10.564)" id="use4906" y="0" x="0" />
-</g>
-<g id="color-picker" transform="translate(439,260)" inkscape:label="#draw_dropper">
-<path style="fill:url(#linearGradient3628);fill-rule:evenodd;stroke:url(#linearGradient5670);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" d="M 28.8634,163 21,171 18,173 17,172 19,169 26.8634,161 28.8634,163 Z" id="path3620" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<rect y="155" x="11" height="24" width="24" id="rect3581" style="color:#000000;fill:none" />
-<path style="fill:url(#linearGradient4369);fill-rule:evenodd;stroke:url(#linearGradient4360);stroke-width:1.0000001px;stroke-linecap:round;stroke-linejoin:round" d="M 17.15103,173.5 C 17.15103,173.5 15,175.1058 15,177.0529 15,179 18,179 18,177.0529 18,175.1058 17.15103,173.5 17.15103,173.5 Z" id="path4352" sodipodi:nodetypes="czzc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:0.6;stroke-linecap:round" d="M 20,169 27,162" id="path4372" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccsccc" id="path3583" d="M 25,160 30,165 31,164 29.5,162.5 C 33,162 35.8634,158.2404 33.8634,156.2404 31.8634,154.2404 28,157 27.5,160.5 L 26,159 25,160 Z" style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient4349);fill-rule:evenodd" d="M 28,160 C 27.59361,159.7968 28.15657,158.2324 29.5,157 31.33949,155.3154 32.83144,155.8288 32.8634,156.2404 33,158 30,161 28,160 Z" id="path4341" sodipodi:nodetypes="csss" inkscape:connector-curvature="0" />
-</g>
-<g id="node-join" transform="translate(586.9575,-119.9707)" inkscape:label="#node_join">
-<use xlink:href="#path4385" height="1250" width="1250" transform="translate(12)" id="use5652" y="0" x="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect3630" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:#646464;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.4762,177.4465 -42.4762,177.4465" id="path4385" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect y="175.5" x="-43.51186" height="3.989636" width="3.035695" id="rect3632" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.47804,188.5 C -30.50259,188.5 -30.50259,188.5 -30.50259,188.5" id="path4389" inkscape:connector-curvature="0" />
-<rect y="186.5" x="-39.45749" height="3.970665" width="3.957493" id="rect4374" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path id="path4376" d="M -38,180 -37,180 -37,182 -35,182 -37.5,185 -40,182 -38,182 -38,180 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#rect3632" height="1250" width="1250" transform="translate(9.035664,-0.0534999)" id="use16129" y="0" x="0" />
-</g>
-<g id="node-join-segment" transform="translate(608.9585,-119.9172)" inkscape:label="#node_join_segment">
-<use xlink:href="#path4385" height="1250" width="1250" id="use5657" y="0" x="0" transform="translate(12)" />
-<use xlink:href="#path4385" height="1250" width="1250" id="use5654" y="0" x="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect4393" style="color:#000000;fill:none" />
-<use xlink:href="#path4389" height="1250" width="1250" id="use5727" y="0" x="0" transform="translate(0.0018391,-0.0534999)" />
-<rect y="186.4465" x="-43.45848" height="3.970665" width="2.982275" id="rect4411" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<use xlink:href="#rect3632" height="1250" width="1250" id="use17004" y="0" x="0" transform="translate(0.0356638,-0.0534999)" />
-<use xlink:href="#rect3632" height="1250" width="1250" id="use17007" y="0" x="0" transform="translate(9.035664,-0.0431358)" />
-<use xlink:href="#rect4411" style="fill:#e30000" height="1250" width="1250" transform="translate(9.000001,0.0293315)" id="use17887" y="0" x="0" />
-<use xlink:href="#path4376" height="1250" width="1250" id="use5749" y="0" x="0" transform="translate(0.0238,-0.0535)" />
-</g>
-<g id="node-delete-segment" transform="translate(629.9585,-119.9465)" inkscape:label="#node_delete_segment">
-<use xlink:href="#path4385" height="1250" width="1250" id="use5662" y="0" x="0" transform="translate(12,11)" />
-<rect y="175" x="-45" height="16" width="16" id="rect4415" style="color:#000000;fill:none" />
-<use xlink:href="#path4389" height="1250" width="1250" id="use5730" y="0" x="0" transform="translate(0.0018391,-11.0535)" />
-<use xlink:href="#rect3632" height="1250" width="1250" id="use17882" y="0" x="0" transform="translate(0.0356638,-0.0431358)" />
-<use xlink:href="#rect3632" height="1250" width="1250" id="use17885" y="0" x="0" transform="translate(8.999968,-0.0534999)" />
-<use xlink:href="#path4385" height="1250" width="1250" id="use5660" y="0" x="0" transform="translate(0,11)" />
-<use xlink:href="#use17887" height="1250" width="1250" id="use17891" y="0" x="0" transform="translate(-9.000001,2.498039e-6)" />
-<use xlink:href="#use17887" height="1250" width="1250" id="use17894" y="0" x="0" transform="translate(-0.0177254,2.498039e-6)" />
-<use xlink:href="#path4376" height="1250" width="1250" id="use5752" y="0" x="0" transform="translate(0.0238,0.9465)" />
-</g>
-<g id="tool-pointer" transform="translate(560,-109.961)" inkscape:label="#draw_select">
-<rect y="135" x="-110" height="24" width="24" id="rect10522" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="csssssss" id="path730" d="M -104.4426,154.8912 C -104.4426,154.8912 -104.5001,136.625 -104.5001,136.625 -104.5001,136.625 -92.45996,149.5002 -92.45996,149.5002 -92.45996,149.5002 -97.66194,149.382 -97.66194,149.382 -97.66194,149.382 -94.23654,155.0591 -94.23654,155.0591 -94.23654,155.0591 -98.70961,157.1774 -98.70961,157.1774 -98.70961,157.1774 -100.7184,150.7187 -100.7184,150.7187 -100.7184,150.7187 -104.4426,154.8912 -104.4426,154.8912 Z" style="fill-rule:evenodd;stroke:#ffffff;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-<g id="tool-node-editor" transform="translate(560,-124.961)" inkscape:label="#draw_node">
-<rect y="180" x="-110" height="24" width="24" id="rect10524" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="csc" id="path10536" d="M -107.5,202 C -108,194 -106.8635,189.643 -103.5351,186.5978 -100.5976,183.9103 -96,182 -88,182.5" style="fill:none;stroke:#646464;stroke-width:1px" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:#0000ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect10534" width="6.117705" height="5.996136" x="-106.5" y="183.5039" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect10541" width="3.998032" height="3.999682" x="-109.5" y="199.5" />
-<path sodipodi:nodetypes="cccc" id="path10543" d="M -103,187 -94,203 -88,197 -103,187 Z" style="fill:#000000;fill-rule:evenodd;stroke:#ffffff;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<use xlink:href="#rect10541" height="1250" width="1250" transform="translate(19.00197,-19.03868)" id="use5791" y="0" x="0" />
-</g>
-<g id="node-break" transform="translate(650.9823,-119.9172)" inkscape:label="#node_break">
-<use xlink:href="#path4385" height="1250" width="1250" id="use5666" y="0" x="0" transform="translate(11.9762,11)" />
-<use xlink:href="#path4385" height="1250" width="1250" id="use5664" y="0" x="0" transform="translate(-0.0238,11)" />
-<rect y="175" x="-45" height="16" width="16" id="rect10555" style="color:#000000;fill:none" />
-<use xlink:href="#path4389" height="1250" width="1250" id="use5732" y="0" x="0" transform="translate(0.0025879,-11.0535)" />
-<use xlink:href="#rect4411" height="1250" width="1250" id="use5737" y="0" x="0" transform="translate(-0.0237986,-2.327919e-6)" />
-<use xlink:href="#use5737" height="1250" width="1250" transform="translate(9)" id="use5740" y="0" x="0" />
-<use xlink:href="#path4376" height="1250" width="1250" id="use5754" y="0" x="0" transform="translate(0,0.9465)" />
-<use xlink:href="#use5791" height="1250" width="1250" id="use5793" y="0" x="0" transform="translate(51,-5.014501)" />
-</g>
-<g id="node-add" transform="translate(545,-120.0164)" inkscape:label="#node_insert">
-<rect y="175" x="-45" height="16" width="16" id="rect10573" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.41109,187.5 C -29.5,187.5 -29.5,187.5 -29.5,187.5" id="path10583" inkscape:connector-curvature="0" />
-<rect y="184.5076" x="-39.506" height="5.968238" width="5.006888" id="rect10585" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path id="path10587" d="M -38,175 -36,175 -36,178 -33,178 -33,180 -36,180 -36,183 -38,183 -38,180 -41,180 -41,178 -38,178 -38,175 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" />
-</g>
-<g transform="matrix(1,0,0,-1,566,421.9836)" id="node_insert_max_y">
-<rect width="16" height="16" x="-45" y="175" id="rect6085" style="color:#000000;fill:none" />
-<path d="M -44.5,175.4836 C -44.5,175.4836 -42.5,178.9836 -37,178.9836 -31.5,178.9836 -29.5,175.4836 -29.5,175.4836" id="path6087" style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect width="5.006001" height="4.975991" x="-39.506" y="176.5076" id="rect6089" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path d="M -38,183 -36,183 -36,186 -33,186 -33,188 -36,188 -36,191 -38,191 -38,188 -41,188 -41,186 -38,186 -38,183 Z" id="path6091" style="fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(547,56)" id="node_insert_min_y">
-<rect width="16" height="16" x="-45" y="175" id="rect6115" style="color:#000000;fill:none" />
-<path d="M -44.5,175.4836 C -44.5,175.4836 -42.5,179 -37,179 -31.5,179 -29.5,175.4836 -29.5,175.4836" id="path6117" style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect width="5.006001" height="4.975991" x="-39.506" y="176.5" id="rect6119" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path d="M -38,183 -36,183 -36,186 -33,186 -33,188 -36,188 -36,191 -38,191 -38,188 -41,188 -41,186 -38,186 -38,183 Z" id="path6121" style="fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g transform="matrix(0,-1,-1,0,730.9918,201.9918)" id="node_insert_min_x">
-<rect width="16" height="16" x="-45" y="175" id="rect6125" style="color:#000000;fill:none" />
-<path d="M -44.5,175.4836 C -44.5,175.4836 -42.5082,178.9918 -37.0082,178.9918 -31.5082,178.9918 -29.5,175.4836 -29.5,175.4836" id="path6128" style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect width="5.006001" height="4.975991" x="-39.5142" y="176.5158" id="rect6130" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path d="M -38,183 -36,183 -36,186 -33,186 -33,188 -36,188 -36,191 -38,191 -38,188 -41,188 -41,186 -38,186 -38,183 Z" id="path6132" style="fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g transform="matrix(0,1,1,0,384.0082,275.9918)" id="node_insert_max_x">
-<rect width="16" height="16" x="-45" y="175" id="rect6137" style="color:#000000;fill:none" />
-<path d="M -44.5,175.4836 C -44.5,175.4836 -42.4918,178.9918 -36.9918,178.9918 -31.4918,178.9918 -29.5,175.4836 -29.5,175.4836" id="path6139" style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect width="5.006001" height="4.975991" x="-39.4918" y="176.5158" id="rect6141" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path d="M -38,183 -36,183 -36,186 -33,186 -33,188 -36,188 -36,191 -38,191 -38,188 -41,188 -41,186 -38,186 -38,183 Z" id="path6143" style="fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g id="node-delete" transform="translate(566.006,-119.9758)" inkscape:label="#node_delete">
-<rect y="175" x="-45" height="16" width="16" id="rect10591" style="color:#000000;fill:none" />
-<use xlink:href="#path10583" height="1250" width="1250" transform="translate(-0.0651068,-0.0534998)" id="use15253" y="0" x="0" />
-<rect y="184.5076" x="-39.506" height="5.968238" width="5.006888" id="rect10595" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#8686e5;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path id="path10597" d="M -33,178 -33,180 -41,180 -41,178 -33,178 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="zoom-in" transform="matrix(1,0,0,0.997925,495,-162.4833)" inkscape:label="#zoom_in">
-<g id="g5796">
-<circle style="color:#000000;fill:none;stroke:#000000;stroke-width:0.9403349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.2651297" id="path4220" transform="matrix(1.00786,0,0,1.007983,-167.1731,96.0569)" cx="179" cy="159" r="7" />
-<rect style="color:#000000;fill:none" id="rect10601" width="16" height="16" x="5.0273" y="248.029" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 18.03125,259 16,261.0312 19,264.0312 21.03125,262 18.03125,259 Z" id="path10605" inkscape:connector-curvature="0" />
-<circle style="color:#000000;fill:url(#radialGradient5855);fill-rule:evenodd;stroke:#000000;stroke-width:0.9931717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path10607" transform="matrix(1.00786,0,0,1.007983,-167.8785,95.25998)" cx="179" cy="159" r="7" />
-</g>
-<path sodipodi:nodetypes="ccccccccccccc" id="path10609" d="M 11,251.0208 13,251.0208 13.0273,254.0208 16.0273,254.0498 16,256.0436 13,256.0145 13.0273,259.0208 11.0273,259.0208 11,256.0145 7.9727,256.0145 8,254.0208 11.0273,254.0208 11,251.0208 Z" style="fill:url(#linearGradient4088);fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g id="zoom-out" transform="translate(515.0312,-162.961)" inkscape:label="#zoom_out">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5803" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.06245,0.476586)" />
-<path sodipodi:nodetypes="ccccc" id="path10652" d="M 16.03125,253.971 16.02735,256 8.0313,256 8.03525,253.971 16.0313,253.971 Z" style="color:#000000;fill:url(#linearGradient3208);fill-rule:evenodd;stroke-width:1px" inkscape:connector-curvature="0" />
-</g>
-<g id="zoom-half-size" inkscape:label="#g6895">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5818" y="0" x="0" transform="matrix(0.996399,0,0,0.997925,95.04449,-202.4578)" />
-<path style="fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:round" d="M 108.5366,50.5646 C 109.0348,49.0646 111.5258,49.0646 111.5258,51.0646 111.5258,53.0646 108.5366,53.5646 108.5366,55.5646 L 111.5258,55.5646" id="path10692" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path d="M 103,49.5 104.5,49.5 104.5,56 M 106,52.5 107,52.5 M 106,55.5 107,55.5" style="fill:none;stroke:#000000;stroke-width:1px" id="path3806" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="zoom-fit-width" transform="matrix(0.996399,0,0,0.998403,95.11635,-102.5393)" inkscape:label="#zoom_pagewidth">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5834" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" />
-<path transform="translate(-49.99998,18)" style="color:#000000;fill:url(#linearGradient4013);fill-rule:evenodd;stroke:url(#linearGradient4072);stroke-width:1.0026066;stroke-linecap:round;stroke-linejoin:round" d="M 57.5,236.5 67.5,236.5 67.53137,242.5314 C 65.02942,245.251 59.78235,245.1882 57.5,242.4373 L 57.5,236.5 Z" id="rect3056" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="zoom-fit-page" transform="matrix(0.996399,0,0,1,95.11635,-122.961)" inkscape:label="#zoom_page">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5826" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" />
-<path transform="translate(-49.99998,18)" style="color:#000000;fill:url(#linearGradient4005);fill-rule:evenodd;stroke:url(#linearGradient4080);stroke-width:1.0018055" d="M 59.5,233.5312 65.5,233.5312 65.5,241.5312 59.5,241.5312 59.5,233.5312 Z" id="path3805" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="zoom-fit-selection" transform="matrix(0.996399,0,0,0.998404,95.11635,-162.5398)" inkscape:label="#zoom_select">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5822" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" />
-<rect style="color:#000000;fill:#ffffff;fill-rule:evenodd" id="rect3901" width="9" height="7" x="18" y="232" transform="translate(-9.99998,20)" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd" id="rect3873" width="1" height="1" x="18" y="232" transform="translate(-9.99998,20)" />
-<rect y="252" x="10.00002" height="1" width="1" id="rect3875" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd" id="rect3877" width="1" height="1" x="12.00002" y="252" />
-<rect y="252" x="14.00002" height="1" width="1" id="rect3879" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd" id="rect3881" width="1" height="1" x="16.00002" y="252" />
-<rect y="254" x="16.00002" height="1" width="1" id="rect3883" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd" id="rect3885" width="1" height="1" x="16.00002" y="256" />
-<rect y="258" x="16.00002" height="1" width="1" id="rect3887" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd" id="rect3889" width="1" height="1" x="14.00002" y="258" />
-<rect y="258" x="12.00002" height="1" width="1" id="rect3891" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd" id="rect3893" width="1" height="1" x="10.00002" y="258" />
-<rect y="258" x="8.00002" height="1" width="1" id="rect3895" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd" id="rect3897" width="1" height="1" x="8.00002" y="256" />
-<rect y="254" x="8.00002" height="1" width="1" id="rect3899" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-</g>
-<g id="zoom-fit-drawing" transform="matrix(0.996399,0,0,0.998403,95.11635,-142.5705)" inkscape:label="#zoom_draw">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5824" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.508815)" />
-<path style="fill:#ffffff;fill-rule:evenodd" d="M 74,282 75,282 75,280 77,280 77,279 74,279 74,282 Z" id="path4192" sodipodi:nodetypes="ccccccc" transform="translate(-64.99998,-27)" inkscape:connector-curvature="0" />
-<g id="g5984">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5849);stroke-width:1.002607;stroke-linejoin:round;stroke-miterlimit:0" id="rect4828" width="5.000394" height="5.040684" x="8.45872" y="251.4922" />
-<rect style="color:#000000;fill:url(#linearGradient5851);fill-rule:evenodd;stroke:url(#linearGradient5853);stroke-width:1.0026073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect4830" width="3.008755" height="3.010303" x="9.44998" y="252.4818" />
-</g>
-<use xlink:href="#g5984" height="1250" width="1250" transform="translate(3.000016,2.959313)" id="use5989" y="0" x="0" />
-</g>
-<g id="zoom-previous" transform="matrix(0.996399,0,0,0.998404,95.11635,-82.57091)" inkscape:label="#zoom_previous">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5836" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.508745)" />
-<g id="g6036">
-<path sodipodi:nodetypes="ccccccccc" id="path3974" d="M 9.53125,251.5312 9.53125,251.5312 9.53125,255.5312 15.45913,251.4921 15.45913,259.4921 9.53125,255.5312 9.53125,259.5312 9.53125,259.5312 9.53125,251.5312 Z" style="color:#000000;fill:#ffd400;fill-rule:evenodd;stroke:url(#linearGradient5847);stroke-width:1.0026059;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path4188" d="M 11.33756,255.4455 14.58336,253.2228" style="fill:none;stroke:#ffffff;stroke-width:1.0026058px;stroke-linecap:round" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="zoom-next" transform="matrix(0.996399,0,0,0.998404,95.08516,-62.56986)" inkscape:label="#zoom_next">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5838" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.04082,0.507716)" />
-<g id="g6043">
-<path sodipodi:nodetypes="ccccccccc" id="path3990" d="M 15.50002,251.5 15.50002,251.5 15.50002,259.5 15.50002,259.5 15.50002,255.5 9.50002,259.5 9.50002,251.5 15.50002,255.5 15.50002,251.5 Z" style="color:#000000;fill:#ffd400;fill-rule:evenodd;stroke:url(#linearGradient5845);stroke-width:1.0026059;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path4191" d="M 10.43978,257.6603 13.68558,255.4375" style="fill:none;stroke:#ffffff;stroke-width:1.0026058px;stroke-linecap:round" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="node-type-cusp" transform="translate(673.0098,-120.0032)" inkscape:label="#node_cusp">
-<rect y="175" x="-45" height="16" width="16" id="rect3216" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.50979,175.5032 C -37.52207,175.5032 -37.53892,184.6391 -37.53892,186.6391 -33.0238,184.1199 -30.0238,181 -29.5041,175.5032" id="path3226" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<rect y="103.5115" x="-160.3997" height="3.831147" width="3.791844" id="rect3224" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9051018;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" transform="rotate(-44.99984)" />
-</g>
-<g id="node-type-smooth" transform="translate(693.9435,-119.9172)" inkscape:label="#node_smooth">
-<path style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.41296,176.5635 C -44.94008,180.0159 -43.54193,185.457 -37.54193,185.457 -31.54193,185.457 -29.98307,179.8869 -30.45595,176.4345" id="path3254" sodipodi:nodetypes="csc" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect3252" style="color:#000000;fill:none" />
-<use xlink:href="#rect4374" height="1250" width="1250" id="use5742" y="0" x="0" transform="translate(0.0140001,-3.0535)" />
-</g>
-<g id="node-type-symmetric" transform="translate(714.9799,-119.9832)" inkscape:label="#node_symmetric">
-<path id="path10667" style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.41296,176.5635 C -44.94008,180.0159 -43.02606,186.0936 -37.02606,186.0936 -31.02606,186.0936 -29.0373,180.0159 -29.51018,176.5635 M -42.44776,186.1975 -31.55518,186.1975" sodipodi:nodetypes="csccc" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect10669" style="color:#000000;fill:none" />
-<rect y="-39.47938" x="-188.4831" height="4.950177" width="4.966394" id="rect10671" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" transform="rotate(-89.99984)" />
-<rect style="color:#000000;fill:#ffffff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect10673" width="2.067648" height="2.017743" x="-44.54361" y="185.2228" ry="1.008872" rx="1.008872" />
-<rect style="color:#000000;fill:#ffffff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect10675" width="2.022052" height="2.026662" x="-31.53185" y="185.1983" ry="1.011026" rx="1.011026" />
-</g>
-<g id="node-segment-curve" transform="translate(757.9337,-119.9172)" inkscape:label="#node_curve">
-<path style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -42.38772,188.4395 C -42.38772,181.4395 -38.41209,177.6123 -31.41209,177.6123" id="path10679" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect10681" style="color:#000000;fill:none" />
-<use xlink:href="#rect4374" height="1250" width="1250" id="use5745" y="0" x="0" transform="translate(-4.9762,-0.0534998)" />
-<use xlink:href="#rect4374" height="1250" width="1250" id="use5747" y="0" x="0" transform="translate(5.981293,-11.02417)" />
-</g>
-<g id="node-segment-line" transform="translate(778.9762,-119.9465)" inkscape:label="#node_line">
-<path style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -42.5,188.5 -31.5,177.5" id="path4418" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect4420" style="color:#000000;fill:none" />
-<use xlink:href="#rect4374" height="1250" width="1250" id="use5756" y="0" x="0" transform="translate(-5.018707,-0.0241656)" />
-<use xlink:href="#rect4374" height="1250" width="1250" id="use5758" y="0" x="0" transform="translate(6.0238,-11.02417)" />
-</g>
-<g id="object-to-path" transform="translate(280.041,-149.9465)" inkscape:label="#object_tocurve">
-<path style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -37.0131,188.9855 C -35.0131,192.9855 -27.81159,188.3079 -29.81159,185.3079 -31.10674,183.3652 -39.24159,185.6729 -42.56979,183.4541 -45.56979,181.4541 -45.12074,174.9746 -40.0534,175.5422 -35.41611,176.0661 -38.62555,185.7606 -37.0131,188.9855 Z" id="path4438" sodipodi:nodetypes="cssss" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect4440" style="color:#000000;fill:none" />
-<rect y="-39.5126" x="-178.495" height="3.023564" width="3.009614" id="rect4442" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" transform="rotate(-89.99984)" />
-<use xlink:href="#rect4442" height="1250" width="1250" transform="translate(-4.027901,6.951345)" id="use6691" y="0" x="0" />
-<use xlink:href="#rect4442" height="1250" width="1250" transform="translate(6.948524,11.95135)" id="use6693" y="0" x="0" />
-</g>
-<g id="stroke-to-path" transform="translate(280.0489,-129.9566)" inkscape:label="#stroke_tocurve">
-<path id="path4464" style="color:#000000;fill:#8ab3df;fill-opacity:0.5882353;fill-rule:evenodd;stroke-width:1.0000024" d="M -39.52195,190.3973 -44.44321,188.4481 C -44.98225,180.8178 -38.98225,174.937 -31.48225,175.437 L -29.52195,180.3973 C -36.52195,180.3973 -39.52195,183.3973 -39.52195,190.3973 Z" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.43436,188.5363 C -44.97339,180.9061 -38.97339,175.0252 -31.47339,175.5252" id="path4450" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect4452" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -39.5131,190.4855 C -39.5131,183.4855 -36.5131,180.4855 -29.5131,180.4855" id="path4458" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<use xlink:href="#use6693" height="1250" width="1250" transform="translate(-7.0079,-11.98028)" id="use6695" y="0" x="0" />
-<use xlink:href="#use6693" height="1250" width="1250" transform="translate(-11.98432,-6.989905)" id="use6698" y="0" x="0" />
-<use xlink:href="#use6693" height="1250" width="1250" transform="translate(-8.0079,-2.989905)" id="use6700" y="0" x="0" />
-<use xlink:href="#use6693" height="1250" width="1250" transform="translate(-3.0079,-7.98028)" id="use6702" y="0" x="0" />
-</g>
-<g id="selection-bottom" transform="translate(235.0423,10.04822)" inkscape:label="#selection_bot">
-<rect y="175" x="-45" height="16" width="16" id="rect6698" style="color:#000000;fill:none" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7653" y="0" x="0" transform="translate(8.934884,-0.0391259)" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7655" y="0" x="0" transform="translate(8.9612,2.960874)" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7657" y="0" x="0" transform="translate(8.9612,5.960874)" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7659" y="0" x="0" transform="translate(8.934884,8.960874)" />
-<use xlink:href="#rect8574" height="1250" width="1250" id="use8586" y="0" x="0" transform="translate(0,2.999993)" />
-<use xlink:href="#path10449" height="1250" width="1250" transform="matrix(1,0,0,-1,-10,364.9817)" id="use4704" y="0" x="0" />
-</g>
-<g id="selection-top" transform="translate(235.0423,-9.96096)" inkscape:label="#selection_top">
-<rect y="175" x="-45" height="16" width="16" id="rect10445" style="color:#000000;fill:none" />
-<path id="path10449" d="M -31,189.9908 -32,189.9908 -32,181.9908 -34,181.9908 -31.5,178.9908 -29,181.9908 -31,181.9908 -31,189.9908 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7645" y="0" x="0" transform="translate(-0.0387999,3.97005)" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7647" y="0" x="0" transform="translate(-0.0387999,6.97005)" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7649" y="0" x="0" transform="translate(-0.0387999,9.97005)" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7651" y="0" x="0" transform="translate(-0.0387999,12.97005)" />
-<use xlink:href="#rect10479" height="1250" width="1250" id="use8534" y="0" x="0" transform="translate(-0.0384184,-3.002595)" />
-</g>
-<g id="selection-raise" transform="translate(235.0423,-49.96096)" inkscape:label="#selection_up">
-<rect y="175" x="-45" height="16" width="16" id="rect10473" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:url(#linearGradient5835);stroke-width:1.9999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -43.97588,175.9908 C -39.0022,175.9908 -39.0022,175.9908 -39.0022,175.9908" id="path10475" inkscape:connector-curvature="0" />
-<rect y="178.4609" x="-44.50185" height="2.002599" width="14.99927" id="rect10479" style="color:#000000;fill:url(#linearGradient5837);fill-rule:evenodd;stroke:url(#linearGradient5839);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path style="fill:none;stroke:url(#linearGradient5842);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.00221,185.9908 C -36.06173,185.9908 -36.06173,185.9908 -36.06173,185.9908" id="path10483" inkscape:connector-curvature="0" />
-<use xlink:href="#path10475" height="1250" width="1250" transform="translate(-0.0387999,6.97005)" id="use7634" y="0" x="0" />
-<use xlink:href="#use7634" height="1250" width="1250" transform="translate(0,6)" id="use7636" y="0" x="0" />
-<use xlink:href="#path10505" height="1250" width="1250" id="use5413" y="0" x="0" transform="rotate(180,-37.00135,182.4977)" />
-</g>
-<g id="selection-lower" transform="translate(235.0423,-29.95179)" inkscape:label="#selection_down">
-<rect y="175" x="-45" height="16" width="16" id="rect10501" style="color:#000000;fill:none" />
-<path id="path10505" d="M -42,177.9908 -41,177.9908 -41,178.9908 -42,178.9908 -42,179.9908 -40,179.9908 -42.5,182.9908 -45,179.9908 -43,179.9908 -43,178.9908 -42,177.9908 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7638" y="0" x="0" transform="translate(8.934884,-0.0391201)" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7641" y="0" x="0" transform="translate(8.9612,5.96088)" />
-<use xlink:href="#path10475" height="1250" width="1250" id="use7643" y="0" x="0" transform="translate(8.934884,12.96088)" />
-<rect y="184.4491" x="-44.54027" height="2.002599" width="14.99927" id="rect8574" style="color:#000000;fill:url(#linearGradient5831);fill-rule:evenodd;stroke:url(#linearGradient5833);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<use xlink:href="#path10483" height="1250" width="1250" id="use8589" y="0" x="0" transform="translate(5.961212,-7.03912)" />
-</g>
-<g id="object-flip-vertical" transform="translate(235.0013,89.99992)" inkscape:label="#object_flip_ver">
-<rect y="175" x="-45" height="16" width="16" id="rect4332" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:#000000;stroke-width:0.9999998;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0" d="M -43.5,182.5 -42.5,182.5" id="path4335" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient7544);fill-rule:evenodd;stroke:url(#linearGradient6743);stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -43.49833,184.5 -30.45006,184.5 -30.45006,189.5 -43.49833,184.5 Z" id="rect4339" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient6727);fill-rule:evenodd;stroke:url(#linearGradient6745);stroke-width:0.8999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -43.49838,180.5 -30.45162,180.5 -30.45162,175.5 -43.49838,180.5 Z" id="path5098" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path4335" height="1250" width="1250" transform="translate(2.959,-0.0391199)" id="use7626" y="0" x="0" />
-<use xlink:href="#use7626" height="1250" width="1250" transform="translate(3)" id="use7628" y="0" x="0" />
-<use xlink:href="#use7628" height="1250" width="1250" transform="translate(3)" id="use7630" y="0" x="0" />
-<use xlink:href="#use7630" height="1250" width="1250" transform="translate(3)" id="use7632" y="0" x="0" />
-</g>
-<g id="object-flip-horizontal" transform="translate(235.0423,70.03904)" inkscape:label="#object_flip_hor">
-<rect y="175" x="-45" height="16" width="16" id="rect6649" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:#000000;stroke-width:0.9999998;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0" d="M -37.49238,176.4968 -37.49238,177.4968" id="path6651" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient6665);fill-rule:evenodd;stroke:url(#linearGradient6667);stroke-width:0.8999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -39.45,176.45 -39.45,189.5435 -44.53475,189.5435 -39.45,176.45 Z" id="path6653" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient6737);fill-rule:evenodd;stroke:url(#linearGradient6739);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -35.49238,176.4968 -35.49238,189.4968 -30.49238,189.4968 -35.49238,176.4968 Z" id="path6655" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path6651" height="1250" width="1250" transform="translate(-0.0486211,2.96407)" id="use7618" y="0" x="0" />
-<use xlink:href="#use7618" height="1250" width="1250" transform="translate(0,3)" id="use7620" y="0" x="0" />
-<use xlink:href="#use7620" height="1250" width="1250" transform="translate(0,3)" id="use7622" y="0" x="0" />
-<use xlink:href="#use7622" height="1250" width="1250" transform="translate(0,3)" id="use7624" y="0" x="0" />
-</g>
-<g id="object-rotate-left" transform="matrix(-1,0,0,1,161.0423,50.03904)" inkscape:label="#object_rotate_90_CCW">
-<rect y="175" x="-45" height="16" width="16" id="rect7457" style="color:#000000;fill:none" />
-<path style="color:#000000;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -37.5,175.5 -37.5,190.5 -43.5,190.5 -37.5,175.5 Z" id="path7459" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient6690);fill-rule:evenodd;stroke:url(#linearGradient6731);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -29.5,188.5 -44.5,188.5 -44.5,182.5 -29.5,188.5 Z" id="path7461" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccc" id="use7610" d="M -36.03125,176.9687 -36.03125,177.9687 -33.03125,177.9687 -32.01635,178.9609 -31.01635,178.9609 -33.03125,176.9687 -36.03125,176.9687 -36.03125,176.9688 Z" style="color:#000000;-inkscape-font-specification:'Bitstream Vera Sans';fill:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-<use xlink:href="#path7514" height="1250" width="1250" id="use5439" y="0" x="0" transform="translate(0.070634,3.868655e-4)" />
-</g>
-<g id="object-rotate-right" transform="translate(235.0423,30.03905)" inkscape:label="#object_rotate_90_CW">
-<rect y="175" x="-45" height="16" width="16" id="rect7508" style="color:#000000;fill:none" />
-<path style="color:#000000;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -37.5,175.5 -37.5,190.5 -43.5,190.5 -37.5,175.5 Z" id="path7510" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient6672);fill-rule:evenodd;stroke:url(#linearGradient7548);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -29.5,188.5 -44.5,188.5 -44.5,182.5 -29.5,188.5 Z" id="path7512" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 199,207 199,208 202,208 203.0312,209 203.0312,212.0312 201.0312,212.0312 203.5312,215.0312 206.0312,212.0312 204.0312,212.0312 204.0312,209 202,207 199,207 Z" transform="translate(-235.0423,-30.03905)" id="path7514" inkscape:connector-curvature="0" />
-</g>
-<g id="dialog-fill-and-stroke" transform="translate(235,-150.0546)" inkscape:label="#fill_and_stroke">
-<path style="fill:none;stroke:url(#linearGradient10473);stroke-width:2;stroke-linecap:square" d="M 191,40 191,26 205,26" id="path10465" sodipodi:nodetypes="ccc" transform="translate(-235,150.0546)" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:1px" d="M -42.96863,177.0546 -28.96863,177.0546 -42.96863,191.0546 -42.96863,177.0546 Z" id="rect10562" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect9766" style="color:#000000;fill:none" />
-<g id="g10509">
-<path transform="translate(-235,150.0546)" sodipodi:nodetypes="ccc" id="path10491" d="M 191.5,40.5 C 197,40.5 200,40 200.5,37 L 205.5,34" style="opacity:0.3;fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccc" id="path10571" d="M -33.36912,180.455 -30.36912,183.455 -28.96863,183.0546 -28.96863,176.0546" style="fill:url(#linearGradient10579);fill-rule:evenodd" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccc" id="path10544" d="M -44.46863,190.5546 C -41.00737,188.4475 -41,185 -37.23477,184.4001 -36.73477,184.9001 -35.57922,186.2324 -34.97774,186.4538 -35.19915,189.2324 -39,190.6431 -44.46863,190.5546 Z" style="fill:url(#radialGradient10597);fill-rule:evenodd;stroke:url(#linearGradient10481);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path10558" d="M -37.0151,184.4115 -33.17019,180.3227 C -32.10366,180.99 -30.97059,182.3227 -30.43634,183.5888 L -35.2365,186.5 -37.0151,184.4115 Z" style="color:#000000;fill:url(#linearGradient10560);fill-rule:evenodd;stroke:url(#linearGradient10489);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccc" id="path10568" d="M -29.65866,176.2759 C -31.05011,177.5139 -32.22155,178.9303 -33.30327,180.3892 -31.88187,181.2561 -31.19237,182.3892 -30.56941,183.6553 -29.79942,183.3663 -30.0043,183.4764 -29.5,183.1874" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="dialog-text-and-font" transform="translate(140.041,-179.961)" inkscape:label="#object_font">
-<path sodipodi:nodetypes="ccccccccccccccccc" d="M 144,220 146,218 146,207 143,207 141,209 140,209 140,205 156,205 156,209 155,209 153,207 150,207 150,218 152,220 152,221 144,221 144,220 Z" style="fill:#000000;fill-rule:evenodd" id="path10616" inkscape:connector-curvature="0" />
-<path inkscape:label="#object_font" id="asda" d="M 146,220 147,219 147,207 149,207 149,219 150,220 146,220 Z" style="fill:url(#linearGradient10641);fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(-163.3209,-147.1542)" id="object-ungroup" inkscape:label="#selection_ungroup">
-<g id="g6068">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5825);stroke-width:1.0000005;stroke-linejoin:round;stroke-miterlimit:0" id="rect9496" width="8.996735" height="6.999161" x="355.8274" y="258.6541" />
-<rect style="color:#000000;fill:url(#linearGradient5827);fill-rule:evenodd;stroke:url(#linearGradient5829);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect9498" width="6.994853" height="4.972945" x="356.8273" y="259.6532" />
-</g>
-<use xlink:href="#rect10765" height="1250" width="1250" id="use8598" y="0" x="0" transform="translate(4.959,-0.03898)" />
-<use xlink:href="#rect10765" height="1250" width="1250" id="use8601" y="0" x="0" transform="translate(13.959,-0.0389847)" />
-<use xlink:href="#rect10765" height="1250" width="1250" id="use8603" y="0" x="0" transform="translate(-0.0409897,3.96102)" />
-<use xlink:href="#use8603" height="1250" width="1250" transform="translate(13.99999,4.999995)" id="use8605" y="0" x="0" />
-<use xlink:href="#use8605" height="1250" width="1250" transform="translate(-1.99999,5.000005)" id="use8607" y="0" x="0" />
-<use xlink:href="#use8607" height="1250" width="1250" transform="translate(-12.00001)" id="use8609" y="0" x="0" />
-<use xlink:href="#use8598" height="1250" width="1250" transform="translate(5.073548e-8,9)" id="use9484" y="0" x="0" />
-<use xlink:href="#g10421" height="1250" width="1250" id="use10425" y="0" x="0" transform="translate(-0.0348992,-0.0284392)" />
-</g>
-<g transform="translate(-163.3209,-167.1542)" id="object-group" inkscape:label="#selection_group">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient10394);stroke-width:0.9999999;stroke-linejoin:round;stroke-miterlimit:0" id="rect10382" width="8.996808" height="7.003806" x="355.8222" y="258.6503" />
-<rect style="color:#000000;fill:url(#linearGradient10396);fill-rule:evenodd;stroke:url(#linearGradient10398);stroke-width:1.0000007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect10384" width="6.994814" height="4.999979" x="356.8222" y="259.6496" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:1.0000006" id="rect10765" width="2.00001" height="1.999995" x="353.3632" y="252.1931" />
-<use xlink:href="#rect10765" height="1250" width="1250" transform="translate(13.959,-0.03898)" id="use8592" y="0" x="0" />
-<use xlink:href="#use8592" height="1250" width="1250" transform="translate(-14,14)" id="use8594" y="0" x="0" />
-<use xlink:href="#use8594" height="1250" width="1250" transform="translate(14,-5.001575e-6)" id="use8596" y="0" x="0" />
-<g transform="matrix(1,0,0,1.008019,335.3152,51.42912)" id="g10379" />
-<g id="g10421">
-<circle style="color:#000000;fill:none;stroke:url(#linearGradient5819);stroke-width:1.3730356;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path10763" transform="matrix(0.727881,0,0,0.728748,287.069,104.2892)" cx="105.5" cy="210.5" r="5.5" />
-<circle style="color:#000000;fill:url(#linearGradient5821);fill-rule:evenodd;stroke:url(#linearGradient5823);stroke-width:1.8262242;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path10409" transform="matrix(0.547085,0,0,0.548073,306.1137,142.2991)" cx="105.5" cy="210.5" r="5.5" />
-</g>
-</g>
-<g id="edit-duplicate" transform="translate(50.0399,-119.9404)" inkscape:label="#edit_duplicate">
-<g id="g6144">
-<rect y="205.4404" x="5.4601" height="7.996297" width="8.996808" id="rect6120" style="color:#000000;fill:none;stroke:url(#linearGradient6124);stroke-width:0.9999996;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="206.4404" x="6.46013" height="5.993324" width="6.994814" id="rect6122" style="color:#000000;fill:url(#linearGradient6126);fill-rule:evenodd;stroke:url(#linearGradient6128);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="208.4686" x="8.477812" height="11.99031" width="11.99355" id="rect6134" style="color:#000000;fill:none;stroke:url(#linearGradient6138);stroke-width:0.9999994;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="209.4688" x="9.477811" height="9.971587" width="9.982319" id="rect6136" style="color:#000000;fill:url(#linearGradient6140);fill-rule:evenodd;stroke:url(#linearGradient6142);stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-</g>
-<g transform="translate(-298.3567,-147.1852)" id="edit-clone" inkscape:label="#edit_clone">
-<g id="use6150" transform="translate(348.3966,47.24474)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5807);stroke-width:0.9999996;stroke-linejoin:round;stroke-miterlimit:0" id="rect5607" width="8.996808" height="7.996297" x="5.4601" y="205.4404" />
-<rect style="color:#000000;fill:url(#linearGradient5809);fill-rule:evenodd;stroke:url(#linearGradient5811);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5609" width="6.994814" height="5.993324" x="6.46013" y="206.4404" />
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5813);stroke-width:0.9999994;stroke-linejoin:round;stroke-miterlimit:0" id="rect5611" width="11.99355" height="11.99031" x="8.477812" y="208.4686" />
-<rect style="color:#000000;fill:url(#linearGradient5815);fill-rule:evenodd;stroke:url(#linearGradient5817);stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5613" width="9.982319" height="9.971587" x="9.477811" y="209.4688" />
-</g>
-<rect y="260.7473" x="359.909" height="4.001433" width="5.979028" id="rect10978" style="color:#000000;fill:url(#linearGradient11815);fill-rule:evenodd;stroke:url(#linearGradient6573);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 62.5,131.5 C 62.5,132.5 62.5,132.5 62.5,132.5" id="path6162" transform="translate(298.368,127.2036)" inkscape:connector-curvature="0" />
-<use xlink:href="#path6162" height="1250" width="1250" transform="translate(4)" id="use6164" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 63.5,130.5 65.5,130.5" id="path6167" transform="translate(298.368,127.2036)" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1px" d="M 360.8567,263.6852 360.8567,261.6852 364.8567,261.6852" id="path5069" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(-298.3836,-127.1851)" id="edit-clone-unlink" inkscape:label="#edit_unlink_clone">
-<use xlink:href="#use6150" height="1250" width="1250" id="use5649" y="0" x="0" transform="translate(0.0269001,-4.867687e-6)" />
-<rect y="260.7562" x="359.9373" height="4.001433" width="5.979028" id="rect6638" style="color:#000000;fill:url(#linearGradient6662);fill-rule:evenodd;stroke:url(#linearGradient6664);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<use xlink:href="#path6167" height="1250" width="1250" id="use6169" y="0" x="0" transform="translate(0.0156)" />
-<use xlink:href="#use6164" height="1250" width="1250" id="use6172" y="0" x="0" transform="translate(0.0156)" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1px" d="M 360.8836,263.6851 360.8836,261.6851 364.8836,261.6851" id="path6005" inkscape:connector-curvature="0" />
-</g>
-<g id="dialog-align-and-distribute" transform="matrix(0.997443,0,0,0.995359,234.9271,130.8863)" inkscape:label="#object_align">
-<rect y="175" x="-45" height="16" width="16" id="rect11819" style="color:#000000;fill:none" />
-<g id="g6628" transform="matrix(1.249506,0,0,1.001998,-55.66558,-19.47412)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient6666);stroke-width:0.8969406;stroke-linejoin:round;stroke-miterlimit:0" id="rect6630" width="7.99868" height="3.995016" x="10.5083" y="205.5581" />
-<rect style="color:#000000;fill:url(#linearGradient6668);fill-rule:evenodd;stroke:url(#linearGradient6670);stroke-width:0.8969405;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect6632" width="6.40038" height="1.965379" x="11.30936" y="206.5531" />
-</g>
-<g id="g6675" transform="matrix(1.000856,0,0,1.001998,-53.05186,-30.53742)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5801);stroke-width:1.0021828;stroke-linejoin:round;stroke-miterlimit:0" id="rect6677" width="5.4917" height="3.995016" x="10.5083" y="205.5581" />
-<rect style="color:#000000;fill:url(#linearGradient5803);fill-rule:evenodd;stroke:url(#linearGradient5805);stroke-width:1.0021827;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect6679" width="3.492565" height="1.965379" x="11.50743" y="206.5582" />
-</g>
-<g id="g6690" transform="matrix(1.249506,0,0,0.994331,-55.62604,-22.92368)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient6696);stroke-width:0.9003923;stroke-linejoin:round;stroke-miterlimit:0" id="rect6692" width="10.39982" height="3.02699" x="10.50829" y="205.5446" />
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient6700);stroke-width:0.9003921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect6694" width="8.7972" height="1.002073" x="11.30861" y="206.5581" />
-</g>
-<path style="fill:none;stroke:#c80000;stroke-width:1.0036128px;stroke-linecap:round" d="M -44.541,175.4264 -44.541,190.4564" id="path5730" inkscape:connector-curvature="0" />
-</g>
-<g id="dialog-xml-editor" inkscape:label="#xml_editor">
-<g transform="matrix(1,0,0,0.996869,-60.05772,-144.2098)" id="g5620">
-<rect y="338.8083" x="115.5577" height="11.99987" width="14.99917" id="rect5622" style="color:#000000;fill:url(#linearGradient5684);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect5624" style="color:#000000;fill:url(#linearGradient5686);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" />
-</g>
-<path id="path14887" d="M 62,196 58,199 62,202" style="fill:none;stroke:url(#linearGradient5696);stroke-width:1px" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path id="path14889" d="M 64,196 68,199 64,202" style="fill:none;stroke:url(#linearGradient5692);stroke-width:1px" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-</g>
-<g id="document-import" transform="translate(4.95909,-151.05)" inkscape:label="#file_import">
-<g id="g5577">
-<path sodipodi:nodetypes="cccccc" id="path4679" d="M 9.54091,196.55 16.54091,196.55 20.54091,200.55 20.54091,211.55 9.54091,211.55 9.54091,196.55 Z" style="color:#000000;fill:url(#linearGradient5795);fill-rule:evenodd;stroke:url(#linearGradient5797);stroke-width:1.0000011;stroke-linecap:square;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccc" id="path4681" d="M 16.54091,196.55 20.54091,200.55 16.54091,200.55 16.54091,196.55 Z" style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient5799);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path id="path5602" d="M 10.54091,210.55 19.54091,210.55 19.54091,201.55" style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-</g>
-<path id="path4685" d="M 5.04091,204.05 12.04091,204.05 12.04091,202.05 15.04091,204.55 12.04091,207.05 12.04091,205.05 5.04091,205.05 5.04091,204.05 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="document-export" inkscape:label="#file_export">
-<use xlink:href="#g5577" height="1250" width="1250" id="use5582" y="0" x="0" transform="translate(0.959089,-131.05)" />
-<use xlink:href="#path4685" height="1250" width="1250" id="use5585" y="0" x="0" transform="translate(10.95909,-131.05)" />
-</g>
-<g transform="translate(-54.95913,110.0391)" id="path-outset" inkscape:label="#outset_path">
-<path style="color:#000000;fill:#99b6d4;fill-opacity:0.59;fill-rule:evenodd;stroke-width:1px" d="M 290.5,170.5 290.5,162.5 C 294.5,162.5 298.5,166.5 298.5,170.5 L 290.5,170.5 Z" id="path10754" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="fill:#99b7d4;fill-rule:evenodd" d="M 290.5,155.5 290.5,162.5 C 294.5,162.5 298.5,166.5 298.5,170.5 L 305.5,170.5 C 305.5,162.5 298.5,155.5 290.5,155.5 Z" id="path10752" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path10741" d="M 290.5,155.5 C 298.5,155.5 305.5,162.5 305.5,170.5" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path10743" d="M 290.5,162.5 C 294.5,162.5 298.5,166.5 298.5,170.5" style="fill:none;stroke:#000000;stroke-linecap:round;stroke-dasharray:1, 2" inkscape:connector-curvature="0" />
-<path id="path10745" d="M 299.5,161.5 295.5,161.5 299.5,165.5 299.5,161.5 Z" style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(-54.95913,130.039)" id="path-inset" inkscape:label="#inset_path">
-<use xlink:href="#path10752" height="1250" width="1250" id="use5684" y="0" x="0" transform="translate(-0.04087,-0.039)" />
-<use xlink:href="#path10754" height="1250" width="1250" id="use5692" y="0" x="0" transform="translate(-0.04087,-0.039)" />
-<path sodipodi:nodetypes="cc" id="path10769" d="M 290.5,155.5 C 298.5,155.5 305.5,162.5 305.5,170.5" style="color:#000000;fill:none;stroke:#000000;stroke-linecap:round;stroke-dasharray:1, 2" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path10771" d="M 290.5,162.5 C 294.5,162.5 298.5,166.5 298.5,170.5" style="fill:none;stroke:#000000;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path id="path10773" d="M 297.5,163.5 301.5,163.5 297.5,159.5 297.5,163.5 Z" style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(-54.95913,150.039)" id="path-offset-dynamic" inkscape:label="#dynamic_offset">
-<path style="fill:#8ab3de;fill-rule:evenodd" d="M 290.5,155.5 290.5,163.5 C 293.5,163.5 297.5,167.5 297.5,170.5 L 305.5,170.5 C 305.5,162.5 298.5,155.5 290.5,155.5 Z" id="path10779" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path10783" d="M 290.7799,163.2201 C 293.7799,163.2201 297.7799,167.2201 297.7799,170.2201" style="fill:none;stroke:#000000;stroke-linecap:round;stroke-dasharray:1, 2" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path10787" d="M 290.5,159.5 C 295.5,159.5 301.5,164.5 301.5,170.5" style="color:#000000;fill:none;stroke:#000000;stroke-linecap:round" inkscape:connector-curvature="0" />
-<use xlink:href="#rect4442" height="1250" width="1250" id="use5699" y="0" x="0" transform="translate(335.9487,-14.03415)" />
-<use xlink:href="#path10769" height="1250" width="1250" transform="translate(-0.04087,-0.039)" id="use5710" y="0" x="0" />
-<use xlink:href="#path10754" height="1250" width="1250" id="use5695" y="0" x="0" transform="translate(-0.04087,-0.039)" />
-</g>
-<g id="path-offset-linked" inkscape:label="#linked_offset" transform="translate(-109.959,175.039)">
-<use xlink:href="#path10754" height="1250" width="1250" id="use5697" y="0" x="0" transform="translate(54.959,-5.039)" />
-<use xlink:href="#path10752" height="1250" width="1250" id="use5690" y="0" x="0" transform="translate(54.959,-5.039)" />
-<use xlink:href="#path10741" height="1250" width="1250" id="use5714" y="0" x="0" transform="translate(54.959,-5.039)" />
-<use xlink:href="#rect4442" height="1250" width="1250" id="use5702" y="0" x="0" transform="translate(393.9721,-22.02453)" />
-<use xlink:href="#path10771" height="1250" width="1250" transform="translate(54.959,-5.039)" id="use5717" y="0" x="0" />
-</g>
-<g id="path-reverse" transform="translate(-149.459,215.539)" inkscape:label="#selection_reverse">
-<path style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round" d="M 385,165 C 385,160 387.5,157.5 392.5,157.5 396.5,157.5 400,155 400,150" id="path10967" sodipodi:nodetypes="csc" inkscape:connector-curvature="0" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 386.5,151.5 393.5,151.5 393.5,149.5 396.5,152 393.5,154.5 393.5,152.5 386.5,152.5 386.5,151.5 Z" id="path10971" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#rect4442" height="1250" width="1250" id="use5704" y="0" x="0" transform="translate(430.4721,-19.53415)" />
-<use xlink:href="#path10971" height="1250" width="1250" transform="rotate(180,392.4795,157.4805)" id="use3760" y="0" x="0" />
-</g>
-<g id="path-break-apart" transform="translate(-79.87527,35.9917)" style="fill:#8ab3df;fill-opacity:0.5882353;stroke:#0000ff" inkscape:label="#selection_break">
-<path style="color:#000000;fill:#99b6d4;fill-opacity:0.7;fill-rule:evenodd;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 235.5312,230.5312 235.5312,240.5 245.625,240.5 245.625,236.5312 C 245.4547,236.5472 245.2994,236.5625 245.125,236.5625 242.0805,236.5625 239.5937,234.0852 239.5937,231.0312 239.5937,230.8642 239.6105,230.6945 239.625,230.5312 L 235.5312,230.5312 Z" transform="translate(79.87527,-15.9917)" id="rect10834" inkscape:connector-curvature="0" />
-<circle transform="matrix(1.103062,0,0,1.10649,-36.96118,-22.90202)" id="path5724" style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" cx="328" cy="215" r="5" />
-</g>
-<g id="path-combine" transform="translate(-79.87527,16.04128)" inkscape:label="#selection_combine">
-<path id="rect10868" style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 315.4161,214.5498 325.5,214.5498 325.5,224.4978 315.4161,224.4978 315.4161,214.5498 Z M 330.5,215.0325 C 330.5,218.0864 328.0291,220.5649 324.9847,220.5649 321.9402,220.5649 319.4694,218.0864 319.4694,215.0325 319.4694,211.9785 321.9402,209.5 324.9847,209.5 328.0291,209.5 330.5,211.9785 330.5,215.0325 Z" inkscape:connector-curvature="0" />
-</g>
-<g id="path-union" transform="translate(-79.87527,-103.961)" style="fill:#8ea7c4" inkscape:label="#union">
-<path style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 225.0625,150.5 C 222.1834,150.5 219.9048,152.7389 219.6562,155.5625 L 215.5,155.5625 215.5,165.5 225.5937,165.5 225.5937,161.4687 C 228.379,161.1903 230.5937,158.898 230.5937,156.0312 230.5937,152.9773 228.107,150.5 225.0625,150.5 Z" transform="translate(99.91614,59)" id="rect10877" inkscape:connector-curvature="0" />
-</g>
-<g id="path-difference" transform="translate(-79.87527,-83.961)" inkscape:label="#difference">
-<circle style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1" id="path10888" transform="translate(95.41614,59.5)" cx="229.5" cy="155.5" r="5.5" />
-<path style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 220.5,155.5625 220.5,165.5 230.5937,165.5 230.5937,161.375 C 230.3877,161.3984 230.2123,161.5 230,161.5 226.964,161.5 224.5,159.036 224.5,156 224.5,155.8435 224.5809,155.7157 224.5937,155.5625 L 220.5,155.5625 Z" transform="translate(94.91614,59)" id="rect10884" inkscape:connector-curvature="0" />
-</g>
-<g id="draw-eraser-delete-objects" transform="translate(167.1461,270.5955)" inkscape:label="#delete_object">
-<rect style="fill:none" id="rect10920" width="16" height="16" x="314" y="210" />
-<path style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1" d="M 220.5,155.5625 220.5,165.5 230.5937,165.5 230.5937,161.375 C 230.3877,161.3984 230.2123,161.5 230,161.5 226.964,161.5 224.5,159.036 224.5,156 224.5,155.8435 224.5809,155.7157 224.5937,155.5625 L 220.5,155.5625 Z" transform="translate(94.91614,59)" id="path6882" inkscape:connector-curvature="0" />
-<use xlink:href="#g5771" height="12" width="12" id="use5777" y="0" x="0" transform="translate(-652,41)" />
-</g>
-<g id="path-cut" transform="translate(-79.87527,-3.96088)" inkscape:label="#cut_path">
-<path transform="translate(95.41614,59.5)" style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1" d="M 224,155.5 C 224,152.464 226.464,150 229.5,150 232.536,150 235,152.464 235,155.5 235,158.536 232.536,161 229.5,161" id="path10897" sodipodi:nodetypes="cscs" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 220.5,155.5625 220.5,165.5 230.5937,165.5 230.5937,161.375 C 230.3877,161.3984 230.2123,161.5 230,161.5 226.964,161.5 224.5,159.036 224.5,156 224.5,155.8435 224.5809,155.7157 224.5937,155.5625 L 220.5,155.5625 Z" transform="translate(94.91614,59)" id="path10899" inkscape:connector-curvature="0" />
-</g>
-<g id="path-intersection" transform="translate(-79.87523,-63.96088)" inkscape:label="#intersection">
-<rect style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1;stroke-dashoffset:0.5" id="rect6889" width="10" height="10" x="315.4161" y="214.5" />
-<path transform="translate(95.4161,59.5)" style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1" d="M 224,155.5 C 224,152.464 226.464,150 229.5,150 232.536,150 235,152.464 235,155.5 235,158.536 232.536,161 229.5,161" id="path10903" sodipodi:nodetypes="cscs" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 204.5937,175.5 C 204.5772,175.6736 204.5,175.8221 204.5,176 204.5,179.036 206.964,181.5 210,181.5 210.1779,181.5 210.3264,181.4228 210.5,181.4062 L 210.5,175.5 204.5937,175.5 Z" transform="translate(114.9161,39)" id="rect10907" inkscape:connector-curvature="0" />
-</g>
-<g id="path-division" transform="translate(-79.87523,-23.96088)" inkscape:label="#division">
-<path style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 235.5312,170.5312 235.5312,180.5 245.625,180.5 245.5312,176.4375 C 245.3576,176.454 245.2092,176.5312 245.0312,176.5312 241.9952,176.5312 239.5313,174.0673 239.5312,171.0312 239.5312,170.8533 239.6085,170.7049 239.625,170.5312 L 235.5312,170.5312 Z" transform="translate(79.87523,43.96088)" id="rect10930" sodipodi:nodetypes="ccccsscc" inkscape:connector-curvature="0" />
-<path transform="translate(95.4161,59.5)" style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1" d="M 224,155.5 C 224,152.464 226.464,150 229.5,150 232.536,150 235,152.464 235,155.5 235,158.536 232.536,161 229.5,161" id="path10924" sodipodi:nodetypes="cscs" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 319.469,214.4609 C 319.4524,214.6345 319.3752,214.7829 319.3752,214.9609 319.3752,217.9969 321.8392,220.4609 324.8752,220.4609 325.0532,220.4609 325.2016,220.3837 325.3752,220.3671 L 325.3752,214.4609 319.469,214.4609 Z" id="path5727" inkscape:connector-curvature="0" />
-</g>
-<g id="path-exclusion" transform="translate(-79.87527,-43.95873)" inkscape:label="#exclusion">
-<path id="path10934" style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" d="M 315.4161,214.5498 325.5,214.5498 325.5,224.4978 315.4161,224.4978 315.4161,214.5498 Z M 330.5,215.0325 C 330.5,218.0864 328.0291,220.5649 324.9847,220.5649 321.9402,220.5649 319.4694,218.0864 319.4694,215.0325 319.4694,211.9785 321.9402,209.5 324.9847,209.5 328.0291,209.5 330.5,211.9785 330.5,215.0325 Z" inkscape:connector-curvature="0" />
-</g>
-<g id="dialog-object-properties" inkscape:label="#dialog_item_properties" transform="translate(-139.9577,-49.99929)">
-<rect y="120.5063" x="330.4642" height="8.992967" width="8.996735" id="rect10430" style="color:#000000;fill:none;stroke:url(#linearGradient10434);stroke-width:1.0000006;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="121.5137" x="331.4641" height="6.985559" width="6.994853" id="rect10432" style="color:#000000;fill:url(#linearGradient10436);fill-rule:evenodd;stroke:url(#linearGradient10438);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path sodipodi:nodetypes="cccccccccccccsccccccccscc" id="path11005" d="M 343.459,125.4992 C 344.959,125.4992 345.459,126.4992 345.459,127.4992 L 345.459,129.9992 344.459,130.4992 343.459,130.4992 343.459,128.4992 339.459,128.4992 339.459,130.4992 338.459,130.4992 337.459,129.9992 337.459,127.4992 C 337.459,126.4992 337.959,125.4992 339.459,125.4992 L 339.459,120.4992 C 337.959,120.4992 337.459,119.4992 337.459,118.4992 L 337.459,115.9992 338.459,115.4992 339.459,115.4992 339.459,117.4992 343.459,117.4992 343.459,115.4992 344.459,115.4992 345.459,115.9992 345.459,118.4992 C 345.459,118.9992 344.959,120.4992 343.459,120.4992 L 343.459,125.4992 Z" style="fill:url(#linearGradient11021);fill-rule:evenodd;stroke:url(#linearGradient10450);stroke-width:1.0000004px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round" d="M 340.459,120.4992 340.459,124.4992" id="path10442" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="fill:#646464;fill-opacity:0.75;fill-rule:evenodd;stroke:#646464;stroke-width:1px" d="M 342.959,120.4992 341.959,120.4992" id="path10455" inkscape:connector-curvature="0" />
-<use xlink:href="#path10455" style="stroke:#646464" height="1250" width="1250" transform="translate(0,5)" id="use10459" y="0" x="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round" d="M 340.459,126.4992 C 338.459,126.4992 338.459,126.4992 338.459,129.4992" id="path10463" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<g id="bitmap-trace" style="stroke:#000000;stroke-width:0.7" inkscape:label="#selection_trace" transform="translate(-70.10913,-49.13897)">
-<path id="rect11025" style="color:#000000;fill:none;stroke-linecap:round;stroke-linejoin:round" d="M 308.4986,119.5635 305.5,119.5268 305.5,129.5012 315.5,129.5012 315.5,126.731 M 308.4348,121.3144 307.5,121.3144 307.5,127.5261 313.6875,127.5261 313.6875,126.586 M 318.4395,120.5036 C 318.4395,122.6793 316.6746,124.4452 314.5,124.4452 312.3255,124.4452 310.5606,122.6793 310.5606,120.5036 310.5606,118.3277 312.3255,116.5619 314.5,116.5619 316.6746,116.5619 318.4395,118.3277 318.4395,120.5036 Z M 320.4719,120.4996 C 320.4719,123.796 317.7965,126.4715 314.5,126.4715 311.2035,126.4715 308.5281,123.796 308.5281,120.4996 308.5281,117.2031 311.2035,114.5277 314.5,114.5277 317.7965,114.5277 320.4719,117.2031 320.4719,120.4996 Z" inkscape:connector-curvature="0" />
-</g>
-<g id="dialog-transform" transform="matrix(0.997361,0,0,0.997566,-193.9405,170.3188)" inkscape:label="#object_trans">
-<path sodipodi:nodetypes="cscs" id="path11132" d="M 394.9,119.4 C 397.936,119.4 400.4,121.864 400.4,124.9 400.4,127.936 397.936,130.4 394.9,130.4 391.864,130.4 389.4,127.936 389.4,124.9" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.2030518;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1.2030517, 1.2030517;stroke-dashoffset:0.2406103" inkscape:connector-curvature="0" />
-<path id="path11140" d="M 394,119.5 397,122 397,117 394,119.5 Z" style="fill:#c80000;fill-rule:evenodd" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<g transform="matrix(1,0,0,1.008019,374.9507,-91.76403)" id="g7590">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient7596);stroke-width:0.9985474;stroke-linejoin:round;stroke-miterlimit:0" id="rect7592" width="7.99868" height="7.932448" x="10.5083" y="205.5765" />
-<rect style="color:#000000;fill:url(#linearGradient7598);fill-rule:evenodd;stroke:url(#linearGradient7600);stroke-width:0.9985487;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect7594" width="6.00072" height="5.947848" x="11.50669" y="206.5649" />
-</g>
-</g>
-<g id="show-grid" inkscape:label="#grid" transform="translate(-304.959,5.068269)">
-<rect style="color:#000000;fill:none;stroke-width:0.7" id="rect13175" width="16" height="16" x="405" y="220" />
-<rect y="220" x="405" height="1" width="1" id="rect13046" style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.7" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,-0.039128)" id="use5896" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,-0.039128)" id="use5898" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,-0.039128)" id="use5900" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,-0.039128)" id="use5902" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,-0.039128)" id="use5904" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,2.960872)" id="use5906" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,2.960872)" id="use5908" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,2.960872)" id="use5910" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,2.960872)" id="use5912" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,2.960872)" id="use5914" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,2.960872)" id="use5916" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,5.960872)" id="use5918" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,5.960872)" id="use5920" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,5.960872)" id="use5922" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,5.960872)" id="use5924" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,5.960872)" id="use5926" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,5.960872)" id="use5928" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,8.960872)" id="use5930" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,8.960872)" id="use5932" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,8.960872)" id="use5934" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,8.960872)" id="use5936" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,8.960872)" id="use5938" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,8.960872)" id="use5940" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,11.96087)" id="use5942" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,11.96087)" id="use5944" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,11.96087)" id="use5946" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,11.96087)" id="use5948" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,11.96087)" id="use5950" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,11.96087)" id="use5952" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,14.96087)" id="use5954" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,14.96087)" id="use5956" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,14.96087)" id="use5958" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,14.96087)" id="use5960" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,14.96087)" id="use5962" y="0" x="0" />
-<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,14.96087)" id="use5964" y="0" x="0" />
-</g>
-<g id="show-guides" transform="translate(-304.959,25.03912)" inkscape:label="#guides">
-<rect style="color:#000000;fill:none;stroke-width:0.7" id="rect13315" width="16" height="16" x="405" y="220" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 105.5,258.5 106.5,258.5" id="path5974" transform="translate(304.959,-25.03912)" inkscape:connector-curvature="0" />
-<use xlink:href="#path5974" height="1250" width="1250" transform="translate(3)" id="use5976" y="0" x="0" />
-<use xlink:href="#path5974" transform="translate(6)" height="1250" width="1250" id="use5978" y="0" x="0" />
-<use xlink:href="#path5974" height="1250" width="1250" transform="translate(9)" id="use5980" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 407.459,230.4609 407.459,229.4609" id="path5982" inkscape:connector-curvature="0" />
-<use xlink:href="#path5982" height="1250" width="1250" transform="translate(0,-3)" id="use5984" y="0" x="0" />
-<use xlink:href="#path5982" height="1250" width="1250" transform="translate(0,-6)" id="use5986" y="0" x="0" />
-<use xlink:href="#path5982" height="1250" width="1250" transform="translate(0,-9)" id="use5988" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 405.459,233.4609 408.459,233.4609" id="path5990" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 407.459,235.4609 407.459,232.4609" id="path5992" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<g id="window-next" transform="translate(-15.01687,-30.21803)" inkscape:label="#window_next">
-<use xlink:href="#g6011" height="1250" width="1250" id="use6015" y="0" x="0" transform="translate(-0.0408664,-0.0391171)" />
-<use xlink:href="#g6043" height="1250" width="1250" id="use6047" y="0" x="0" transform="translate(113.0168,89.22898)" />
-</g>
-<g id="window-previous" transform="matrix(1,0,0,0.996869,-15.05696,-49.20811)" inkscape:label="#window_previous">
-<g id="g6011">
-<rect style="color:#000000;fill:url(#linearGradient5791);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" id="rect13417" width="14.99917" height="11.99987" x="115.5577" y="338.8083" />
-<rect style="color:#000000;fill:url(#linearGradient5793);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" id="rect13419" width="14.99819" height="3.011261" x="115.5588" y="335.7579" />
-</g>
-<use xlink:href="#g6036" height="1250" width="1250" transform="translate(108.0577,89.23782)" id="use6040" y="0" x="0" />
-</g>
-<g id="window-new" transform="translate(-10.00246,25.01596)" inkscape:label="#view_new">
-<rect y="303.4572" x="112.4954" height="10.03091" width="13.00704" id="rect13445" style="color:#000000;fill:url(#linearGradient6026);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999999;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="300.484" x="112.4954" height="2.976774" width="13.00705" id="rect13447" style="color:#000000;fill:url(#linearGradient13477);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="309.329" x="110.5057" height="6.170955" width="9.983619" id="rect13433" style="color:#000000;fill:url(#linearGradient6034);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999998;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="306.4879" x="110.5053" height="2.977982" width="9.984552" id="rect13435" style="color:#000000;fill:url(#linearGradient13473);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round" />
-</g>
-<g id="view-fullscreen" transform="translate(10.04088,-34.96084)" inkscape:label="#fullscreen">
-<rect y="306.4892" x="93.45912" height="5.971639" width="8.082604" id="rect13459" style="color:#000000;fill:url(#linearGradient6001);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="303.5228" x="93.45915" height="2.934225" width="8.084316" id="rect13461" style="color:#000000;fill:url(#linearGradient13469);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000008;stroke-linecap:round;stroke-linejoin:round" />
-<path id="path13486" style="fill:#000000;fill-rule:evenodd" d="M 90,307.5 92,306 92,309 90,307.5 Z M 99,302 96,302 97.5,300 99,302 Z M 105,307.5 103,306 103,309 105,307.5 Z M 99,314 96,314 97.5,316 99,314 Z" sodipodi:nodetypes="cccccccccccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="show-dialogs" transform="translate(-10.00246,-95)" inkscape:label="#dialog_toggle">
-<g id="g14258">
-<path style="color:#000000;fill:none;stroke:#bebebe;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.9942363" d="M 117.5025,304.5 120.5025,304.5 120.5178,301.4713" id="rect14289" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#bebebe;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.9942363" d="M 111.5178,310.5154 120.5025,310.5 120.5025,304.5 117.5025,304.5" id="rect14287" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999991;stroke-linecap:round;stroke-linejoin:round" d="M 117.5025,304.5 111.5025,304.5 111.5025,310.5" id="path14327" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient14343);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999996;stroke-linecap:round;stroke-linejoin:round" d="M 120.5025,301.5 111.5025,301.5 111.5025,304.5 117.5025,304.5" id="path14331" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<rect transform="translate(40.00246)" y="300" x="70" height="16" width="16" id="rect14256" style="color:#000000;fill:none" />
-<circle style="color:#000000;fill:url(#linearGradient14389);fill-rule:evenodd;stroke:url(#linearGradient5632);stroke-width:0.9999996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.9942363" id="path14381" transform="translate(39.50246,0.5)" cx="82.5" cy="309.5" r="3.5" />
-<path style="fill:none;stroke:#000000;stroke-width:1px" d="M 116.5025,315.5 119.5025,312.5" id="path14391" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<path sodipodi:nodetypes="cc" id="path14405" d="M 121.5025,300.5 110.5025,311.5" style="fill:none;stroke:#c80000;stroke-width:0.9;stroke-linecap:round" inkscape:connector-curvature="0" />
-</g>
-<g id="paint-solid" transform="translate(304.9555,253.9798)" inkscape:label="#fill_solid">
-<rect inkscape:label="#ccc" y="66" x="671" height="17.9991" width="18.0244" id="ccc" style="color:#000000;fill:#99b6d4;fill-rule:evenodd;stroke-width:1.0000004" />
-<use xlink:href="#rect4381" height="1250" width="1250" id="use5847" y="0" x="0" transform="translate(0.045091,0.0202183)" />
-</g>
-<g id="paint-gradient-linear" inkscape:label="#fill_gradient" transform="translate(314.9555,254.0117)">
-<rect y="65.9991" x="691.0244" height="18" width="17.99999" id="aaa" style="color:#000000;fill:url(#linearGradient18352);fill-rule:evenodd;stroke-width:1.0000004" />
-<use xlink:href="#rect4381" height="1250" width="1250" id="use5844" y="0" x="0" transform="translate(20.04509,-0.0117415)" />
-</g>
-<g id="paint-gradient-radial" transform="translate(324.9555,253.9798)" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:label="#fill_radial">
-<rect y="65.9991" x="711" height="18" width="18.0244" id="sss" style="color:#000000;fill:url(#radialGradient4374);fill-rule:evenodd;stroke-width:1.0000004" inkscape:r_cx="true" inkscape:r_cy="true" />
-<use xlink:href="#rect4381" height="1250" width="1250" id="use5840" y="0" x="0" transform="translate(40.04509,0.0202183)" />
-</g>
-<g transform="translate(44.5,189.75)" id="stroke-join-miter" inkscape:label="#join_miter">
-<path style="fill:#99b6d4;fill-rule:evenodd" d="M 900.04,181.75 900,158.75 923,158.75 923,176.25 917,176.25 917,181.75" id="path4023" sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:none;stroke-width:9" id="rect4025" width="24" height="24" x="899.5" y="158.25" />
-<path id="path4027" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 900.04,181.75 900,158.75 923,158.75 M 917,181.75 917,175.75 923,175.75" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:9" id="use5673" width="2" height="2" x="920.5246" y="167.2491" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-3.999997)" id="use5689" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-7.999997)" id="use5691" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12)" id="use5693" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,4)" id="use5696" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,8)" id="use5698" y="0" x="0" />
-<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,12)" id="use5700" y="0" x="0" />
-</g>
-<g id="layer-new" transform="translate(-820,-145)" inkscape:label="#new_layer">
-<path sodipodi:nodetypes="ccccc" id="rect4045" d="M 969.5,185.5 980.5,185.5 976.5,180.5 965.5,180.5 969.5,185.5 Z" style="color:#000000;opacity:0.4809384;fill:url(#linearGradient5693);fill-rule:evenodd;stroke:url(#linearGradient5695);stroke-width:0.9999474;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path4802" d="M 969.5,182.5 980.5,182.5 976.5,177.5 965.5,177.5 969.5,182.5 Z" style="color:#000000;fill:url(#linearGradient5787);fill-rule:evenodd;stroke:url(#linearGradient5789);stroke-width:0.9999474;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<path id="path4048" d="M 967,172 967,170 969,170 969,172 971,172 971,174 969,174 969,176 967,176 967,174 965,174 965,172 967,172 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="layer-rename" transform="matrix(1,0,0,0.994505,-839.959,-133.8815)" inkscape:label="#rename_layer">
-<use xlink:href="#path4802" height="1250" width="1250" id="use5771" y="0" x="0" transform="matrix(1,0,0,1.004834,19.959,12.07373)" />
-<g transform="rotate(-90,994,185)" id="g5621">
-<path transform="translate(20,8)" style="fill:#ffffff;fill-rule:evenodd" d="M 965.5,174.5 969.5,176.5 969.5,172.5 965.5,174.5 Z" id="path5597" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient5644);fill-rule:evenodd" d="M 989.5731,180.459 997.1093,180.459 997.1093,184.459 989.5731,184.459 C 990.0731,183.459 990.0731,181.459 989.5731,180.459 Z" id="path5599" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:url(#linearGradient5658);stroke-width:1.002759px;stroke-linecap:round;stroke-linejoin:round" d="M 998.0682,180.459 988.5682,180.459 985.5,182.5 988.5,184.5 998.1142,184.459 C 998.811,183.357 998.8014,181.4989 998.0682,180.459 Z" id="path5591" sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:url(#linearGradient5669);stroke-width:1.0027586px;stroke-linecap:round;stroke-linejoin:round" d="M 989.0707,184.459 C 989.5707,183.7698 989.5707,181.459 989.0707,180.459" id="path5593" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="fill:#c80000;fill-rule:evenodd" d="M 996.6069,180.459 998.1142,180.459 C 998.6166,181.459 998.6166,183.459 998.1142,184.459 L 996.6069,184.459 996.6069,180.459 Z" id="path5611" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-</g>
-<rect style="color:#000000;fill:#ffffff;fill-rule:evenodd" id="rect6047" width="1" height="1.004834" x="989.959" y="180.8858" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1.0027589px;stroke-linecap:round" d="M 990.459,183.3979 990.459,188.4221" id="path6049" inkscape:connector-curvature="0" />
-</g>
-<g id="layer-raise" transform="translate(-819.959,-24.96088)" inkscape:label="#raise_layer">
-<rect style="color:#000000;fill:none;stroke-width:1.4" id="rect12856" width="16.00002" height="16" x="964.959" y="168.9609" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use5780" y="0" x="0" transform="translate(-0.0410002,0.96088)" />
-<path sodipodi:nodetypes="ccccc" id="path5705" d="M 969.5,180.5 980.5,180.5 976.5,175.5 965.5,175.5 969.5,180.5 Z" style="color:#000000;fill:url(#linearGradient5782);fill-rule:evenodd;stroke:url(#linearGradient5784);stroke-width:1.0000004;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 973.5,176 976,179 974,179 974,182 973,183 973,179 971,179 973.5,176 Z" id="path7204" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use5778" y="0" x="0" transform="translate(-0.0410002,-7.03912)" />
-</g>
-<g id="layer-bottom" transform="translate(-819.959,35.03912)" inkscape:label="#layer_to_bottom">
-<use xlink:href="#rect12856" height="1250" width="1250" id="use13605" y="0" x="0" />
-<use xlink:href="#path5705" height="1250" width="1250" id="use5769" y="0" x="0" transform="translate(-0.0409998,2.96088)" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use5798" y="0" x="0" transform="translate(-0.0409998,-4.03912)" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use5796" y="0" x="0" transform="translate(-0.0410002,-7.03912)" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 973.5,183 976,180 974,180 974,173 973,172 973,180 971,180 973.5,183 Z" id="path7975" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="layer-top" transform="translate(-819.959,15.03912)" inkscape:label="#layer_to_top">
-<use xlink:href="#rect12856" height="1250" width="1250" id="use13602" y="0" x="0" transform="translate(1.5625e-5,3.535156e-6)" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use5794" y="0" x="0" transform="translate(-0.0410002,0.96088)" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use5792" y="0" x="0" transform="translate(-0.0410002,-2.03912)" />
-<use xlink:href="#path5705" height="1250" width="1250" id="use5767" y="0" x="0" transform="translate(-0.0410002,-5.03912)" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 973.5,171 976,174 974,174 974,182 973,183 973,174 971,174 973.5,171 Z" id="path7995" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="layer-delete" transform="translate(-819.959,55.03912)" inkscape:label="#delete_layer">
-<use xlink:href="#path4802" height="1250" width="1250" id="use5800" y="0" x="0" transform="translate(-0.0409998,2.96088)" />
-<use xlink:href="#path11129" height="1250" width="1250" id="use5864" y="0" x="0" transform="translate(-0.0410002,-3.03912)" />
-<g id="g5771" transform="translate(-0.541,0.46088)">
-<path sodipodi:nodetypes="ccccccccc" style="fill:#aa0000;fill-rule:evenodd;stroke:#aa0000;stroke-width:1px" d="M 972,171 973,170 980,170 981,171 981,178 980,179 973,179 972,178 972,171 Z" id="path8011" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path8023" d="M 974,171.85 979,176.85" style="fill:none;stroke:#ffffff;stroke-width:1.7" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path8025" d="M 979,171.85 974,176.85" style="fill:none;stroke:#ffffff;stroke-width:1.8;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="layer-duplicate" transform="translate(-819.96,95.039)" inkscape:label="#duplicate_layer">
-<rect id="rect6972" height="16" width="16" y="171.96" x="964.96" style="fill:none" />
-<use id="use6122" transform="translate(-0.041,2.9609)" height="1250" width="1250" xlink:href="#path4802" y="0" x="0" />
-<use id="use6123" transform="translate(-0.041,1.961)" height="1250" width="1250" xlink:href="#path5705" y="0" x="0" />
-</g>
-<g id="selection-move-to-layer-above" transform="matrix(0.997444,0,0,1,-817.4926,-59)" inkscape:label="#move_selection_above">
-<use xlink:href="#path4802" height="1250" width="1250" id="use5774" y="0" x="0" transform="translate(-0.0410002,-11.03912)" />
-<rect style="color:#000000;fill:none" id="rect9602" width="16" height="16" x="965" y="164" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 973.5,167 976,170 974,170 974,175 973,176 973,170 971,170 973.5,167 Z" id="path9533" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<g id="g5834">
-<path id="path9593" d="M 965.5,173.5 975.5,173.5 979.5,177.5 969.5,177.5 965.5,173.5 Z" style="fill:none;stroke:#ffffff;stroke-width:1.0012804px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<rect y="173" x="965" height="1" width="1" id="rect9565" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<use xlink:href="#rect9565" x="0" y="0" id="use5802" transform="translate(1.959,1.96088)" width="1250" height="1250" />
-<use xlink:href="#use5802" x="0" y="0" id="use5804" transform="translate(2,2)" width="1250" height="1250" />
-<use xlink:href="#use5804" x="0" y="0" id="use5806" transform="translate(2)" width="1250" height="1250" />
-<use xlink:href="#use5806" x="0" y="0" id="use5808" transform="translate(2)" width="1250" height="1250" />
-<use xlink:href="#use5808" x="0" y="0" id="use5810" transform="translate(2)" width="1250" height="1250" />
-<use xlink:href="#use5810" x="0" y="0" id="use5812" transform="translate(2)" width="1250" height="1250" />
-<use xlink:href="#use5812" x="0" y="0" id="use5815" transform="translate(2)" width="1250" height="1250" />
-<use xlink:href="#use5815" x="0" y="0" id="use5817" transform="translate(-2,-2)" width="1250" height="1250" />
-<rect style="color:#000000;fill:#000000;fill-rule:evenodd" id="use5821" width="1" height="1" x="970.959" y="172.9609" />
-<use xlink:href="#use5821" x="0" y="0" id="use5823" transform="translate(-2)" width="1250" height="1250" />
-<use xlink:href="#use5823" x="0" y="0" id="use5825" transform="translate(-2)" width="1250" height="1250" />
-<use xlink:href="#use5817" x="0" y="0" id="use5829" transform="translate(-2,-2)" width="1250" height="1250" />
-<use xlink:href="#use5829" x="0" y="0" id="use5832" transform="translate(-2)" width="1250" height="1250" />
-</g>
-</g>
-<g id="selection-move-to-layer-below" transform="matrix(0.997444,0,0,1,-817.4926,-39)" inkscape:label="#move_selection_below">
-<use xlink:href="#path4802" height="1250" width="1250" id="use5776" y="0" x="0" transform="translate(-0.0409998,-5.03912)" />
-<rect style="color:#000000;fill:none" id="rect10345" width="16" height="16" x="965" y="164" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 973.5,177 971,174 973,174 973,169 974,168 974,174 976,174 973.5,177 Z" id="path10353" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#g5834" height="1250" width="1250" id="use5851" y="0" x="0" transform="translate(-0.041,-6.999996)" />
-</g>
-<g id="layer-previous" transform="matrix(0.999888,0,0,0.999919,-819.8907,-104.985)" inkscape:label="#switch_to_layer_above">
-<path sodipodi:nodetypes="ccccc" id="path11129" d="M 969.5,185.5 980.5,185.5 976.5,180.5 965.5,180.5 969.5,185.5 Z" style="color:#000000;opacity:0.4809384;fill:url(#linearGradient5770);fill-rule:evenodd;stroke:url(#linearGradient5772);stroke-width:1.0000962;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path11131" d="M 969.5,175.5 980.5,175.5 976.5,170.5 965.5,170.5 969.5,175.5 Z" style="color:#000000;fill:url(#linearGradient5775);fill-rule:evenodd;stroke:url(#linearGradient5780);stroke-width:1.0000962;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 973.5,176 971,179 973,179 973,184 974,183 974,179 976,179 973.5,176 Z" id="path11143" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="layer-next" transform="translate(-819.959,-84.96088)" inkscape:label="#switch_to_layer_below">
-<path style="fill:#000000;fill-rule:evenodd" d="M 973.5,180 976,177 974,177 974,172 973,173 973,177 971,177 973.5,180 Z" id="path11158" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path11131" height="1250" width="1250" id="use5858" y="0" x="0" transform="translate(-0.0410002,9.96088)" />
-<use xlink:href="#path11129" height="1250" width="1250" id="use5861" y="0" x="0" transform="translate(-0.0409998,-10.03912)" />
-</g>
-<g id="selection-make-bitmap-copy" transform="matrix(-1,0,0,1,321.0144,75.92699)" inkscape:label="#selection_bitmap">
-<path style="color:#000000;fill:url(#linearGradient11197);fill-rule:evenodd;stroke:url(#linearGradient11286);stroke-linecap:round;stroke-linejoin:round" d="M 250.4841,75.57301 C 255.0144,74.05375 254.0144,72.55375 254.5144,71.55375 L 258.5144,71.55375 C 258.7644,72.29084 259.8455,74.26817 261.0144,74.52793 L 265.5144,75.52793 265.5144,84.57301 251.5144,84.55375 250.5144,83.55375 250.4841,75.57301 Z" id="rect11168" sodipodi:nodetypes="cccsccccc" inkscape:connector-curvature="0" />
-<circle transform="matrix(0.938759,0,0,0.938488,13.33429,5.86879)" id="path11178" style="color:#000000;fill:url(#linearGradient6187);fill-rule:evenodd;stroke:#000000;stroke-width:1.3620667;stroke-linecap:round;stroke-linejoin:round" cx="258.5" cy="78.5" r="3.5" />
-<rect style="color:#000000;fill:url(#linearGradient11210);fill-rule:evenodd;stroke:url(#linearGradient11294);stroke-linecap:round;stroke-linejoin:round" id="rect11199" width="4" height="9" x="261.5144" y="75.57301" />
-<path style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient11302);stroke-width:0.9999997px;stroke-linecap:round;stroke-linejoin:round" d="M 254.4841,71.58841 254.4841,69.57299 258.4841,69.57299 258.4841,71.58841 254.4841,71.58841 Z" id="path11225" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#b1b1b1;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" d="M 258.9841,75.32301 C 257.9841,74.32301 254.4841,74.32301 253.4841,75.32301" id="path11254" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<circle style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:0.747" id="path3614" transform="matrix(-1,0,0,1,321.0144,-55.92699)" cx="64" cy="135" r="1" />
-<circle style="color:#000000;fill:#ffffff;fill-opacity:0.4472574;fill-rule:evenodd;stroke-width:0.747" id="path4498" transform="matrix(-1.5,0,0,1.5,351.5144,-122.927)" cx="64" cy="135" r="1" />
-</g>
-<g id="document-cleanup" transform="translate(-254.959,-4.930791)" inkscape:label="#file_vacuum">
-<path sodipodi:nodetypes="cssc" id="path11319" d="M 268.5,100 C 267.5,100 265.5,100.3049 265.5,98 265.5,95 269.1283,95.5 271.5,95.5 274.5,95.5 274.5,93 274.5,93" style="fill:none;stroke:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-<ellipse transform="matrix(0.119829,0,0,0.105878,237.4457,94.48869)" id="path11327" style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:8.8780499;stroke-linecap:round;stroke-linejoin:round" cx="273.75" cy="97.5" rx="6.25" ry="6.5" />
-<path sodipodi:nodetypes="ccccs" id="rect11314" d="M 270,98.98237 C 277.036,95.04595 279.5,99.48237 279.5,99.48237 L 279.5,104.4824 268.5,104.5 C 268.5,104.5 265.5,101.5 270,98.98237 Z" style="color:#000000;fill:url(#linearGradient11335);fill-rule:evenodd;stroke:url(#linearGradient11359);stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<ellipse transform="matrix(0.401393,0,0,0.385965,168.1187,65.35082)" id="path11312" style="color:#000000;fill:url(#radialGradient11343);fill-rule:evenodd;stroke:#000000;stroke-width:2.5406296;stroke-linecap:round;stroke-linejoin:round" cx="273.75" cy="97.5" rx="6.25" ry="6.5" />
-<rect y="90.46992" x="270.455" height="2.034293" width="8.089884" id="rect11317" style="color:#000000;fill:#646464;fill-rule:evenodd;stroke:url(#linearGradient11367);stroke-width:0.9999993;stroke-linecap:round;stroke-linejoin:round" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 273.459,91.43079 275.459,91.43079" id="path5624" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(-298.3149,-87.1388)" id="edit-select-all" inkscape:label="#selection_select_all">
-<use xlink:href="#g6068" height="1250" width="1250" transform="translate(-0.0124923,-0.0145053)" id="use6072" y="0" x="0" />
-<use xlink:href="#g10421" height="1250" width="1250" transform="translate(-1.042199,0.956231)" id="use6075" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 55.5,185.5 56.5,185.5" id="path6078" transform="translate(298.3149,67.13877)" inkscape:connector-curvature="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(3)" id="use6080" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(6)" id="use6082" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(9)" id="use6084" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(12)" id="use6086" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(2,15)" id="use6088" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(5,15)" id="use6090" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(8,15)" id="use6092" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(11,15)" id="use6094" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(14,15)" id="use6096" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 55.5,187.5 55.5,188.5" id="path6100" transform="translate(298.3149,67.13877)" inkscape:connector-curvature="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(0,3)" id="use6102" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(0,6)" id="use6104" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(0,9)" id="use6106" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(0,12)" id="use6108" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,10)" id="use6110" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,7)" id="use6112" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,4)" id="use6114" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,1)" id="use6116" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,-2)" id="use6118" y="0" x="0" />
-</g>
-<g id="document-open-recent" transform="translate(-260,4.914011)" inkscape:label="#file_open_recent">
-<use xlink:href="#rect6425" height="1250" width="1250" transform="translate(4,4)" id="use5610" y="0" x="0" />
-<use xlink:href="#rect6425" height="1250" width="1250" transform="translate(2,2)" id="use5608" y="0" x="0" />
-<path style="color:#000000;fill:url(#linearGradient5766);fill-rule:evenodd;stroke:url(#linearGradient5768);stroke-linecap:round;stroke-linejoin:round" d="M 273.5,21.543 278.5,21.543 278.5,31.543 270.5,31.543 270.5,24.543 273.5,21.543 Z" id="rect6425" sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" />
-<circle style="color:#000000;fill:url(#linearGradient5612);fill-rule:evenodd;stroke:url(#linearGradient5620);stroke-width:0.7119799;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path6398" transform="matrix(1.331759,0,0,1.327869,-92.69296,-5.997991)" cx="281" cy="23" r="3" />
-<path style="color:#000000;fill:#000000;fill-rule:evenodd" d="M 281,22 282,21 282,25 281,25 281,22 Z" id="rect4108" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#000000;fill-rule:evenodd" d="M 280,23.9955 282,23.9955 282,24.9955 279,24.9955 280,23.9955 Z" id="rect4110" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" d="M 270.5,24.543 273.5,24.543 273.5,21.543 270.5,24.543 Z" id="path4704" inkscape:connector-curvature="0" />
-</g>
-<g id="format-text-direction-horizontal" inkscape:label="#writing_mode_lr" transform="translate(-225.5246,375.0009)">
-<g id="use5602" transform="translate(-0.4754,-9e-4)">
-<path sodipodi:nodetypes="cccccccc" id="path3731" d="M 841,26 863,26 864,27 864,47 862,49 842,49 841,48 841,26 Z" style="color:#000000;fill:#000000;fill-opacity:0.0666667;fill-rule:evenodd" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#000000;fill-rule:evenodd" d="M 840,26 841,26 841,46 840,46 840,26 Z" id="path3733" inkscape:connector-curvature="0" />
-<rect y="26" x="861" height="20" width="1" id="rect3735" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect transform="rotate(-90)" y="841" x="-26" height="20" width="1" id="rect3737" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect transform="rotate(-90)" y="841" x="-47" height="20" width="1" id="rect3739" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect y="26" x="841" height="20" width="20" id="rect3741" style="color:#000000;fill:url(#linearGradient3749);fill-rule:evenodd" />
-<path style="fill:#ffffff;fill-rule:evenodd" d="M 842,46 841,46 841,26 861,26 861,27 842,27 842,46 Z" id="path3743" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#383838;stroke-width:1.0000001px;stroke-linecap:round" d="M 843.5,34.75 843.5,30.75 C 843.5,27.75 848.5,27.75 848.5,30.75 L 848.5,34.75" id="path3745" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#383838;stroke-width:1.0000001px" d="M 843.5,32 848.6429,32" id="path3747" inkscape:connector-curvature="0" />
-</g>
-<path style="fill:#5a5a5a;fill-rule:evenodd" d="M 859.5492,30.4982 856.5246,27.9991 856.5246,29.9991 849.5246,29.9991 849.5246,30.9991 856.5246,30.9991 856.5246,32.9991 859.5492,30.4982 Z" id="path6495" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<path style="fill:#5a5a5a;fill-rule:evenodd" d="M 859.5492,36.4982 856.5246,33.9991 856.5246,35.9991 841.5246,35.9991 841.5246,36.9991 856.5246,36.9991 856.5246,38.9991 859.5492,36.4982 Z" id="path6497" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path6497" height="1250" width="1250" transform="translate(0,6)" id="use5502" y="0" x="0" />
-</g>
-<g id="format-text-direction-vertical" inkscape:label="#writing_mode_tb" transform="translate(-256,375)">
-<path sodipodi:nodetypes="cccccccc" id="path6536" d="M 841,26 863,26 864,27 864,47 862,49 842,49 841,48 841,26 Z" style="color:#000000;fill:#000000;fill-opacity:0.0666667;fill-rule:evenodd" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#000000;fill-rule:evenodd" d="M 840,26 841,26 841,46 840,46 840,26 Z" id="rect6538" inkscape:connector-curvature="0" />
-<rect y="26" x="861" height="20" width="1" id="rect6540" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect transform="rotate(-90)" y="841" x="-26" height="20" width="1" id="rect6542" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect transform="rotate(-90)" y="841" x="-47" height="20" width="1" id="rect6544" style="color:#000000;fill:#000000;fill-rule:evenodd" />
-<rect y="26" x="841" height="20" width="20" id="rect6546" style="color:#000000;fill:url(#linearGradient3755);fill-rule:evenodd" />
-<path style="fill:#ffffff;fill-rule:evenodd" d="M 842,46 841,46 841,26 861,26 861,27 842,27 842,46 Z" id="path6565" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#383838;stroke-width:1.0000001px;stroke-linecap:round" d="M 859.5246,34.7491 859.5246,30.7491 C 859.5246,27.7491 854.5246,27.7491 854.5246,30.7491 L 854.5246,34.7491" id="path6554" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#383838;stroke-width:1.0000001px" d="M 859.6675,31.9991 854.5246,31.9991" id="path6556" inkscape:connector-curvature="0" />
-<path style="fill:#5a5a5a;fill-rule:evenodd" d="M 857.4754,45.0009 855,42 857,42 857,35 858,35 858,42 860,42 857.4754,45.0009 Z" id="path6548" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<path style="fill:#5a5a5a;fill-rule:evenodd" d="M 851.4754,45 849,42 851,42 851,27 852,27 852,42 854,42 851.4754,45 Z" id="path6550" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path6550" height="1250" width="1250" transform="translate(-5.9754)" id="use5600" y="0" x="0" />
-</g>
-<g id="align-horizontal-right-to-anchor" transform="matrix(1,0,0,0.998006,1017.995,-110.6741)" inkscape:label="#al_left_out">
-<g id="g5060">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5531);stroke-width:1.0009987;stroke-linejoin:round;stroke-miterlimit:0" id="rect5048" width="6.008899" height="5.011291" x="-27.50193" y="175.5202" />
-<rect style="color:#000000;fill:url(#linearGradient5533);fill-rule:evenodd;stroke:url(#linearGradient5535);stroke-width:1.0009992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5050" width="4.016531" height="3.009787" x="-26.50193" y="176.5235" />
-</g>
-<g id="g4929" transform="matrix(1.091916,0,0,1,2.542347,0)">
-<rect y="192.5597" x="-38.48989" height="5.011148" width="10.98825" id="rect4911" style="color:#000000;fill:none;stroke:url(#linearGradient5537);stroke-width:0.9579424;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="193.5608" x="-37.60492" height="3.006435" width="9.227168" id="rect4913" style="color:#000000;fill:url(#linearGradient5539);fill-rule:evenodd;stroke:url(#linearGradient5541);stroke-width:0.9579424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="g4889">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5543);stroke-width:1.0009986;stroke-linejoin:round;stroke-miterlimit:0" id="rect4879" width="16.99984" height="7.017632" x="-44.48746" y="180.5436" />
-<rect style="color:#000000;fill:url(#linearGradient5545);fill-rule:evenodd;stroke:url(#linearGradient5547);stroke-width:1.0009992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect4881" width="14.99677" height="5.021792" x="-43.4854" y="181.5373" />
-</g>
-<rect y="175" x="-45" height="16" width="16" id="rect5118" style="color:#000000;fill:none" />
-<g id="g4893" transform="matrix(0.414065,0,0,0.857422,-24.08423,33.74415)">
-<rect y="175.8691" x="-25.11964" height="7.017632" width="16.91182" id="rect4895" style="color:#000000;fill:none;stroke:url(#linearGradient5549);stroke-width:1.6799744;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="177.0416" x="-22.70454" height="4.678422" width="12.16012" id="rect4897" style="color:#000000;fill:url(#linearGradient5551);fill-rule:evenodd;stroke:url(#linearGradient5553);stroke-width:1.6799736;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<path style="fill:none;stroke:#c80000;stroke-width:1.0009989;stroke-linecap:square" d="M -27.45876,175.5271 -27.45876,198.5722" id="path5120" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<g transform="matrix(0.414065,0,0,0.857422,-17.08423,41.76522)" id="g4909" />
-</g>
-<g id="align-horizontal-left" transform="matrix(1,0,0,0.998006,1047.985,-110.6489)" inkscape:label="#al_left_in">
-<g id="g4936" transform="translate(60.01222,-11.05555)">
-<rect y="187.554" x="-104.4881" height="7.017632" width="22.00094" id="rect4938" style="color:#000000;fill:none;stroke:url(#linearGradient5525);stroke-width:1.0009984;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="188.5476" x="-103.4882" height="5.021792" width="20.00112" id="rect4940" style="color:#000000;fill:url(#linearGradient5527);fill-rule:evenodd;stroke:url(#linearGradient5529);stroke-width:1.0009996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<use xlink:href="#g4893" height="1250" width="1250" id="use4957" y="0" x="0" transform="translate(-9.990004,-5.030154)" />
-<use xlink:href="#g4929" height="1250" width="1250" id="use4933" y="0" x="0" transform="translate(-4.988258,-5.035654)" />
-<rect y="175" x="-45" height="16" width="16" id="rect5154" style="color:#000000;fill:none" />
-<path style="fill:#000000;fill-rule:evenodd" d="M -44,196.543 -41,194.038 -41,196.0421 -30,196.042 -30,197.0439 -41,197.0439 -41,199.0479 -44,196.543 Z" id="path6192" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#path5120" height="1250" width="1250" id="use5039" y="0" x="0" transform="translate(-17.01664,-0.0261695)" />
-</g>
-<g id="align-horizontal-center" transform="matrix(1,0,0,0.998006,1078.001,-110.649)" inkscape:label="#al_center_hor">
-<use xlink:href="#use4933" height="1250" width="1250" id="use4973" y="0" x="0" transform="translate(4.9833,-0.0010592)" />
-<use xlink:href="#g4936" height="1250" width="1250" id="use4970" y="0" x="0" transform="translate(-0.0162524,0.0037401)" />
-<rect style="color:#000000;fill:none" id="rect4315" width="24" height="24" x="1080" y="165" transform="matrix(1,0,0,1.001998,-1125,9.670333)" />
-<rect y="175" x="-45" height="16" width="16" id="rect5252" style="color:#000000;fill:none" />
-<rect y="175" x="-44.96902" height="16" width="16" id="rect6200" style="color:#000000;fill:none" />
-<path style="fill:#000000;fill-rule:evenodd" d="M -34,196.511 -37,199.016 -37,197.012 -43,197.0439 -43,196.042 -37,196.01 -37,194.006 -34,196.511 Z" id="path6242" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<g transform="matrix(0.743616,0,0,1,-8.870407,-12.0507)" id="use4976">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5519);stroke-width:1.1608068;stroke-linejoin:round;stroke-miterlimit:0" id="rect4980" width="10.77151" height="5.011148" x="-38.50316" y="192.5597" />
-<rect style="color:#000000;fill:url(#linearGradient5521);fill-rule:evenodd;stroke:url(#linearGradient5523);stroke-width:1.1608068;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect4982" width="8.120504" height="3.006435" x="-37.19693" y="193.5608" />
-</g>
-<use xlink:href="#path5120" height="1250" width="1250" id="use5042" y="0" x="0" transform="translate(-6.033343,-0.0260693)" />
-<use xlink:href="#path6242" height="1250" width="1250" transform="matrix(-1,0,0,1,-66.9921,0.03112)" id="use5624" y="0" x="0" />
-</g>
-<g id="align-horizontal-right" transform="matrix(1,0,0,0.998006,1110.954,-109.6489)" inkscape:label="#al_right_in">
-<rect y="173.998" x="-47.96902" height="16" width="16" id="rect4279" style="color:#000000;fill:none" />
-<use xlink:href="#use4933" height="1250" width="1250" id="use5021" y="0" x="0" transform="translate(8.031,-1.001998)" />
-<use xlink:href="#g4936" height="1250" width="1250" id="use5025" y="0" x="0" transform="translate(-1.971593,-1.007084)" />
-<use xlink:href="#use4957" height="1250" width="1250" id="use5023" y="0" x="0" transform="translate(13.031,-1.001998)" />
-<use xlink:href="#path5120" height="1250" width="1250" id="use5044" y="0" x="0" transform="translate(3.014357,-1.028167)" />
-<use xlink:href="#path6192" height="1250" width="1250" id="use5621" y="0" x="0" transform="matrix(-1,0,0,1,-68.9444,-1.002948)" />
-</g>
-<g id="align-horizontal-left-to-anchor" inkscape:label="#al_right_out" transform="translate(-32.05317,-131.0425)">
-<use xlink:href="#g5060" height="1250" width="1250" id="use5064" y="0" x="0" transform="matrix(1,0,0,0.998006,1153.055,20.37222)" />
-<rect y="195.0446" x="1125.038" height="15.9681" width="16" id="rect5073" style="color:#000000;fill:none" />
-<use xlink:href="#g4889" height="1250" width="1250" id="use5030" y="0" x="0" transform="matrix(1,0,0,0.998006,1176.045,20.37348)" />
-<use xlink:href="#g4893" height="1250" width="1250" id="use5032" y="0" x="0" transform="matrix(1,0,0,0.998006,1166.045,20.37348)" />
-<use xlink:href="#g4929" height="1250" width="1250" id="use5034" y="0" x="0" transform="matrix(1,0,0,0.998006,1171.048,20.36799)" />
-<use xlink:href="#path5120" height="1250" width="1250" id="use5046" y="0" x="0" transform="matrix(1,0,0,0.998006,1159.021,20.36748)" />
-</g>
-<g transform="matrix(1,0,0,0.998006,1003.058,-78.63403)" id="align-vertical-bottom-to-anchor" inkscape:label="#al_top_out">
-<use xlink:href="#g4889" height="1250" width="1250" id="use5485" y="0" x="0" transform="matrix(0,1.001998,0.998006,0,-198.7358,218.0576)" />
-<use xlink:href="#g4893" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-205.7188,218.0554)" id="use5503" y="0" x="0" />
-<rect y="6.048015" x="172.9911" height="15.9681" width="16.03197" id="rect4502" style="color:#000000;fill:none" transform="rotate(90)" />
-<use xlink:href="#g4929" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-220.7255,218.0571)" id="use5559" y="0" x="0" />
-<use xlink:href="#g5060" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-186.7188,218.063)" id="use5562" y="0" x="0" />
-<use xlink:href="#path5120" height="1250" width="1250" id="use5618" y="0" x="0" transform="matrix(0,1.001998,-0.998006,0,168.6276,218.0287)" />
-</g>
-<g transform="matrix(1,0,0,0.998006,1095.901,-75.69683)" id="align-vertical-center" inkscape:label="#al_center_ver">
-<rect y="38.91593" x="170.0548" height="15.9681" width="16.03197" id="rect4582" style="color:#000000;fill:none" transform="rotate(90)" />
-<rect y="38.91593" x="170.0858" height="15.9681" width="16.03197" id="rect4584" style="color:#000000;fill:none" transform="rotate(90)" />
-<use xlink:href="#path6242" height="1250" width="1250" transform="matrix(0,1.001998,-0.998006,0,135.7278,215.127)" id="use5762" y="0" x="0" />
-<use xlink:href="#use5762" height="1250" width="1250" transform="matrix(1,0,0,-1,4.205594e-5,363.1201)" id="use5766" y="0" x="0" />
-<use xlink:href="#use4970" height="1250" width="1250" id="use5797" y="0" x="0" transform="matrix(0,1.001998,0.998006,0,-223.5451,215.119)" />
-<use xlink:href="#use4976" height="1250" width="1250" id="use5799" y="0" x="0" transform="matrix(0,1.001998,0.998006,0,-229.5403,215.1289)" />
-<use xlink:href="#use4973" height="1250" width="1250" id="use5801" y="0" x="0" transform="matrix(0,1.001998,0.998006,0,-243.5403,215.1173)" />
-<use xlink:href="#use5618" height="1250" width="1250" id="use5725" y="0" x="0" transform="translate(-32.84268,-8.95505)" />
-</g>
-<g transform="matrix(1,0,0,0.998006,1142.894,-75.60573)" id="align-vertical-bottom" inkscape:label="#al_bottom_in">
-<use xlink:href="#use5626" height="1250" width="1250" id="use5807" y="0" x="0" transform="matrix(1,0,0,-1.001998,-1109.954,391.4175)" />
-<use xlink:href="#use5712" height="1250" width="1250" id="use5809" y="0" x="0" transform="matrix(1,0,0,1.001998,-1108.955,-16.45778)" />
-<use xlink:href="#use5675" height="1250" width="1250" transform="matrix(1,0,0,1.001998,-1108.95,-26.47689)" id="use5813" y="0" x="0" />
-<use xlink:href="#use5716" height="1250" width="1250" id="use5811" y="0" x="0" transform="matrix(1,0,0,1.001998,-1108.949,-11.44863)" />
-<use xlink:href="#use5719" height="1250" width="1250" id="use5827" y="0" x="0" transform="matrix(1,0,0,1.001998,-1109.954,-4.43204)" />
-</g>
-<g id="align-vertical-top-to-anchor" transform="translate(3.494029,-92.48933)" inkscape:label="#al_bottom_out">
-<rect y="-1113.49" x="186.5164" height="15.9681" width="16" id="rect4694" style="color:#000000;fill:none" transform="rotate(90)" />
-<use xlink:href="#use5559" height="1250" width="1250" id="use5835" y="0" x="0" transform="matrix(1,0,0,0.998006,1119.564,14.85359)" />
-<use xlink:href="#use5485" height="1250" width="1250" id="use5837" y="0" x="0" transform="matrix(1,0,0,0.998006,1119.567,19.85517)" />
-<use xlink:href="#use5503" height="1250" width="1250" id="use5839" y="0" x="0" transform="matrix(1,0,0,0.998006,1119.559,9.852706)" />
-<use xlink:href="#use5562" height="1250" width="1250" id="use5841" y="0" x="0" transform="matrix(1,0,0,0.998006,1119.563,-3.144651)" />
-<use xlink:href="#use5618" height="1250" width="1250" id="use5843" y="0" x="0" transform="matrix(1,0,0,0.998006,1119.565,2.855306)" />
-</g>
-<g id="distribute-horizontal-left" transform="matrix(1,0,0,0.998006,1014.97,-40.61113)" inkscape:label="#distribute_left">
-<rect y="175" x="-45" height="16" width="16" id="rect5678" style="color:#000000;fill:none" />
-<g id="g5853">
-<use xlink:href="#path5265" x="0" y="0" id="use5269" transform="translate(9,-8.462612e-4)" width="1250" height="1250" />
-<use xlink:href="#path5265" x="0" y="0" id="use5274" transform="translate(18,-8.462612e-4)" width="1250" height="1250" />
-<path sodipodi:nodetypes="cc" id="path5265" d="M -44.4626,175.469 -44.4626,187.4922" style="fill:none;stroke:#c80000;stroke-width:1.0009989;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccccc" id="path5722" d="M -41.9626,178.0051 -43.9626,176.4702 -41.9626,174.9992 -41.9626,175.9692 -38,175.97 -38,174.968 -36,176.471 -38,177.974 -38,176.972 -41.9626,176.9712 -41.9626,178.0051 Z" style="fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-<use xlink:href="#path5722" x="0" y="0" id="use5276" transform="translate(9,-5.433975e-6)" width="1250" height="1250" />
-</g>
-<g transform="matrix(0,0.745102,0.998006,0,-218.6383,211.1611)" id="use5317">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5774);stroke-width:1.1608068;stroke-linejoin:round;stroke-miterlimit:0" id="rect5770" width="10.77151" height="5.011148" x="-38.50316" y="192.5597" />
-<rect style="color:#000000;fill:url(#linearGradient5776);fill-rule:evenodd;stroke:url(#linearGradient5778);stroke-width:1.1608068;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5772" width="8.120504" height="3.006435" x="-37.19693" y="193.5608" />
-</g>
-<g transform="matrix(0,1.576101,0.998006,0,-236.6395,242.165)" id="use5322">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5579);stroke-width:0.798134;stroke-linejoin:round;stroke-miterlimit:0" id="rect5326" width="10.77151" height="5.011148" x="-38.50316" y="192.5597" />
-<rect style="color:#000000;fill:url(#linearGradient5581);fill-rule:evenodd;stroke:url(#linearGradient5583);stroke-width:0.7981339;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5328" width="9.534461" height="3.006026" x="-37.87537" y="193.5616" />
-</g>
-<g id="g5427" transform="matrix(0.974035,0,0,1,-0.895642,0)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5585);stroke-width:1.0142547;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5724" width="3.084933" height="9.035772" x="-35.48843" y="183.485" />
-<path sodipodi:nodetypes="ccc" id="path5415" d="M -33.4626,185.4882 -33.4626,191.5001 -34.4626,191.5001" style="fill:none;stroke:#a4b8d2;stroke-width:1.0142525px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccc" id="path5417" d="M -34.4626,190.4982 -34.4626,184.4862 -33.4626,184.4862" style="fill:none;stroke:#e2e8f0;stroke-width:1.0142525px;stroke-linecap:square" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="distribute-horizontal-center" transform="matrix(1,0,0,0.998006,1048.936,-40.6396)" inkscape:label="#distribute_hcentre">
-<g id="use5367" transform="matrix(0,1.094098,0.818085,0,-177.9701,226.5979)">
-<rect y="186.3897" x="-38.49158" height="5.002912" width="11.03482" id="rect5376" style="color:#000000;fill:none;stroke:url(#linearGradient5561);stroke-width:1.0580499;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="187.5994" x="-37.6174" height="2.583389" width="9.242819" id="rect5378" style="color:#000000;fill:url(#linearGradient5563);fill-rule:evenodd;stroke:url(#linearGradient5565);stroke-width:0.9579428;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="g5355" transform="matrix(0,1.001998,0.998006,0,-217.691,227.0587)">
-<rect y="173.5676" x="-44.48312" height="6.021734" width="9.022814" id="rect5357" style="color:#000000;fill:none;stroke:url(#linearGradient5567);stroke-width:1.0009983;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="174.5696" x="-43.48764" height="4.045835" width="7.031883" id="rect5359" style="color:#000000;fill:url(#linearGradient5569);fill-rule:evenodd;stroke:url(#linearGradient5571);stroke-width:1.0009997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g transform="matrix(0,1.001998,0.998006,0,-215.6813,226.0567)" id="use5339">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5573);stroke-width:1.0009985;stroke-linejoin:round;stroke-miterlimit:0" id="rect5345" width="16.99984" height="6.021734" x="-44.48746" y="180.6097" />
-<rect style="color:#000000;fill:url(#linearGradient5575);fill-rule:evenodd;stroke:url(#linearGradient5577);stroke-width:1.0009995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5347" width="14.99677" height="4.045835" x="-43.4854" y="181.6118" />
-</g>
-<rect y="175" x="-45" height="16" width="16" id="rect5736" style="color:#000000;fill:none" />
-<use xlink:href="#g5853" height="1250" width="1250" id="use5860" y="0" x="0" transform="translate(3.0309)" />
-</g>
-<g id="distribute-horizontal-right" transform="matrix(1,0,0,0.998006,1082.973,-40.64896)" inkscape:label="#distribute_right">
-<use xlink:href="#g5853" height="1250" width="1250" id="use5863" y="0" x="0" transform="translate(4.9936,0.0378755)" />
-<rect y="175.006" x="-45" height="16" width="16" id="rect5180" style="color:#000000;fill:none" />
-<g transform="matrix(0,0.745102,0.998006,0,-218.6447,211.1989)" id="use5320">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5786);stroke-width:1.1608068;stroke-linejoin:round;stroke-miterlimit:0" id="rect5782" width="10.77151" height="5.011148" x="-38.50316" y="192.5597" />
-<rect style="color:#000000;fill:url(#linearGradient5788);fill-rule:evenodd;stroke:url(#linearGradient5790);stroke-width:1.1608068;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5784" width="8.120504" height="3.006435" x="-37.19693" y="193.5608" />
-</g>
-<use xlink:href="#use5322" height="1250" width="1250" id="use5336" y="0" x="0" transform="translate(-0.005212,0.0379148)" />
-<use xlink:href="#g5427" height="1250" width="1250" id="use5432" y="0" x="0" transform="translate(1.993612,0.0370281)" />
-</g>
-<g id="distribute-horizontal-gaps" transform="matrix(1,0,0,0.998006,1116.97,-40.59264)" inkscape:label="#distribute_hdist">
-<g id="g5885">
-<use xlink:href="#use5274" transform="translate(-15,-0.0213989)" x="0" y="0" id="use5475" width="1250" height="1250" />
-<use xlink:href="#use5274" transform="translate(-8,-0.0222444)" x="0" y="0" id="use5479" width="1250" height="1250" />
-<use xlink:href="#use5274" transform="translate(-5,-0.0213989)" x="0" y="0" id="use5481" width="1250" height="1250" />
-<use xlink:href="#use5274" transform="translate(2,-0.0222444)" x="0" y="0" id="use5483" width="1250" height="1250" />
-<path sodipodi:nodetypes="ccccccccccc" id="path5816" d="M -39,177.974 -41,176.4213 -39,174.968 -39.015,175.9203 -37.015,175.9203 -37.015,174.9183 -35.015,176.4213 -37.015,177.9243 -37.015,176.9222 -39.015,176.9222 -39,177.974 Z" style="fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-<use xlink:href="#path5816" x="0" y="0" id="use5473" transform="translate(10.0524,-0.0230858)" width="1250" height="1250" />
-</g>
-<rect y="175" x="-45" height="16" width="16" id="rect5806" style="color:#000000;fill:none" />
-<use xlink:href="#g5427" height="1250" width="1250" id="use5435" y="0" x="0" transform="translate(1.000012,-0.0230918)" />
-<g id="use5437" transform="matrix(1,0,0,1.662154,-8.963779,-123.5118)">
-<rect y="183.485" x="-35.49882" height="9.036107" width="3.020791" id="rect5452" style="color:#000000;fill:none;stroke:url(#linearGradient5557);stroke-width:0.7764218;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path style="fill:none;stroke:#a4b8d2;stroke-width:0.7764219;stroke-linecap:square" d="M -33.48843,184.6843 -33.48843,191.9183 -34.48843,191.9183" id="path5454" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#e2e8f0;stroke-width:0.7764219;stroke-linecap:square" d="M -34.48843,191.3155 -34.48843,184.0815 -33.48843,184.0815" id="path5456" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-</g>
-<g id="g5462" transform="matrix(0.994095,0,0,1.884852,10.82365,-164.3818)">
-<rect y="183.485" x="-35.49882" height="9.036107" width="3.020791" id="rect5464" style="color:#000000;fill:none;stroke:url(#linearGradient5559);stroke-width:0.7312751;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path style="fill:none;stroke:#a4b8d2;stroke-width:0.7312753;stroke-linecap:square" d="M -33.48693,184.5482 -33.49283,191.9907 -34.49283,191.9907" id="path5467" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#e2e8f0;stroke-width:0.7312753;stroke-linecap:square" d="M -34.49287,191.4591 -34.49287,184.0166 -33.49287,184.0166" id="path5469" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="distribute-vertical-bottom" inkscape:label="#distribute_bottom" transform="translate(-36.99845,-60.95418)">
-<use xlink:href="#g5853" height="1250" width="1250" id="use5865" y="0" x="0" transform="matrix(0,-1,0.998006,0,832.369,202.0097)" />
-<rect y="1007.11" x="-247.0512" height="15.9681" width="16" id="rect4248" style="color:#000000;fill:none" transform="rotate(-90)" />
-<use xlink:href="#use4976" height="1250" width="1250" id="use5909" y="0" x="0" transform="matrix(1,0,0,0.998006,1051.989,43.32326)" />
-<use xlink:href="#g5427" height="1250" width="1250" transform="matrix(0,1,0.998006,0,832.3504,269.9301)" id="use5913" y="0" x="0" />
-<use xlink:href="#use5322" height="1250" width="1250" transform="matrix(0,1,0.998006,0,832.4259,285.9361)" id="use5917" y="0" x="0" />
-</g>
-<g transform="matrix(1,0,0,0.998006,1032.544,-16.5724)" id="distribute-vertical-center" inkscape:label="#distribute_vcentre">
-<use xlink:href="#g5355" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-203.1702,241.0142)" id="use5921" y="0" x="0" />
-<use xlink:href="#use5339" height="1250" width="1250" transform="matrix(0,1.001998,-0.998006,0,176.0711,222.9501)" id="use5925" y="0" x="0" />
-<use xlink:href="#use5367" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-203.1639,204.97)" id="use5929" y="0" x="0" />
-<rect y="-28.51869" x="-203.0105" height="15.9681" width="16.03197" id="rect4296" style="color:#000000;fill:none" transform="rotate(-90)" />
-<use xlink:href="#use5865" height="1250" width="1250" id="use5880" y="0" x="0" transform="matrix(1,0,0,1.001998,-1035.535,-47.49321)" />
-</g>
-<g transform="matrix(1,0,0,0.998006,1100.968,-5.588642)" id="distribute-vertical-top" inkscape:label="#distribute_top">
-<use xlink:href="#use5865" height="1250" width="1250" id="use5883" y="0" x="0" transform="matrix(1,0,0,1.001998,-1069.956,-60.49864)" />
-<rect y="-62.95354" x="-191.9844" height="15.9681" width="16.03197" id="rect4341" style="color:#000000;fill:none" transform="rotate(-90)" />
-<use xlink:href="#use5909" height="1250" width="1250" id="use5933" y="0" x="0" transform="matrix(1,0,0,1.001998,-1069.978,-55.48746)" />
-<use xlink:href="#use5913" height="1250" width="1250" id="use5935" y="0" x="0" transform="matrix(1,0,0,1.001998,-1069.96,-57.49265)" />
-<use xlink:href="#use5917" height="1250" width="1250" id="use5937" y="0" x="0" transform="matrix(1,0,0,1.001998,-1069.978,-55.48865)" />
-</g>
-<g transform="matrix(1,0,0,0.998006,1120.02,-5.569538)" id="distribute-vertical-gaps" inkscape:label="#distribute_vdist">
-<use xlink:href="#g5885" height="1250" width="1250" id="use5893" y="0" x="0" transform="matrix(0,-1.001998,0.998006,0,-222.5775,146.9011)" />
-<rect y="-47.92442" x="-191.9414" height="15.9681" width="16.03197" id="rect4388" style="color:#000000;fill:none" transform="rotate(-90)" />
-<use xlink:href="#use5913" height="1250" width="1250" id="use5943" y="0" x="0" transform="matrix(1,0,0,1.001998,-1055.001,-56.51422)" />
-<use xlink:href="#g5462" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-222.6272,192.921)" id="use5947" y="0" x="0" />
-<use xlink:href="#use5437" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-222.6377,232.9772)" id="use5951" y="0" x="0" />
-</g>
-<g id="align-vertical-top" transform="translate(-27.06037,-103.0289)" inkscape:label="#al_top_in">
-<rect transform="rotate(90)" style="color:#000000;fill:none" id="rect4546" width="16" height="15.9681" x="197.031" y="-1054.045" />
-<use xlink:href="#path6192" height="1250" width="1250" id="use5626" y="0" x="0" transform="matrix(0,1,-0.998006,0,1228.721,242.0301)" />
-<use xlink:href="#g4936" height="1250" width="1250" transform="matrix(0,1,0.998006,0,869.4195,242.0059)" id="use5675" y="0" x="0" />
-<use xlink:href="#use5559" height="1250" width="1250" id="use5712" y="0" x="0" transform="matrix(1,0,0,0.998006,1065.119,19.39495)" />
-<use xlink:href="#use5503" height="1250" width="1250" id="use5716" y="0" x="0" transform="matrix(1,0,0,0.998006,1065.113,14.3949)" />
-<use xlink:href="#use5618" height="1250" width="1250" id="use5719" y="0" x="0" transform="matrix(1,0,0,0.998006,1060.118,7.394906)" />
-</g>
-<g transform="matrix(-1,0,0,1,1096.173,82.03753)" id="distribute-vertical-baseline" inkscape:label="#distribute_baselines_vert">
-<use xlink:href="#g5896" height="1250" width="1250" id="use5901" y="0" x="0" transform="rotate(90,-21.8276,91.9627)" />
-<rect transform="matrix(0,1,1,0,0,0)" y="-33.803" x="79.96361" height="24" width="24" id="rect4421" style="fill:none" />
-<use xlink:href="#text5563" height="1250" width="1250" id="use5966" y="0" x="0" transform="matrix(1,0,0,0.997921,-10.75241,14.3406)" />
-<use xlink:href="#text3357" height="1250" width="1250" id="use5968" y="0" x="0" transform="matrix(1,0,0,0.997921,-9.52204,-9.516171)" />
-</g>
-<g transform="matrix(-1,0,0,1,1096.174,54.03828)" id="distribute-horizontal-baseline" inkscape:label="#distribute_baselines_hor">
-<rect transform="matrix(0,1,1,0,0,0)" y="-33.803" x="79.96361" height="24" width="24" id="rect4447" style="fill:none" />
-<g id="g5896">
-<use xlink:href="#path5120" transform="matrix(-1,0,0,0.998006,-37.78636,-94.71436)" x="0" y="0" id="use5305" width="1250" height="1250" />
-<use xlink:href="#path5120" transform="matrix(-1,0,0,0.998006,-51.78636,-94.71352)" x="0" y="0" id="use5308" width="1250" height="1250" />
-<path sodipodi:nodetypes="ccccccccccc" id="path4463" d="M -10.803,82.46362 -13.80299,79.96361 -13.80299,81.96362 -20.803,81.96362 -20.803,79.96361 -23.803,82.46362 -20.803,84.96361 -20.803,82.96362 -13.80299,82.96362 -13.80299,84.96361 -10.803,82.46362 Z" style="fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<use xlink:href="#text5563" height="1250" width="1250" id="use5955" y="0" x="0" transform="matrix(1,0,0,0.997921,1.24759,8.430751)" />
-<use xlink:href="#text3357" height="1250" width="1250" transform="matrix(1,0,0,0.997921,-11.02206,-2.05535)" id="use5961" y="0" x="0" />
-</g>
-<g id="align-horizontal-node" inkscape:label="#node_valign" transform="translate(-205,77.99283)">
-<path style="fill:none;stroke:#c80000;stroke-width:1.0000004;stroke-linecap:square" d="M 1186.5,140.5008 1186.5,163.5 1186.5,163.5" id="path5262" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#969696;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 1175.5,140.5 C 1178.5,144 1194.475,142.0988 1193,148 1192,152 1176,149 1175.5,156.5 1175.134,161.9878 1192.5,159 1198.5,163" id="path5249" sodipodi:nodetypes="cssc" inkscape:connector-curvature="0" />
-<rect y="141.5" x="1184.5" height="4.007167" width="4.066208" id="rect5251" style="color:#000000;fill:#8ab3de;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<use xlink:href="#rect5251" height="1250" width="1250" transform="translate(0.0188999,6.991948)" id="use5438" y="0" x="0" />
-<use xlink:href="#rect5251" height="1250" width="1250" transform="translate(-0.0473082,16.99195)" id="use5440" y="0" x="0" />
-</g>
-<g id="align-vertical-node" transform="translate(-171.0218,77.98375)" inkscape:label="#node_halign">
-<path style="fill:none;stroke:#c80000;stroke-width:1.0000004;stroke-linecap:square" d="M 1175.498,152.4972 1198.497,152.4972 1198.497,152.4972" id="path5318" inkscape:connector-curvature="0" />
-<rect y="1180.497" x="-163.9971" height="16" width="16" id="rect5320" style="color:#000000;fill:none" transform="rotate(-90)" />
-<path style="fill:none;stroke:#969696;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 1175.497,163.4972 C 1178.997,160.4972 1177.096,144.5219 1182.997,145.9972 1186.997,146.9972 1183.997,162.9972 1191.497,163.4972 1196.985,163.863 1193.997,146.4972 1197.997,140.4972" id="path5322" sodipodi:nodetypes="cssc" inkscape:connector-curvature="0" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5452" y="0" x="0" transform="translate(-7.9782,9.009087)" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5455" y="0" x="0" transform="translate(-0.9782,9.001915)" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5457" y="0" x="0" transform="translate(8.955592,9.001915)" />
-</g>
-<g id="distribute-vertical-node" transform="translate(-137.0231,78.02626)" inkscape:label="#node_vdistribute">
-<use xlink:href="#path5465" height="1250" width="1250" transform="translate(0,18)" id="use5469" y="0" x="0" />
-<use xlink:href="#path5465" height="1250" width="1250" transform="translate(0,9)" id="use5467" y="0" x="0" />
-<path style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square" d="M 643.5,697.5 630.5,697.5" id="path5465" transform="translate(555.0237,-555.0009)" inkscape:connector-curvature="0" />
-<rect y="145.5" x="1175" height="16" width="16" id="rect5334" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:#969696;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 1178.5,140.5 C 1184,144 1192.213,143.1493 1191,148 1190,152 1179.231,152.0765 1178,157 1177,161 1183,158 1187.5,163.5" id="path5336" sodipodi:nodetypes="cssc" inkscape:connector-curvature="0" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 1195.967,145.0749 1197.499,143.0749 1198.967,145.0749 1197.999,145.0749 1197.999,149.0749 1198.999,149.0749 1197.499,151.0749 1195.999,149.0749 1196.999,149.0749 1196.999,145.0749 1195.967,145.0749 Z" id="path5344" sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5442" y="0" x="0" transform="translate(-2.9763,-1.008052)" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5445" y="0" x="0" transform="translate(0.0236999,7.991948)" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5447" y="0" x="0" transform="translate(-2.9763,16.99195)" />
-<use xlink:href="#path5344" height="1250" width="1250" transform="translate(0.0246,8.92419)" id="use5471" y="0" x="0" />
-</g>
-<g id="distribute-horizontal-node" transform="translate(-103.0103,77.97419)" inkscape:label="#node_hdistribute">
-<use xlink:href="#path5476" height="1250" width="1250" transform="translate(9)" id="use5478" y="0" x="0" />
-<use xlink:href="#path5476" height="1250" width="1250" transform="translate(18)" id="use5482" y="0" x="0" />
-<path style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square" d="M 1177.523,140.4996 1177.523,153.4996" id="path5476" inkscape:connector-curvature="0" />
-<rect y="1180.5" x="-163.9996" height="16" width="16" id="rect5356" style="color:#000000;fill:none" transform="rotate(-90)" />
-<path style="fill:none;stroke:#969696;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 1175.499,160.4995 C 1178.999,154.9995 1178.149,146.7868 1182.999,147.9995 1186.999,148.9995 1187.076,159.7687 1191.999,160.9995 1195.999,161.9995 1192.999,155.9995 1198.499,151.4995" id="path5358" sodipodi:nodetypes="cssc" inkscape:connector-curvature="0" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 1180.074,143.0324 1178.074,141.5005 1180.074,140.0324 1180.074,141.0005 1184.074,141.0005 1184.074,140.0005 1186.074,141.5005 1184.074,143.0005 1184.074,142.0005 1180.074,142.0005 1180.074,143.0324 Z" id="path5366" sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5459" y="0" x="0" transform="translate(-8.910592,12.00679)" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5461" y="0" x="0" transform="translate(0.0894077,8.999615)" />
-<use xlink:href="#rect5251" height="1250" width="1250" id="use5463" y="0" x="0" transform="translate(9.0232,11.99962)" />
-<use xlink:href="#path5366" height="1250" width="1250" transform="translate(8.9487,-0.03275)" id="use5484" y="0" x="0" />
-</g>
-<g id="distribute-randomize" inkscape:label="#distribute_randomize" transform="translate(-155.0371,-5.042435)">
-<rect y="195.0446" x="1125.038" height="15.9681" width="16" id="rect5814" style="color:#000000;fill:none" />
-<use xlink:href="#g5060" height="1250" width="1250" id="use3660" y="0" x="0" transform="matrix(1,0,0,0.998006,1153.039,22.37222)" />
-<use xlink:href="#g5060" height="1250" width="1250" id="use3663" y="0" x="0" transform="matrix(1,0,0,0.998006,1165.03,20.37352)" />
-<use xlink:href="#g5060" height="1250" width="1250" id="use3665" y="0" x="0" transform="matrix(1,0,0,0.998006,1170.039,27.37352)" />
-<use xlink:href="#g5060" height="1250" width="1250" id="use3668" y="0" x="0" transform="matrix(1,0,0,0.998006,1162.03,30.37222)" />
-<use xlink:href="#g5060" height="1250" width="1250" id="use3670" y="0" x="0" transform="matrix(1,0,0,0.998006,1163.03,37.37222)" />
-<use xlink:href="#g5060" height="1250" width="1250" id="use3672" y="0" x="0" transform="matrix(1,0,0,0.998006,1153.03,38.37222)" />
-</g>
-<g id="distribute-unclump" inkscape:label="#unclump" transform="translate(-121.0369,-5.06691)">
-<rect y="195.0446" x="1125.038" height="15.9681" width="16" id="rect5912" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:#c80000;stroke-width:1.0000008;stroke-linecap:round" d="M 1141.013,201.0194 1136.013,202.5194" id="path5975" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#c80000;stroke-width:1.0000008;stroke-linecap:round" d="M 1141.013,213.0194 1136.013,210.0194" id="path5977" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#c80000;stroke-linecap:round" d="M 1145.513,212.0194 1145.513,206.0194" id="path5979" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<use xlink:href="#g5060" height="1250" width="1250" id="use3674" y="0" x="0" transform="matrix(1,0,0,0.998006,1170.03,38.37352)" />
-<g id="g3698" transform="translate(6.999947,0.0231631)">
-<rect y="197.5437" x="1135.537" height="6.97679" width="6.008899" id="rect3680" style="color:#000000;fill:none;stroke:url(#linearGradient3702);stroke-width:1.0000005;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="198.5437" x="1136.537" height="4.973844" width="4.016531" id="rect3682" style="color:#000000;fill:url(#linearGradient3704);fill-rule:evenodd;stroke:url(#linearGradient3706);stroke-width:1.000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="g3728" transform="translate(-0.0110398,-7.976791)">
-<rect y="210.5437" x="1125.548" height="6.97679" width="8.988388" id="rect3710" style="color:#000000;fill:none;stroke:url(#linearGradient3732);stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="211.5437" x="1126.557" height="4.973844" width="6.960839" id="rect3712" style="color:#000000;fill:url(#linearGradient3734);fill-rule:evenodd;stroke:url(#linearGradient3736);stroke-width:1.0000008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-</g>
-<g id="xml-node-delete" inkscape:label="#delete_xml_node" transform="translate(132.0112,21.0313)">
-<use xlink:href="#g5715" height="1250" width="1250" id="use5729" y="0" x="0" transform="translate(0.0067,-0.0161)" />
-<use xlink:href="#g5707" height="1250" width="1250" id="use5744" y="0" x="0" transform="translate(0.0067,-0.0161)" />
-<use xlink:href="#g5719" height="1250" width="1250" id="use5763" y="0" x="0" transform="translate(0.0067,-0.0161)" />
-<use xlink:href="#g5771" height="1250" width="1250" id="use7401" y="0" x="0" transform="translate(-56.9523,-150.977)" />
-</g>
-<g id="xml-element-new" transform="translate(72.01788,21.0152)" inkscape:label="#add_xml_element_node">
-<g id="g5715">
-<path sodipodi:nodetypes="cccccccc" id="path5401" d="M 923,6 924,6 924,27 922,29 901,29 901,28 923,28 923,6 Z" style="fill:#000000;fill-opacity:0.1786744;fill-rule:evenodd" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:url(#linearGradient5826);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999998;stroke-linecap:round;stroke-linejoin:round" id="rect5403" width="22.03876" height="22.03599" x="900.4821" y="5.484803" />
-</g>
-<g id="g5707">
-<path style="fill:none;stroke:#000000;stroke-width:1px" d="M 909.5,11 909.5,16" id="path5405" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px" d="M 912.5,11.97746 C 913.5,11.47746 915.5,10.97746 915.5,12.97746 915.5,13.97746 915.5,14.97746 915.5,15.97746" id="path5407" sodipodi:nodetypes="csc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px" d="M 917.5,7.470786 C 917.5,10.97079 917.5,13.47079 917.5,14.47079 917.5,15.62323 918.5,15.47079 919.5,15.47079" id="path5410" sodipodi:nodetypes="csc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px" d="M 909.5,11.97746 C 910.5,11.47746 912.5,10.97746 912.5,12.97746 912.5,13.97746 912.5,14.97746 912.5,15.97746" id="path5412" sodipodi:nodetypes="csc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px" d="M 903,10.97079 908,15.97079" id="path5414" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px" d="M 908,10.97079 903,15.97079" id="path5416" inkscape:connector-curvature="0" />
-</g>
-<g id="g5719">
-<path id="path5418" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 906.5,24.5 903.5,21.5 906.5,18.5 M 909.5,24.5 912.5,21.5 909.5,18.5" inkscape:connector-curvature="0" />
-</g>
-<g id="g5684">
-<path sodipodi:nodetypes="ccccc" style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient5828);stroke-width:0.9999998px" d="M 914.5068,19.4991 923.4477,19.4991 923.4477,28.44092 914.5068,28.44092 914.5068,19.4991 Z" id="path5430" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5424" d="M 919.0067,20.9991 919.0067,26.9991" style="fill:none;stroke:#000000;stroke-width:2" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5426" d="M 922.0067,23.9991 916.0067,23.9991" style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="xml-text-new" transform="translate(101.9932,21.0009)" inkscape:label="#add_xml_text_node">
-<use xlink:href="#g5715" height="1250" width="1250" id="use5723" y="0" x="0" transform="translate(0.0246443,0.0142967)" />
-<path id="path5438" d="M 906.4821,10.47669 C 906.4741,12.49287 906.4821,13.4848 906.4821,13.9848 906.4821,14.49972 906.9821,14.48886 907.4821,14.49292" style="fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:square" sodipodi:nodetypes="csc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="csssssc" id="path5442" d="M 909.4821,7.484803 C 909.4821,10.9848 909.4821,12.4848 909.4821,13.4848 909.4821,13.9848 909.4821,14.4848 909.9821,14.4848 910.8248,14.4848 911.9821,14.4848 912.4821,14.4848 912.9821,14.4848 913.4821,14.4848 913.4821,12.4848 913.4821,10.4848 912.9821,10.4848 912.4821,10.4848 911.9821,10.4848 911.4821,10.4848 909.4821,10.4848" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cssssc" id="path5464" d="M 919.5148,11.45983 C 919.4821,10.4848 918.9821,10.4848 918.4821,10.4848 918.03,10.4848 916.9821,10.4848 916.4821,10.4848 915.9821,10.4848 915.4821,10.4848 915.4821,12.4848 915.4821,14.4848 915.9821,14.4848 916.4821,14.4848 916.9821,14.4848 918.4821,14.4848 919.4821,14.4779" style="fill:none;stroke:#000000;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="csssc" id="path5466" d="M 906.4821,10.4848 C 905.9821,10.4848 903.4821,10.4848 903.4821,10.4848 902.9821,10.4848 902.4821,10.4848 902.4821,12.4848 902.4821,14.4848 902.9705,14.50294 903.4821,14.4848 903.9705,14.46749 905.4821,14.4848 906.4821,14.4946" style="fill:none;stroke:#000000;stroke-width:0.9999998;stroke-linecap:square" inkscape:connector-curvature="0" />
-<use xlink:href="#g5684" height="1250" width="1250" id="use5694" y="0" x="0" transform="translate(-1.000894e-4)" />
-<use xlink:href="#g5719" height="1250" width="1250" id="use5760" y="0" x="0" transform="translate(0.0067,-9e-4)" />
-</g>
-<g id="xml-node-duplicate" transform="translate(161.5,21.00827)" inkscape:label="#duplicate_xml_node">
-<path style="fill:#000000;fill-opacity:0.1786744;fill-rule:evenodd" d="M 916.5,5.984803 917.5,5.984803 917.5,19.9848 915.5,21.9848 901.5,21.9848 901.5,20.9848 916.5,20.9848 916.5,5.984803 Z" id="path5508" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<rect y="5.491727" x="901" height="14.99308" width="15.03714" id="rect5504" style="color:#000000;opacity:0.5999999;fill:url(#linearGradient5506);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round" />
-<path style="fill:#000000;fill-opacity:0.1786744;fill-rule:evenodd" d="M 922.5,11.9848 923.5,11.9848 923.5,26.9848 921.5,28.9848 906.5,28.9848 906.5,27.9848 922.5,27.9848 922.5,11.9848 Z" id="path5470" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<rect y="11.51622" x="906.0305" height="15.93487" width="15.95595" id="rect5472" style="color:#000000;fill:url(#linearGradient5494);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round" />
-<use xlink:href="#g5719" height="1250" width="1250" id="use5765" y="0" x="0" transform="translate(4.5246,-5.0161)" />
-<use xlink:href="#g5684" height="1250" width="1250" id="use5768" y="0" x="0" transform="translate(-0.4822,-0.0151991)" />
-</g>
-<g id="xml-attribute-delete" inkscape:label="#delete_xml_attribute" transform="translate(192.0112,21.0313)">
-<use xlink:href="#g5715" height="1250" width="1250" id="use5739" y="0" x="0" transform="translate(0.0067,-0.0161)" />
-<rect style="color:#000000;opacity:0.3167155;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999999;stroke-linecap:square" id="rect5560" width="6.985046" height="2.109722" x="910.5713" y="20.50245" />
-<path style="opacity:0.3167155;fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:square" d="M 904.5,21.50244 909.6429,21.50244" id="path5554" inkscape:connector-curvature="0" />
-<path style="opacity:0.3167155;fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:square" d="M 904.5,18.43078 904.5,20.57811" id="path5562" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<use xlink:href="#g5771" height="1250" width="1250" id="use5783" y="0" x="0" transform="translate(-56.9523,-150.977)" />
-<path id="rect5540" style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999982;stroke-linecap:square" d="M 903.4995,7.482439 905.4839,7.482439 905.4839,9.494854 903.4995,9.494854 903.4995,7.482439 Z M 904.5713,9.984805 904.5713,17.39985 M 904.5713,13.50244 910.5713,13.50244 M 910.5862,12.4848 917.5713,12.4848 917.5713,14.52008 910.5862,14.52008 910.5862,12.4848 Z M 904.5067,17.4839 910.5067,17.4839 M 910.5067,16.44862 917.4918,16.44862 917.4918,18.4839 910.5067,18.4839 910.5067,16.44862 Z" inkscape:connector-curvature="0" />
-</g>
-<g id="edit-paste-in-place" inkscape:label="#selection_paste_in_place" transform="translate(-429.9517,-29.93562)">
-<g transform="translate(-0.0483,-0.054332)" id="g6202">
-<rect rx="0.8838835" ry="0.8838835" style="color:#000000;fill:url(#linearGradient5687);fill-rule:evenodd;stroke:#000000;stroke-linecap:square;stroke-linejoin:round" id="rect6204" width="12" height="13.99545" x="485.5" y="76.50455" />
-<path id="path6207" d="M 486.4517,89.43563 486.4517,77.43563 496.4517,77.43563" style="fill:none;stroke:#e6bc00;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="csssc" id="path6209" d="M 495,79 C 495,80.10678 493.3839,79.5 492,79.5 490.6161,79.5 489,80.10678 489,79 489,77.89322 490.6131,75.48996 491.997,75.48996 493.3808,75.48996 495,77.89322 495,79 Z" style="color:#000000;fill:url(#linearGradient5689);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999994;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path id="path6211" d="M 494.0715,77.5 491.9286,77.5" style="fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:round" inkscape:connector-curvature="0" />
-</g>
-<rect y="81.42787" x="490.5" height="9.007737" width="10" id="rect5705" style="color:#000000;fill:url(#linearGradient5761);fill-rule:evenodd;stroke:url(#linearGradient5598);stroke-width:0.9999999;stroke-linecap:square;stroke-linejoin:round" ry="0.9722717" rx="0.9722718" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 495,108 494,108 494,107 493,107 493,106 495,106 494.9517,102.9457 495.9517,102.9457 496,106 498,106 498,107 497,107 497,108 496,108 496,109 495,109 495,108 Z" id="path5745" transform="translate(0,-20.01004)" sodipodi:nodetypes="ccccccccccccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="edit-paste-style" inkscape:label="#selection_paste_style" transform="translate(-429.9489,-9.94566)">
-<use xlink:href="#g6202" height="1250" width="1250" id="use6217" y="0" x="0" />
-<rect y="80.49155" x="490.454" height="9.944057" width="9.994883" id="rect6220" style="color:#000000;fill:none;stroke:url(#linearGradient6224);stroke-width:0.9999999;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="81.43563" x="491.4559" height="7.995686" width="7.995919" id="rect6222" style="color:#000000;fill:url(#linearGradient6226);fill-rule:evenodd;stroke:url(#linearGradient6228);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="help-keyborad-shortcuts" inkscape:label="#help_keys" transform="translate(-209.9825,-0.409827)">
-<path style="fill:none;stroke:url(#linearGradient4736);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round" d="M 540.4854,35.90983 543.4854,35.90983 543.4854,40.90983 540.4854,40.90983" id="path4652" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square" d="M 546.4854,38.90983 546.4854,36.90983 555.4854,36.90983" id="path4666" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:url(#linearGradient4738);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round" d="M 555.4854,35.90983 545.4854,35.90983 545.4854,40.90983 555.4854,40.90983" id="path4662" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square" d="M 540.4854,39.90983 542.4854,39.90983 542.4854,37.90983" id="path4654" inkscape:connector-curvature="0" />
-<use xlink:href="#g4625" height="1250" width="1250" transform="translate(6.997002,-0.005239)" id="use4630" y="0" x="0" />
-<rect style="color:#000000;fill:url(#linearGradient4740);fill-rule:evenodd;stroke-width:1.0000006" id="rect5937" width="9" height="2" x="546.9854" y="37.40983" />
-<rect style="color:#000000;fill:url(#linearGradient4742);fill-rule:evenodd;stroke-width:1.0000006" id="rect5943" width="2" height="2" x="539.9854" y="37.40983" />
-<g id="g4625" transform="translate(0.005938,0.510486)">
-<rect y="28.39409" x="540.4766" height="5.010485" width="5.005956" id="rect6038" style="color:#000000;fill:url(#linearGradient5682);fill-rule:evenodd;stroke:url(#linearGradient5685);stroke-width:1.000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path id="path4611" d="M 541.4795,32.39934 544.4795,32.39934 544.4795,30.39934" style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square" d="M 544.4795,29.39934 541.4795,29.39934 541.4795,31.39934" id="path4613" inkscape:connector-curvature="0" />
-</g>
-<path style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square" d="M 541.4854,37.90983 549.4854,37.90983 549.4854,31.90983" id="path4632" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round" d="M 540.4854,26.90983 542.4854,26.90983 542.4854,25.90983" id="path4634" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square" d="M 540.4854,25.90983 541.4854,25.90983" id="path4636" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square" d="M 545.4854,25.90983 548.4854,25.90983" id="path4640" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round" d="M 544.4854,25.90983 544.4854,26.90983 549.4854,26.90983 549.4854,25.90983" id="path4642" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round" d="M 551.4854,25.90983 551.4854,26.90983 555.4854,26.90983" id="path4644" inkscape:connector-curvature="0" />
-<use xlink:href="#path4640" height="1250" width="1250" transform="translate(7)" id="use4648" y="0" x="0" />
-<path style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square" d="M 540.4854,36.90983 542.4854,36.90983" id="path4650" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:url(#linearGradient4748);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round" d="M 555.4854,28.90983 554.4854,28.90983 554.4854,33.90983 555.4854,33.90983" id="path4656" inkscape:connector-curvature="0" />
-<path style="fill:#ffffff;fill-rule:evenodd;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square" d="M 555.4854,29.90983 555.4854,31.90983" id="path4658" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#aaaaaa;stroke-width:1px" d="M 555.4854,32.40983 555.4854,33.40983" id="path4660" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square" d="M 546.4854,39.90983 555.4854,39.90983" id="path4664" inkscape:connector-curvature="0" />
-</g>
-<g id="help-contents" inkscape:label="#help_tutorials" transform="translate(-234.959,20.03912)">
-<rect style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.982277" id="rect5530" width="16" height="16" x="385" y="30" transform="translate(180,-5)" />
-<path style="color:#000000;fill:url(#linearGradient6204);fill-rule:evenodd;stroke:url(#linearGradient6255);stroke-width:1.0000015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 565.5118,28.50002 579.4882,28.50002 579.4882,34.47468 579.4882,40.44935 567.5,40.5 C 566.5,40.5 565.5,39.5 565.5,38.5 L 565.5118,28.50002 Z" id="rect6181" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path6187" d="M 578.5,25.5 567.5,25.5 C 566.5,25.5 565,27 566,28.5 L 579.5,28.5 C 578,27.5 578,26.5 578.5,25.5 Z" style="fill:url(#linearGradient6220);fill-rule:evenodd;stroke:url(#linearGradient6263);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path style="fill:#e1ff7d;fill-rule:evenodd;stroke:#e2fda4;stroke-width:1px;stroke-linecap:round" d="M 567.5,30 567.5,39" id="path6200" inkscape:connector-curvature="0" />
-<path style="fill:#49850a;fill-rule:evenodd" d="M 578,29 579,29 579,40 567,40 567,39 578,39 578,29 Z" id="path6324" inkscape:connector-curvature="0" />
-<path style="fill:#e1ff7d;fill-rule:evenodd;stroke:#c0e383;stroke-width:1px;stroke-linecap:round" d="M 568.5,29.5 577.5,29.5" id="path6334" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient6330);fill-rule:evenodd" d="M 568,27 568,37 569,37 569,36 571,36 571,37 572,37 572,27 569,27 569,28 571,28 571,35 569,35 569,27 568,27 Z" id="path6265" sodipodi:nodetypes="ccccccccccccccc" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient6332);fill-rule:evenodd" d="M 569,28 569,35 571,35 571,28 569,28 Z" id="path6267" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="draw-calligraphic" transform="translate(440,196)" inkscape:label="#draw_calligraphic">
-<rect y="99" x="10" height="24" width="24" id="rect12294" style="color:#000000;fill:none" />
-<path style="fill:url(#linearGradient5856);stroke-width:1pt" d="M 450,295 450,295.5 C 458,297.6875 447.8335,311.1417 454.5,316.5 458.6531,319.8381 465.1496,319.3504 468,316.5 469,315.5 471,314.5 473.7187,315.5625 L 473.7187,315.3437 C 472,312.5 469,313 467.5,315 465.6026,317.5298 460,320.5 457,316 453,310 468.5,295 450,295 Z" transform="translate(-440,-196)" id="path12296" sodipodi:nodetypes="ccssccssc" inkscape:connector-curvature="0" />
-<g id="g15748">
-<path sodipodi:nodetypes="ccccccc" id="path12332" d="M 20.50599,109.5 20.50599,119.5 22.50599,119.5 C 24.50599,116.5 26.50599,114.5 29.50599,112.5 L 29.50599,106.5 23.50599,105.5 20.50599,109.5 Z" style="fill:url(#linearGradient14646);fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccc" id="path13072" d="M 22,117.8669 24.00599,112 C 24.00599,112 25.00599,112 25.00599,112 L 25.00599,110 23.00599,110 23.00599,112 21.67237,117.8646 22,117.8666 Z" style="fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path13820" d="M 25.29308,99.5 23.50599,105.5 30.5682,107.2811 C 31.27434,106.9578 31.58694,105.9597 31.50599,104.9617 L 33.5,101.6184" style="color:#000000;fill:url(#linearGradient14650);fill-rule:evenodd;stroke:url(#linearGradient14652);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path id="path14610" d="M 31.33134,104.9438 26.33134,103.9438" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path14612" d="M 30.48686,106.7926 C 30.97411,106.5594 31.12403,105.989 31.10529,105.4185 L 25.93298,104.3751 25.25833,105.428 30.48686,106.7926 Z" style="fill:url(#linearGradient14654);fill-rule:evenodd" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path14622" d="M 24.92101,104.2064 26.2141,99.98988" style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path14656" d="M 33.45251,103.4948 32.48803,105.0419 C 32.53106,106.3794 32.01188,107.9418 30.59318,108.0424 L 30.60148,112.9722 C 27.51211,114.5592 25.20984,117.1582 23.30111,119.9258" style="fill:none;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-opacity:0.2449568" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccc" id="path16152" d="M 21.03975,117 21,109.725 23.66352,106.1869 27.55942,107.141 26.8836,108.3336 24.33934,108.2143 22.43114,110.043 21.03975,117 Z" style="fill:#ffffff;fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="draw-connector" transform="translate(444.9917,149.9903)" inkscape:label="#draw_connector">
-<path id="path5856" style="color:#000000;fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 11.5083,213.51 9.5083,220.402 M 19.5083,208.51 24.5083,212.51 24.5083,220.51 M 13.5792,214.508 21.5778,214.508 21.5778,219.51 13.5792,219.51 13.5792,214.508 Z" sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" />
-<path style="fill:#ce0000;fill-rule:evenodd" d="M 24.0083,221.0097 25.0083,221.0097 24.0083,221.0097 Z" id="path5854" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<rect y="215.51" x="14.5775" height="3.00379" width="6.00072" id="rect5677" style="color:#000000;fill:url(#linearGradient5694);fill-rule:evenodd;stroke:url(#linearGradient5679);stroke-width:1.000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<g id="g5746">
-<rect style="color:#000000;fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:0" id="rect5710" width="7.99868" height="6.999122" x="10.5083" y="205.5097" />
-<rect style="color:#000000;fill:url(#linearGradient5677);fill-rule:evenodd;stroke:url(#linearGradient5680);stroke-width:1.0000008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5712" width="6.00072" height="4.995474" x="11.50669" y="206.512" />
-</g>
-<use xlink:href="#g5746" height="1250" width="1250" transform="translate(-4.99868,15.99998)" id="use5750" y="0" x="0" />
-<use xlink:href="#use5750" height="1250" width="1250" transform="translate(15,8.780086e-4)" id="use5757" y="0" x="0" />
-</g>
-<g id="draw-freehand" transform="matrix(1,0,0,0.995256,377,122.5361)" inkscape:label="#draw_freehand">
-<path style="fill:url(#linearGradient6168);fill-rule:evenodd" d="M 84.5,130.9858 87.5,131.9858 92.77118,126.1525 C 91.65028,123.3252 88.19087,121.5135 84.63332,123.0426 L 84.5,130.9858 Z" id="path6127" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 84.49792,134.0861 85.58083,134.3642 87.5,132.1144 C 87.22816,131.1709 85.5,130.1144 84.57127,131.0533 L 84.49792,134.0861 Z" id="path6021" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path6019" d="M 84.49115,123.548 C 86.61896,121.555 91.43934,122.5619 92.77095,126.3667 L 95.5,119.1144 C 93,119.1144 95,113.1144 88.5,113.1144 L 84.49115,123.548 Z" style="fill:url(#linearGradient6170);fill-rule:evenodd" inkscape:connector-curvature="0" />
-<rect y="113" x="73" height="24" width="24" id="rect6011" style="color:#000000;fill:none" />
-<path style="fill:none;stroke:url(#linearGradient6189);stroke-width:1.0023805;stroke-linecap:round;stroke-linejoin:round" d="M 74.5,114.5 C 83.2987,113.3638 77.63297,119.6169 76.5058,121.2979 71.15846,129.3315 77.30283,123.5 80.30283,124.5 82.2002,125.1325 81.30855,127.7048 80.80283,129.1144 80.2716,130.5951 80.0713,132.6514 80.80283,134.1144 81.80283,136.1144 84.3785,136.6144 85.80283,136.6144 87.30283,136.6144 89.37464,136.0838 90.80283,134.9006 92.3424,133.6251 93.58861,131.6007 93.80283,130.6723" id="path6013" sodipodi:nodetypes="csssssss" inkscape:connector-curvature="0" />
-<path id="path6023" style="fill:none;stroke:#000000;stroke-width:0.9846153;stroke-linecap:round;stroke-linejoin:round" d="M 95.5,119.6144 92.77094,126.3667 92.77094,126.3667 86.17915,133.3831 C 84.5,135.1144 84.5,134.6144 84.50212,132.7216 L 84.49114,123.548 88.5,113.6144" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:url(#linearGradient6123);stroke-width:1.0023805px;stroke-linecap:round" d="M 92.77094,126.3667 C 92.22956,125.3573 91.68819,124.3479 91.14682,123.3385 90.09222,122.9526 89.03763,122.5667 87.98303,122.1808 86.78395,122.4736 85.58487,122.7664 84.38578,123.0593" id="path6115" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1.0023805px;stroke-linecap:round" d="M 88.07236,120.9146 90.57236,114.9146" id="path6125" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<g id="draw-path" transform="matrix(1,0,0,0.994286,410,166.5657)" inkscape:label="#draw_pen">
-<path style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.2034432;stroke-linecap:round;stroke-linejoin:round" d="M 54.74801,112.7209 52.72605,118.073 C 52.30681,119.3047 54.02578,119.963 54.46183,118.6859 L 56.53419,113.4313" id="path6331" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccc" id="path6315" d="M 53.30533,107.4469 54.09881,108.6349 60.02303,111.0717 61.58413,110.5596 63.5733,105.0256 C 61.0733,105.0256 63.0733,98.99107 56.5733,98.99107 L 53.30533,107.4469 Z" style="fill:url(#linearGradient6325);fill-rule:evenodd" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient5228);fill-rule:evenodd;stroke:url(#linearGradient5230);stroke-width:1.0028694px;stroke-linecap:round;stroke-linejoin:round" d="M 54.2095,108.7548 53.29841,112.0747 58.29841,113.9848 60.21348,110.893" id="path5211" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path id="path6317" style="fill:none;stroke:#000000;stroke-width:0.9850955;stroke-linecap:round;stroke-linejoin:round" d="M 63.5733,105.5284 61.83413,109.8559 C 61.60296,110.611 60.64737,111.2194 60.15484,110.8958 58.34057,109.7039 56.37195,108.8879 54.16917,108.6305 53.74716,108.5812 53.25979,107.4454 53.4502,106.9395 L 56.5733,99.49395" sodipodi:nodetypes="ccsscc" inkscape:connector-curvature="0" />
-<rect y="99" x="40" height="24" width="24" id="rect6268" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="ccc" id="path6270" d="M 44.54642,120.6114 C 57,118.612 42.20822,100.5101 42.20822,100.5101 L 54,100.5101" style="fill:none;stroke:url(#linearGradient5436);stroke-width:1.0057468" inkscape:connector-curvature="0" />
-<path id="rect6272" style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0028691;stroke-linecap:round;stroke-linejoin:round" d="M 40.5625,118.5995 44.5,118.5995 44.5,122.635 40.5625,122.635 40.5625,118.5995 Z M 45.03846,121.6293 50.5,121.6293 M 50.5,120.599 52.51365,120.599 52.51365,122.635 50.5,122.635 50.5,120.599 Z" inkscape:connector-curvature="0" />
-<path style="fill:none" d="M 53,112.5776 57.5,114.5891 59,111.5718 54.5,110.0632 53,112.5776 Z" id="path6311" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1.0028694px;stroke-linecap:round" d="M 56,106.5431 58.5,100.5086" id="path6321" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<g transform="matrix(1,0,0,0.998006,413.9648,170.3817)" id="object-columns" inkscape:label="#clonetiler_per_column">
-<rect style="color:#000000;fill:none;stroke-width:0.531496" id="rect9056" width="15.99999" height="16.03196" x="319.0374" y="103.8253" />
-<g id="g9227">
-<g id="g9237">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5764);stroke-width:1.001;stroke-linejoin:round;stroke-miterlimit:0" id="rect9070" width="13.03433" height="3.003929" x="105.3283" y="320.5352" transform="matrix(0,1,1,0,0,0)" />
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5767);stroke-width:1.0010008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect9072" width="11.05956" height="1.00681" x="106.2927" y="321.5375" transform="matrix(0,1,1,0,0,0)" />
-</g>
-<use xlink:href="#g9237" height="1250" width="1250" transform="translate(4.998223,3.261012e-5)" id="use9241" y="0" x="0" />
-<use xlink:href="#use9241" height="1250" width="1250" transform="translate(5.00393,-0.0083534)" id="use9243" y="0" x="0" />
-</g>
-</g>
-<g id="clonetiler_per_row_shift" inkscape:label="#clonetiler_per_row_shift" transform="translate(-249.1176,-232.0945)">
-<rect y="528" x="982" height="24" width="24" id="rect5795" style="color:#000000;fill:none;stroke-width:0.531496" />
-<g transform="translate(-0.999999,-1.000121)" id="g7285">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5816);stroke-width:1.0000023;stroke-linejoin:round;stroke-miterlimit:0" id="rect7247" width="14.08517" height="5.001156" x="983.5" y="530.5001" />
-<rect style="color:#000000;fill:url(#linearGradient5818);fill-rule:evenodd;stroke:url(#linearGradient5820);stroke-width:1.0000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect7249" width="12.00008" height="3.000032" x="984.501" y="531.5" />
-</g>
-<use xlink:href="#g7285" x="0" y="0" id="use7289" transform="translate(4,8)" width="1250" height="1250" />
-<use xlink:href="#use7289" x="0" y="0" id="use7291" transform="matrix(0.994354,0,0,1,9.567272,8)" width="1250" height="1250" />
-</g>
-<g id="clonetiler_per_row_scale" inkscape:label="#clonetiler_per_row_scale" transform="translate(-249.1176,-232.0945)">
-<use xlink:href="#rect5795" x="0" y="0" id="use7504" transform="translate(28)" width="1250" height="1250" />
-<g id="g7512">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5798);stroke-width:1.000002;stroke-linejoin:round;stroke-miterlimit:0" id="rect7303" width="22.99783" height="5.980974" x="1010.5" y="528.5066" />
-<rect style="color:#000000;fill:url(#linearGradient5800);fill-rule:evenodd;stroke:url(#linearGradient5802);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect7305" width="20.96796" height="3.982274" x="1011.52" y="529.5177" />
-</g>
-<rect y="537.5071" x="1012.495" height="5.004396" width="19.00926" id="rect7351" style="color:#000000;fill:none;stroke:url(#linearGradient5804);stroke-width:1.0000018;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="538.4794" x="1013.507" height="3.041469" width="16.99882" id="rect7353" style="color:#000000;fill:url(#linearGradient5806);fill-rule:evenodd;stroke:url(#linearGradient5808);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="545.563" x="1014.497" height="3.961664" width="15.00856" id="rect7361" style="color:#000000;fill:none;stroke:url(#linearGradient5810);stroke-width:1.0000019;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="546.4993" x="1015.518" height="2.035122" width="12.98416" id="rect7363" style="color:#000000;fill:url(#linearGradient5812);fill-rule:evenodd;stroke:url(#linearGradient5814);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="clonetiler_per_row_rotation" inkscape:label="#clonetiler_per_row_rotation" transform="translate(-249.1176,-232.0945)">
-<use xlink:href="#use7504" x="0" y="0" id="use7506" transform="translate(28)" width="1250" height="1250" />
-<use xlink:href="#g7285" x="0" y="0" id="use7397" transform="translate(60,-1.001159)" width="1250" height="1250" inkscape:tile-w="15.085176" inkscape:tile-h="6.0011586" inkscape:tile-cx="1049.4574" inkscape:tile-cy="530.99942" />
-<use xlink:href="#use7397" x="0" y="0" inkscape:tiled-clone-of="#use7397" transform="rotate(30.00001,1038.302,533.84)" id="use7497" width="1250" height="1250" />
-<use xlink:href="#use7397" x="0" y="0" inkscape:tiled-clone-of="#use7397" transform="rotate(59.99999,1039.106,536.9268)" id="use7499" width="1250" height="1250" />
-</g>
-<g id="clonetiler_per_row_opacity" inkscape:label="#clonetiler_per_row_opacity" transform="translate(-249.1176,-232.0945)">
-<use xlink:href="#use7506" x="0" y="0" id="use7508" transform="translate(28)" width="1250" height="1250" />
-<use xlink:href="#g7512" x="0" y="0" id="use7518" transform="translate(56.00235,0.0124335)" width="1250" height="1250" />
-<use xlink:href="#use7518" x="0" y="0" id="use7520" transform="translate(-0.0021659,7.980976)" width="1250" height="1250" style="opacity:0.6" />
-<use xlink:href="#use7518" x="0" y="0" id="use7524" transform="translate(-0.0021659,15.98098)" width="1250" height="1250" style="opacity:0.4" />
-</g>
-<g id="clonetiler_per_row_color" inkscape:label="#clonetiler_per_row_color" transform="translate(-249.1176,-232.0945)">
-<rect y="528" x="1094.002" height="24" width="24" id="rect7660" style="color:#000000;fill:#000000;fill-opacity:0.0214592;fill-rule:evenodd;stroke-width:0.531496" />
-<g transform="translate(84.00452,0.0124335)" id="g7663">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5769);stroke-width:1.000002;stroke-linejoin:round;stroke-miterlimit:0" id="rect7665" width="22.99783" height="5.980974" x="1010.5" y="528.5066" />
-<rect style="color:#000000;fill:url(#linearGradient5771);fill-rule:evenodd;stroke:url(#linearGradient5773);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect7667" width="20.96796" height="3.982274" x="1011.52" y="529.5177" />
-</g>
-<g transform="translate(84.00235,7.993409)" id="g7675">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5781);stroke-width:1.000002;stroke-linejoin:round;stroke-miterlimit:0" id="rect7677" width="22.99783" height="5.980974" x="1010.5" y="528.5066" />
-<rect style="color:#000000;fill:url(#linearGradient5783);fill-rule:evenodd;stroke:url(#linearGradient5785);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect7679" width="20.96796" height="3.982274" x="1011.52" y="529.5177" />
-</g>
-<g transform="translate(84.00235,15.99341)" id="g7687">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5792);stroke-width:1.000002;stroke-linejoin:round;stroke-miterlimit:0" id="rect7689" width="22.99783" height="5.980974" x="1010.5" y="528.5066" />
-<rect style="color:#000000;fill:url(#linearGradient5794);fill-rule:evenodd;stroke:url(#linearGradient5796);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect7691" width="20.96796" height="3.982274" x="1011.52" y="529.5177" />
-</g>
-</g>
-<g id="text-remove-from-path" inkscape:label="#remove_from_path">
-<rect y="44" x="280" height="16" width="16" id="rect8477" style="color:#000000;fill:none;stroke-width:0.531496;stroke-linejoin:round" />
-<g id="g12114">
-<g id="g13610">
-<path id="path9935" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" d="M 283.5,49.5 285.2679,47.69344 C 285.7679,47.19344 286.7679,47.19344 287.2679,47.69344 L 288.2679,48.69344 C 288.7679,49.19344 288.7679,50.19344 288.2679,50.69344 L 286.5,52.5 280.5,46.5 M 293.7061,45 C 293.4888,44.63989 292.8847,44.39585 292.4353,44.5 L 290.4382,44.92262 C 289.9234,45.09695 289.6406,45.77423 289.7835,46.21937 L 290.0427,48.13168 C 290.1303,48.60198 290.8589,49.05562 291.4264,48.96131 L 293.0135,48.67809 C 293.6776,48.52897 294.0322,47.99297 294,47.53434 M 285.5,53.5 C 285.3601,53.98808 284.9107,54.39879 284.5,54.5 L 282.5,53.69344 C 281.8066,53.52383 281.1905,53.85716 281,54.5 L 280.5387,56.34525 C 280.3958,57.03869 280.6012,57.8095 281.1934,58 L 283.1905,58.38394 C 283.7946,58.55355 284.4636,57.87095 284.5,57.30656 284.5677,56.25505 284.7321,55.39683 284.5,54.5" inkscape:connector-curvature="0" />
-</g>
-<path sodipodi:nodetypes="cc" id="path9203" d="M 288.5,53.5 C 290,51.5 292.5,50.5 295.5,50.5" style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-</g>
-<path style="fill:#c80000;fill-rule:evenodd" d="M 287,55 288,55 289.5,56.5 291,55 292,55 292,56 290.5,57.5 292,59 292,60 291,60 289.5,58.5 288,60 287,60 287,59 288.5,57.5 287,56 287,55 Z" id="path13657" sodipodi:nodetypes="ccccccccccccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="text-put-on-path" inkscape:label="#put_on_path">
-<use xlink:href="#rect8477" x="0" y="0" id="use13618" transform="translate(0,21)" width="1250" height="1250" />
-<use xlink:href="#g13610" x="0" y="0" id="use13621" transform="translate(0,21)" width="1250" height="1250" />
-<path sodipodi:nodetypes="cc" id="path13655" d="M 286.5,80.5 C 286.5,75.5 290.5,71.5 295.5,71.5" style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-</g>
-<use xlink:href="#clonetiler_per_row_shift" inkscape:label="#clonetiler_per_column_shift" height="1250" width="1250" transform="matrix(0,1,1,0,436.9769,-408.9769)" id="clonetiler_per_column_shift" y="0" x="0" />
-<use xlink:href="#clonetiler_per_row_scale" inkscape:label="#clonetiler_per_column_scale" height="1250" width="1250" transform="matrix(0,1,1,0,464.977,-436.9768)" id="clonetiler_per_column_scale" y="0" x="0" />
-<use xlink:href="#clonetiler_per_row_rotation" inkscape:label="#clonetiler_per_column_rotation" height="1250" width="1250" transform="matrix(0,1,1,0,492.9775,-464.9763)" id="clonetiler_per_column_rotation" y="0" x="0" />
-<use xlink:href="#clonetiler_per_row_opacity" inkscape:label="#clonetiler_per_column_opacity" height="1250" width="1250" transform="matrix(0,1,1,0,520.9769,-492.9769)" id="clonetiler_per_column_opacity" y="0" x="0" />
-<use xlink:href="#clonetiler_per_row_color" inkscape:label="#clonetiler_per_column_color" height="1250" width="1250" transform="matrix(0,1,1,0,548.9769,-520.9791)" id="clonetiler_per_column_color" y="0" x="0" />
-<g id="swatches" transform="rotate(90,184.5174,23.51385)">
-<rect y="13" x="212" height="4" width="4" id="rect6024" style="color:#000000;fill:#ffbf00;fill-rule:evenodd" />
-<rect y="8" x="212" height="4" width="4" id="rect6029" style="color:#000000;fill:#ff69bc;fill-rule:evenodd" />
-<rect style="color:#000000;fill:#ffffff;fill-rule:evenodd" id="rect6033" width="4" height="4" x="207" y="8" />
-<rect style="color:#000000;fill:#c8c8c8;fill-rule:evenodd" id="rect6035" width="3" height="4" x="217" y="13" />
-<rect style="color:#000000;fill:#f0fa00;fill-rule:evenodd" id="rect6037" width="4" height="4" x="212" y="3" />
-<path style="color:#000000;fill:#a4602b;fill-rule:evenodd" d="M 217,8 221,8 220,12 217,12 217,8 Z" id="rect6045" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<rect y="3" x="217" height="4" width="4" id="rect6048" style="color:#000000;fill:#00c626;fill-rule:evenodd" />
-<rect y="13" x="207" height="4" width="4" id="rect6050" style="color:#000000;fill:#8ab3de;fill-rule:evenodd" />
-<rect y="3" x="207" height="4" width="4" id="rect6009" style="color:#000000;fill:#ff0000;fill-rule:evenodd" />
-<path id="rect6103" style="color:#000000;fill:none;stroke:url(#linearGradient6160);stroke-width:0.9999999;stroke-linecap:round;stroke-linejoin:round" d="M 206.5035,2.5 206.5035,17.53125 220.1608,17.53125 C 219.6434,16.08209 219.0304,13.23016 220.6014,10.5 222.6154,7 220.6014,2.5 220.6014,2.5 L 206.5035,2.5 Z M 211.5385,2.5 211.5385,17.5 M 216.5734,2.5 216.5734,17.5 M 206.5035,12.5 219.5944,12.5 M 221.1049,7.5 206.5035,7.5" sodipodi:nodetypes="cccscccccccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#bad2ec;stroke-width:1px" d="M 210.5035,16.5312 207.5035,16.5312 207.5035,13.5312" id="path6163" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ff6565;stroke-width:1px" d="M 210.5035,6.5312 207.5035,6.5312 207.5035,3.5312" id="path6165" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffb5e0;stroke-width:1px" d="M 215.5035,11.5312 212.5035,11.5312 212.5035,8.5312" id="path6168" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffe185;stroke-width:1px" d="M 215.5035,16.5312 212.5035,16.5312 212.5035,13.5312" id="path6170" inkscape:connector-curvature="0" />
-<path id="path6172" d="M 215.5035,6.5312 212.5035,6.5312 212.5035,3.5312" style="fill:none;stroke:#feffcd;stroke-width:1px" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#5cff7c;stroke-width:1px" d="M 220.5035,6.5312 217.5035,6.5312 217.5035,3.5312" id="path6174" inkscape:connector-curvature="0" />
-<path id="path6176" d="M 219.0035,11.5312 217.5035,11.5312 217.5035,8.5312" style="fill:none;stroke:#d28b51;stroke-width:1px" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccc" style="fill:none;stroke:#ffffff;stroke-width:1px" d="M 219.0035,16.5312 217.5035,16.5312 217.5035,13.5312" id="path6178" inkscape:connector-curvature="0" />
-</g>
-<g id="paint-pattern" transform="translate(395.0006,254)" inkscape:label="#fill_pattern">
-<rect inkscape:label="#ccc" y="66" x="671" height="18" width="18" id="rect4541" style="color:#000000;fill:#99b6d4;fill-rule:evenodd;stroke-width:1.0000004" />
-<path style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-linejoin:round" d="M 676.7274,66.00001 673.4547,69.42858 677.5456,73.7143 681.6365,69.42858 678.3638,66.00001 676.7274,66.00001 Z M 681.6365,69.42858 685.7274,73.7143 689.0001,70.28572 689.0001,68.57144 686.5456,66.00001 684.9092,66.00001 681.6365,69.42858 Z M 685.7274,73.7143 681.6365,78.00001 685.7274,82.28573 689.0001,78.85715 689.0001,77.14287 685.7274,73.7143 Z M 685.7274,82.28573 684.091,84.00001 687.3638,84.00001 685.7274,82.28573 Z M 681.6365,78.00001 677.5456,73.7143 673.4547,78.00001 677.5456,82.28573 681.6365,78.00001 Z M 677.5456,82.28573 675.9092,84.00001 679.1819,84.00001 677.5456,82.28573 Z M 673.4547,78.00001 671.0001,75.42858 671.0001,80.57144 673.4547,78.00001 Z M 673.4547,69.42858 671.0001,66.85715 671.0001,72.00001 673.4547,69.42858 Z" id="rect4545" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:none;stroke:#000000;stroke-width:0.9999989;stroke-linecap:round;stroke-linejoin:round" id="rect4381" width="19.00081" height="18.99999" x="670.4994" y="65.5" />
-</g>
-<g id="paint-swatch" transform="translate(395.0006,282)" inkscape:label="#fill_swatch">
-<rect inkscape:label="#ccc" y="66" x="671" height="18" width="18" id="rect11473" style="color:#000000;fill:#99b6d4;fill-rule:evenodd;stroke-width:1.0000004" />
-<rect style="color:#000000;fill:none;stroke:#000000;stroke-width:0.9999989;stroke-linecap:round;stroke-linejoin:round" id="rect11475" width="19.00081" height="18.99999" x="670.4994" y="65.5" />
-<rect style="fill:#000000" id="rect4382" width="13.00081" height="12.99999" x="674.4994" y="69.5" />
-<rect style="fill:#ffffff" id="rect11478" width="13.00081" height="12.99999" x="673.4994" y="68.5" />
-</g>
-<g id="distribute-graph" transform="matrix(0.173978,0,0,0.208504,867.7008,70.05456)" inkscape:label="#graph_layout">
-<g transform="matrix(4.416533,0,0,3.725389,-3265.91,88.05639)" id="g3559" />
-<path id="path3569" d="M 1003.929,599.4599 980.8144,612.551" style="fill:none;stroke:#000000;stroke-width:4.125" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path3575" d="M 973.761,627.7789 977.3535,658.054" style="fill:none;stroke:#000000;stroke-width:4.0493159" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path3577" d="M 989.9269,669.145 1013.996,670.6437" style="fill:none;stroke:#000000;stroke-width:4.125" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path3579" d="M 1029.749,663.75 1043.75,637.1262" style="fill:none;stroke:#000000;stroke-width:4.125" inkscape:connector-curvature="0" />
-<path id="path3581" d="M 1041.298,620.8845 1021.547,601.25" style="fill:none;stroke:#000000;stroke-width:4.125" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path14606" d="M 1057.695,626.25 1082.252,623.882" style="fill:none;stroke:#000000;stroke-width:4.125" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path3585" d="M 1097.34,615.4889 1113.937,601.5946" style="fill:none;stroke:#000000;stroke-width:4.125" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path3587" d="M 1097.34,632.5749 1115.827,654.5025" style="fill:none;stroke:#000000;stroke-width:4.125" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="use15576" transform="matrix(2.158934,0,0,1.807036,304.9623,206.775)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="use15574" transform="matrix(2.158934,0,0,1.807036,270.4753,278.716)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="use15578" transform="matrix(2.158934,0,0,1.807035,316.828,283.148)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="use15580" transform="matrix(2.158934,0,0,1.807035,339.8194,239.9834)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="use15588" transform="matrix(2.158934,0,0,1.807036,385.4323,235.551)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="use15590" transform="matrix(2.158934,0,0,1.807036,414.1713,206.775)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="use15592" transform="matrix(2.158934,0,0,1.807036,414.1713,273.92)" cx="328" cy="215" r="5" />
-<use xlink:href="#path5724" height="1250" width="1250" id="use15554" y="0" x="0" style="fill:#8ab3df;fill-opacity:0.5882353;stroke:#0000ff" transform="matrix(1.957219,0,0,1.633125,337.4381,267.7929)" />
-</g>
-<g id="zoom-original" inkscape:label="#g6809">
-<g transform="matrix(0.996399,0,0,1,95.08523,-222.9354)" id="zoom_1_to_1">
-<use xlink:href="#g5796" transform="matrix(1,0,0,0.997925,-0.04089,0.477615)" x="0" y="0" id="use5816" width="1250" height="1250" />
-</g>
-<path d="M 103,29.5 104.5,29.5 104.5,36 M 107,32.5 108,32.5 M 109,29.5 110.5,29.5 110.5,36 M 107,35.5 108,35.5" style="fill:none;stroke:#000000;stroke-width:1px" id="path3788" inkscape:connector-curvature="0" />
-</g>
-<g id="zoom-double-size" inkscape:label="#g6890">
-<use xlink:href="#zoom_1_to_1" x="0" y="0" id="use6852" width="1" height="1" transform="translate(2.45923e-6,40)" />
-<use xlink:href="#path10692" x="0" y="0" id="use6888" transform="translate(-5.03664,20)" width="1250" height="1250" />
-<path d="M 110,69.5 111.5,69.5 111.5,76 M 108,72.5 109,72.5 M 108,75.5 109,75.5" style="fill:none;stroke:#000000;stroke-width:1px" id="path3820" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="layer-lower" inkscape:label="#g6925">
-<use xlink:href="#path4802" height="1250" width="1250" id="use5788" y="0" x="0" transform="translate(-820,-4)" />
-<use xlink:href="#path5705" height="1250" width="1250" id="use5764" y="0" x="0" transform="translate(-820,-5)" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use5782" y="0" x="0" transform="translate(-820,-12)" />
-<use xlink:href="#rect12856" style="fill:#000000" height="1250" width="1250" id="use13581" y="0" x="0" transform="translate(-819.959,-4.960871)" />
-<use xlink:href="#path7204" x="0" y="0" id="use3823" transform="matrix(1,0,0,-1,-819.959,351)" width="1250" height="1250" />
-</g>
-<g transform="translate(86.43619,-187.9707)" id="show-node-handles" inkscape:label="#nodes_show_handles">
-<rect style="color:#000000;opacity:0;fill:#000000;fill-rule:evenodd;stroke-width:0.8" id="rect3742" width="12" height="12" x="735" y="57" transform="translate(-64.4787,188)" />
-<path style="color:#000000;fill:none;stroke:#909090;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 682.0213,245.5 C 678.5213,246 673.5213,249.5 673.5213,253.5" id="path4641" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 673.0213,247.5 673.0213,253.5" id="path4638" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<use xlink:href="#rect10675" height="1250" width="1250" id="use3738" y="0" x="0" transform="translate(703.5311,60.30166)" />
-<use xlink:href="#use5758" height="1250" width="1250" id="use4635" y="0" x="0" transform="translate(704.4975,77.02417)" />
-</g>
-<g id="distribute-remove-overlaps" inkscape:label="#g5622">
-<rect y="190.0499" x="1071.892" height="24" width="24" id="rect3709" style="opacity:0.1978022;fill:none" />
-<g id="use3696" transform="matrix(0,1.043478,0.998006,0,894.32,299.5735)">
-<rect y="187.554" x="-104.4881" height="7.017632" width="22.00094" id="rect4586" style="color:#000000;fill:none;stroke:url(#linearGradient5599);stroke-width:0.9799225;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="188.5476" x="-103.6973" height="5.021792" width="20.21019" id="rect4588" style="color:#000000;fill:url(#linearGradient5601);fill-rule:evenodd;stroke:url(#linearGradient5603);stroke-width:0.9799237;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="use3698" transform="matrix(1.278077,0,0,2.547898,1136.87,-277.0242)">
-<rect y="183.485" x="-35.49881" height="9.036107" width="3.142212" id="rect4598" style="color:#000000;fill:none;stroke:url(#linearGradient5605);stroke-width:0.554154;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="-34.71634" x="183.8775" height="1.564824" width="8.243282" id="rect4628" style="color:#000000;fill:url(#linearGradient5607);fill-rule:evenodd;stroke:url(#linearGradient5610);stroke-width:0.5541545;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" transform="matrix(0,1,1,0,0,0)" />
-</g>
-<use xlink:href="#use5811" transform="matrix(1,0,0,0.998006,1137.885,4.393102)" x="0" y="0" id="use3703" width="1250" height="1250" />
-<g id="use3706" transform="matrix(0,1.176069,1.157927,0,849.5299,245.8438)">
-<rect y="192.5597" x="-38.48989" height="5.011148" width="10.98825" id="rect4608" style="color:#000000;fill:none;stroke:url(#linearGradient5614);stroke-width:0.8569264;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="193.3" x="-37.68001" height="3.476375" width="9.363411" id="rect4610" style="color:#000000;fill:url(#linearGradient5616);fill-rule:evenodd;stroke:url(#linearGradient5618);stroke-width:0.8569259;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-</g>
-<g id="object-locked" transform="matrix(0.75,0,0,0.71955,299.5223,-168.4164)" inkscape:label="#width_height_lock">
-<rect ry="0" rx="5.33334" y="710.0064" x="50" height="15.99362" width="16" id="rect16900" style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:1px" />
-<path id="path16896" style="fill:none;stroke:#000000;stroke-width:1.3612533px" d="M 62.5,717.5 62.5,714.8641 C 62.5,711.8641 59.99997,710.5 57.99997,710.5 55.99997,710.5 53.5,711.8641 53.5,714.8641 L 53.5,717.5 62.5,717.5 Z" sodipodi:nodetypes="ccsccc" inkscape:connector-curvature="0" />
-<g id="use5854" transform="matrix(0.997501,7.43861e-7,-7.10133e-7,0.9975,0.167523,1.817969)">
-<path sodipodi:nodetypes="ccccc" id="path4841" d="M 51.96282,724.3143 51.96281,715.9463 63.99288,715.9463 63.99288,724.3143 51.96282,724.3143 Z" style="fill:url(#linearGradient4849);fill-rule:evenodd;stroke:#000000;stroke-width:1.0917313;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-<use xlink:href="#path5841" height="1250" width="1250" transform="matrix(1.034059,0.0786266,-0.0088376,0.931256,4.459467,44.22347)" id="use3754" y="0" x="0" />
-</g>
-<g id="object-unlocked" transform="matrix(0.749124,0,0,0.633637,299.5433,-127.7233)" inkscape:label="#lock_unlocked">
-<rect ry="0" rx="5.339582" y="710.0064" x="50" height="15.99362" width="16" id="rect8632" style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:1px" />
-<path style="fill:none;stroke:#000000;stroke-width:1.451453;stroke-linecap:round" d="M 62.5,716.2876 62.5,713.6626 C 61.99759,709.0089 57.03272,708.2545 55.24252,710.4395" id="path8634" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<g transform="matrix(1.024267,-0.199097,0.200349,1.030708,-144.8304,-9.554702)" id="g5835">
-<path style="fill:url(#linearGradient4859);fill-rule:evenodd;stroke:#000000;stroke-width:1.109341;stroke-linecap:round;stroke-linejoin:round" d="M 52.4921,725.7923 52.88452,716.0232 63.40194,715.7981 63.03896,725.7159 52.4921,725.7923 Z" id="path5839" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccssccsc" id="path5841" d="M 57.96875,718.4687 C 57.14028,718.4859 56.48264,719.1715 56.5,720 L 57.5,721 C 57.4924,721.5409 56.77656,722.5441 57.24381,722.8168 57.71106,723.0895 58.28894,723.0895 58.75619,722.8168 59.22344,722.5441 58.50765,721.5409 58.5,721 L 59.5,720 C 59.5086,719.5913 59.34999,719.1969 59.06095,718.9078 58.7719,718.6188 58.37743,718.4602 57.96875,718.4687 Z" style="fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="sticky_zoom" transform="matrix(0.483821,0,0,0.485303,274.8823,249.3187)">
-<circle transform="matrix(1.125571,0,0,1.125565,-22.76161,-20.24985)" id="path5056" style="color:#000000;fill:none;stroke:#9e9e9e;stroke-width:1.7359509;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7081545" cx="179" cy="159" r="7" />
-<rect y="150" x="170" height="24" width="24" id="rect5058" style="color:#000000;fill:none" />
-<circle transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)" id="path5060" style="color:#000000;fill:url(#linearGradient8492);fill-rule:evenodd;stroke:url(#linearGradient4819);stroke-width:1.4338813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" cx="179" cy="159" r="7" />
-<path style="fill:url(#linearGradient8494);fill-rule:evenodd" d="M 172,160 C 177,159 176,154 181,153 179,151 175.5,151.8333 174,153 172.5,154.1667 171,158 172,160 Z" id="path5062" sodipodi:nodetypes="cczc" inkscape:connector-curvature="0" />
-<g transform="matrix(-0.707107,0.707107,-0.732853,-0.732853,338.9611,194.4488)" id="g5066">
-<path style="fill:url(#linearGradient8496);fill-rule:evenodd" d="M 85.625,124.8009 C 87.29167,123.8009 88.95833,123.8009 90.625,124.8009 L 90.24628,115.9591 C 88.89722,115.3058 87.62782,115.4979 86.07962,115.9591 L 85.625,124.8009 Z" id="path5068" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient8498);fill-rule:evenodd;stroke:url(#linearGradient8500);stroke-width:1.9912179;stroke-linecap:round;stroke-linejoin:round" d="M 90.62502,124.8009 90.58264,115.9811 C 89.73669,114.9811 86.3975,114.9353 85.55156,115.9353 L 85.625,124.8009" id="path5070" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient8502);fill-rule:evenodd;stroke:url(#linearGradient4811);stroke-width:1.9912179;stroke-linecap:round;stroke-linejoin:round" d="M 85.625,124.8009 86.54346,126.5815 C 87.58329,126.3701 88.56338,126.4085 89.54346,126.5815 L 90.625,124.8009 C 89.77906,123.8009 86.47094,123.8009 85.625,124.8009 Z" id="path5072" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g transform="matrix(0.823809,0,0,0.639827,-262.554,171.1256)" id="object-visible" inkscape:label="#visible">
-<rect style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.83269" id="rect6472" width="14.52438" height="18.61259" x="707.1481" y="235.935" />
-<g id="g1661" transform="translate(0,-0.9)">
-<path id="path4926" style="color:#000000;fill:url(#linearGradient12592);fill-rule:evenodd;stroke:#000000;stroke-width:1.1019087;stroke-linecap:round" d="M 718.3596,243.1986 C 719.3773,243.9521 720.2979,245.1034 721.151,246.7745 719.3176,250.3658 717.7991,251.8726 715.049,251.8726 712.299,251.8726 709.4688,249.9998 707.853,246.6911 709.6864,243.0997 713.2961,241.3385 716.1602,242.0819 M 711.7759,242.388 710.7364,238.3101 M 709.2185,244.2435 707.6685,241.7133 M 714.9275,241.9355 715.0423,237.208 M 717.4674,242.559 718.9969,238.7706 M 719.616,244.0748 721.2305,242.135" sodipodi:nodetypes="ccscscccccccccc" inkscape:connector-curvature="0" />
-<ellipse style="color:#000000;fill:url(#linearGradient12519);fill-rule:evenodd;stroke-width:3.0247481" id="path5671" transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)" cx="63.5" cy="714" rx="3.5" ry="4" />
-<ellipse style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:3.0247481" id="path12489" transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)" cx="63.5" cy="714" rx="3.5" ry="4" />
-</g>
-</g>
-<g transform="matrix(0.823787,0,0,0.645052,-262.5401,190.2713)" id="object-hidden" inkscape:label="#hidden">
-<rect style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.83269" id="rect12545" width="14.52438" height="18.61259" x="707.1481" y="235.935" />
-<g id="g12547" transform="translate(1.571853e-4,-2.424845)">
-<path id="path12549" style="color:#000000;fill:url(#linearGradient12555);fill-rule:evenodd;stroke:#000000;stroke-width:1.0974514;stroke-linecap:round" d="M 719.0955,243.8639 C 719.8265,244.5813 720.5076,245.5349 721.1508,246.7745 719.2872,250.3658 717.7437,251.8726 714.9482,251.8726 712.1528,251.8726 709.9355,249.62 707.6335,246.6911 709.4972,243.0997 711.8328,241.9924 714.3111,241.9924 714.744,241.9924 715.1623,242.021 715.5669,242.0826 715.9527,242.1414 716.3261,242.2302 716.6881,242.353" sodipodi:nodetypes="ccscsss" inkscape:connector-curvature="0" />
-<path id="path12562" style="color:#000000;fill:none;stroke:#000000;stroke-width:1.0974512;stroke-linecap:round" d="M 714.4315,249.1956 714.5074,256.0334 M 716.8989,248.7953 718.1936,254.8548 M 719.3476,247.864 721.0799,252.4594 M 712.0036,249.0005 710.3345,254.8614 M 709.6897,247.3399 707.7171,252.3217" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="object-fill" transform="matrix(1,0,0,0.923129,277.0199,262.075)" inkscape:label="#properties_fill">
-<g id="g5646" transform="matrix(0.751537,0,0,0.749817,166.4504,10.00731)">
-<path sodipodi:nodetypes="ccccc" id="path11232" d="M 669.9999,39.99979 685.8966,39.99881 685.9212,57.33638 669.9212,57.3354 669.9999,39.99979 Z" style="color:#000000;fill:url(#linearGradient5619);fill-rule:evenodd;stroke-width:1px" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:none" id="rect11240" width="16" height="16" x="669.9212" y="40" />
-</g>
-</g>
-<g id="object-stroke-style" transform="matrix(0.733476,0,0,0.741921,466.3473,269.3232)" inkscape:label="#properties_stroke">
-<path sodipodi:nodetypes="cccccccc" id="rect12874" d="M 709.8429,42.69565 722.1132,42.69565 722.1132,39.99995 726.2033,43.36958 722.1132,46.73921 722.1132,44.0435 709.8429,44.0435 709.8429,42.69565 Z" style="color:#000000;fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1.35559px;stroke-linecap:square" d="M 710.5245,50.10884 711.8879,50.10884" id="path10529" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="use10533" d="M 718.7054,50.10824 720.0688,50.10824" style="fill:none;stroke:#000000;stroke-width:1.35559px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<use xlink:href="#use10533" transform="translate(4.090113)" height="1250" width="1250" id="use10535" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1.35559px;stroke-linecap:square" d="M 710.5246,55.4991 725.5246,55.4991" id="path10541" inkscape:connector-curvature="0" />
-<use xlink:href="#path10529" height="1250" width="1250" transform="translate(4.090108)" id="use4611" y="0" x="0" />
-</g>
-<rect style="fill:none;stroke:url(#linearGradient5617);stroke-width:1.0000001" id="object-stroke" width="11.02273" height="10.97917" x="963.5" y="299.5" inkscape:label="#properties_stroke_paint" />
-<g id="dialog-rows-and-columns" inkscape:label="#grid_arrange" transform="matrix(0.998005,0,0,0.998427,-214.1301,105.3675)">
-<rect style="color:#000000;fill:none;stroke-width:0.7" id="rect14409" width="16" height="16" x="405" y="220" />
-<rect style="color:#000000;fill:#bf0000;fill-opacity:0.9942363;fill-rule:evenodd;stroke-width:1.0000004" id="use6620" width="1" height="1" x="416.9681" y="231.9748" />
-<use xlink:href="#g6675" height="1250" width="1250" id="use6687" y="0" x="0" transform="matrix(1,0,0,0.998006,447.9987,45.40201)" />
-<use xlink:href="#g6675" transform="matrix(1,0,0,0.998006,456.0399,53.45968)" x="0" y="0" id="use3752" width="1250" height="1250" />
-<g transform="matrix(1.000856,0,0,1,402.9876,14.92548)" id="use3773">
-<rect y="205.5581" x="10.5083" height="5.941895" width="5.4917" id="rect3777" style="color:#000000;fill:none;stroke:url(#linearGradient5609);stroke-width:1.0021828;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="206.5582" x="11.50743" height="3.941803" width="3.492565" id="rect3779" style="color:#000000;fill:url(#linearGradient5611);fill-rule:evenodd;stroke:url(#linearGradient5613);stroke-width:1.0021827;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<use xlink:href="#use3773" height="1250" width="1250" transform="translate(-8.065729,8.075484)" id="use3787" y="0" x="0" />
-</g>
-<g id="color-management" inkscape:label="#color_management" transform="matrix(0.33,0,0,0.33,190,344)">
-<rect y="0" x="0" width="48" height="48" style="fill:none" id="rect8860" />
-<g transform="matrix(1.125,0,0,1.125,4.5,-7.3125)" id="g8862">
-<image xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAANJWlDQ1BJQ0MgcHJvZmlsZQAAeNqt 12k4lO/bB/DznhnGMmYYO2Fk36LshOyJyr6lZN+GmWypVEgKkSUULQgJoUQiUf3IkpAs2YqKLKUQ yTLPC6me33H8/8+b53x13uf94rqv+zg+3+u4AAhKLlQqGQUA/gHBgZbGeiR7B0cStg+YAQ9EkAGs i1sQVdfc3Az+Yy32AgIA0C3nQqWSE0NOLve+X3rVaX5fAaGkesJ/L3ygvYMjACILABxeG/0uAOBw 3eitAYDjaDA1GADxBgAON28XdwAkHABkA60t9QGQQgDAe2301QCAd93omwEAH+rmFQyA9APQEwPc fQIAsDMA9NruHkFuAHhZAHB3D3LzB8AnAYCZvz/FHQA/BACSbtTAYAACBgDk7B0cSRuffCAOQIkX gMH0z+xoGkBlDoDk3j8zkQcAXC4AuQl/ZvOWgAAAwtUR5Km4AwAAEJweAN0IjTYvDoBNAVhLptFW cmm0tZsA6CGABrJbSGDor/+FIO0A/9fzxp5/FRoBQAEgokgB6jg6HBNOd4o+AhvFcIbRgLGR6Rzz eVwsywV8Fas3WzIxmT2F4xJnGlcadwZPIx+FP2tLlsA1wWZSiHDu1psiHWInxAskuqROSRfL9MpF bbsjP7D93I57im+VL6hUqY6qJ2rUaI5rpWo/1pnSTdd7qv/FMNOoyXjO5MaeVtPFvbn7Xu7vNO+0 6LJctS6y6bHtteuz73fEHLjrNHRw+NCI89vD71xxbg/dP3h89Bz3mvD+5DPpx0l+4v854Atllvr1 yLfAuaCF4IWQ76GLR5fCfhxbPv7zxGr46sm101IRPVHIGVQ0+iwmhu4c/XlsLEMcYzzTBeYEXCLL RXwSIZk1hS2VeIk9jSOdM4PrMvcVnkzeLL6r/Ne2XBe4IZgtlEPKFb65NU8kX7RA7JZEocRtySKp Yuni6RLyHdlSuTL5coW72+9tr9hxX6lSuUqlavFBaLXqQ7UajVrNRzvrdj7Werxef7pB58mup7rP 9P7Rb8Q0RjcZPjdqNm4xaTVpY2qLf2HabvZyXwe+42KneZfFK8tuYnfKa6se616bPq6+jH67N/YD joN8g1lDTsNOIwffCr698c559PCY8Fjue9cPbh/dx8XGCyY8P3lNek9JTRVN+874fSZ/kftSOhvw lfKNOrd97t584ELQ9+BF5cWqpdAfYcvHfh5b0VipXT2xFr6utf6YRgNARFB41Fd0G6aYLpU+HOvF YM2oz6TELIGTYOHBcxN4WHnYOIni7JIcapxmXIe4g3gSecv42vgnBdgFVYS8SJeFn4sgolpiR8Tv SsxKSUqTZWrl0Nt05ZMVRndIKcYo9alIq1LVGjW4NcN2vtDm0qHseqonqn/CoMtI0Dhsd53Jsul2 M4+9afu6zPEWxpZhVvnWr22Z7HbZH3G45th0YPag0KH9zscP57o0uk66c3roeNp7nfLO9mnwHfZb 9mcPkKEYUL2PhAcmBeUGV4Y0hw4enQpbPI4+wRZOOil7Svn0rgjTyP1RB84cjvY4S44JPhd4PiI2 Iu5MfOyFlIT4xMyLV5IykpNTrqamXEpPu5xemHHrcumVwszirLKrj649ut5440V2V053bvfN7rzB /A8FE7fGCj/eni36Vjxb8uXOXOls2XT5zN2Je6MVY/cHKruqWh40VD94WFZztTblUUSd/+MD9aYN O59IPyU+XX727p/WxvtNqc8Dm61aVFr5W2ltAy/ut8e9dOwQ6RjvrOg6+cqwG989/Dq7x7dXsXet r70/9c3BAamB+cGaoahh0xGOkZG3t98FjWqOYcZa31/6cOijxMeZ8ZqJyE97Jjknh6fypskzyjPr n1u+pMwe+Cr6deZbxVz4vPECcaH/e/4iZUn9B/rH8+XknwdWRFY+r1atRayb0LhoNAA4g4ShjqM1 0TWYk3Q6dPX0kdizDEYMjYwxTOeY43B7cG0sCfgEQiLrftYOtiRiCnsqRyqnNedrrnTudJ7LvJl8 WfxZW64KOAkMC94QyiblCOdszRG5KZonli9eIHFLslDqtrSP9JRMkWyJ3J1tpfJlCuXb7+64p1ih dF+5SqVKtUotTO2Heo1GjWbtzkdaddqntNd16nc16D7Re6r/zCDaEGPYaNRk/Hx3s0nLnlbTeDOc 2Yu97fte7u8wT7JgteiyfGXVbf3aptc23Y7Lrs++3+GN48CBLCd+p6GDw4feOr87/M4lx1XYdczt vfsHj4+eBV7iGwniO+VXTJYlz/yvFJn/nSLVx9SOLR//eWIlfPXk2qn107RIiEL9ThLseWwsQ2xL 3J545gu4BFwiy0VCEmsy2+8s4crgvszzK0u2/J0luWM33fJE8kULxG+Jb6ZJiewdudJtf2WJYqVS lfID1WrVh2o16rWajzTrdj7Wrtf+K0cMm4yeGzUbt+xuNWkzfRH6cmvHvk7zLvNXFt0ne6R7bfvs +qMG5Acdh2JGFN/GjiqPXfjgPq45kTzpM+37mTxL+Ra34Lh4cTl+zZJGA9g4+wAA6FUA0mUAbDMB rHIBYmQAJJwBuAoBzFkArNUBRScIKC0qIHu0Ns8PQIAVBGAb6IEDBEESlMMPhISYImFIIfISmUAR UMaoSFQdahWthY5EN6FXMcIYB0wB5judEd1ZujK6WXpj+hz6cSwn1glbx4BlUGeIZphm1GCkMDYw yTFFMFUz45kjmd/gOHABuE8shixnWEbxLvinBDTBkzDDasGazrrGFss2R9Qg5rOrsuezz3I4cyxx +nBWcclwPef25MHyFPGK8R7lXeC7xm/MP78lW0BUIFwQEawU8iUJkwaEL23dujVChCDSIZosZiPO Jz4mUSypL3lbSk+aTXpUpkL2nJzTNkV5nPyEwj/bc3dEKborGSvLqrCrrKqOq2Wo49UbNMo1c3Ze 0jqvfVrn6K4jumQ9H31vA29DP6MA4+DdJ0yi91w0zTK7vbd6X8v+IfNvllgrQWs1Gytbql2ifalD p+O8E89B7UOezkmHa10+uXG7G3sc8yzx4fE194sjNwagKLrUyCPPguiDTUNSwkSPUY4/Cmc66Xiq 5DQt0joaddYp5sF59tgjcV0JaYnLSc7JTanylzIzgi6/z7TKarxemi2Wc+0mdwHrrcTb+KKLdzLK BMrz7slVGlR1Vbs8/FbH/bikQe9ZcCOhqaR5T1tcu9zLrs7Q7qYeah9/f/OQ+HD/27hRnQ8l4+6f hCYHPtvOcn3tm8tccF6aWa5cOU3jodEAAAVMwA1SoAP2EAJpUA0jCBZRQJyRRKQemUdJo5xRmajX aAJ6L/oCuh3DgtmPScMM0pHofOjK6X7Q69NfpH+DFcOGYJ8xEBncGaoZmRmdGEuZMEyHmO4zMzG7 MdfjOHFUXDuLNEsCywzeDF9GYCFQCL2su1jz2PBsoWyDRCPiXXYSewr7OkcQx2dOX84pLjLXHHcw 9yLPcV6E9wIfH18Rvzp/0xbbLZMCEYK8glVCFkJTpBhhceHmrQEi3CKPRd3EcGJPxAMkhCReScZK 6UmtSdfKhMtqyS7J1W87L2+tIKwwu71+R7Kir5KBsqDyikqP6kO1a+qRGl6adju1tOS1hXWIuzC6 aN05vW/6swbThuNG88bTu7/vQZlymHHv3b5Pe/9+c0sLP8tjVlnW92xe2A7arTpwOMof2Od05OCV Q43OEy6Mrgpu3u6ZHvWeX72lfDx8M/x6/PkDbChZ1E+BkkGhwS2hAkeDwlqPi5xIDJ865XC6OVIl Kj+aeDbxHPF8ehxPfFaCcuLLJI/kn6kJaarpHy9fz/S9anNdKpsuZ+bm0/zKW1duxxS73XEqM7qr VqFUue2B3EPJWrE6yXqFJzrPdjdaPCe3HGlLbs/ueNQ10k3rFerXGnAfih+peTfznvej3kTEZOH0 hy98Xz3nri+ML0kuB6xUrSM0GgDQAysIgB44QBKUw6tN+5vuN9RjCBgHzHc6I7rMX97XsU4MQgzR DNOM1owNTHJMV5nxzJHMS7gA3CcWd7wL/j3BkzDDGsS6xhZL5CLms6uyt3I4cyxxJv02vY934Zdn c0FEsPKXZYsNyb8ch0rp/W34j+Bffl+pN2iU/7H7R+5/dvvf1HqN+vD4mv9bbejAv91GFf0t98KO P3LT6TftXlPf1JuXuum3hLgpuKJ603DtmQ3FTwY2HbdMtsW9+Kc9/WVXZ+grge6mHmpveV9Mf/NA 6JD4sN+Iwdu4UZ2xc+9dP5R8XBzv/iQ06TdlMi05g/1s+6VgNuar17fdc9LzzPNfFjq/VyymL1kv zfyIXtb7KfFzfOX0Ks/q9TW2tei1pfU8WjyNBrBxXwIAACZ9CpkSSDLTN4D/3/Inh2yugQIAnEeQ oRUAEAFA0iPAZrPXADPQBwMggRtQgAwUCAT93x1p4+3GPQ4AgJ4V4KodAED9jxMR/14z2CMsGABA n0I9Fujj5R1M0qVSyR4kfYo/NSTYI1CWZBLgtk2WtENBQRkA4H8Aw2wI2gG1XRMAAAOYSURBVDjL pdXPaxxlGMDx7zszOzuTzW72R7KbpjWx/sAeFPVQFGqKiNDWFlvMwYo/wItXxR6q5lQET968iDf/ AUOgVOwlUMREhZRaD2Ldmpgmpmm23ezs7szOr8dDZjfxV03sOzzM8MJ83ofnfV5eHMeRSWdSDvoH 5Zx/TuphXe518GXtoiC6kDyVoCJT7tS9oa/W3xZkSJBUDyZGzrTOSBiH/w99uvGGIAcE2SOIvQUL crJ9Utphe9eodiN2gQJQAgaBLKAAmLanORYcpRk57GZoN/UYGADyQDGBC4AOwJx1ideD52mGGztH U/FAgm6HS0mYpIGq9R1nw+dohnd2htpaEchtQ/PbyjGETYY+FOvWPJ+FR3B3kLFmkU/Q3Da8AAyi UybDMP3kyaHhWd8zEx7FDxt3R/dF5WRzumARGAKGMBM0x17yDDOISb81x23/OFHY/Hd0TJUTsJBg ZaACDGMzQo4R8uxjkDH2MMYoWcru1wQ/nCDs/HPGxibqACHgAwHQATpkcRnApUSTYRqMUmBvM4tW XcT65RLelWOo01+h2/1/RvfHJcBN0G4EGPgM0KGExzAuY7R4wL9DqpqGKrCoY618i1s9jjl5Ad3O bKFPqELS7HESERBhEVIkpELAKD6PxC7ZX6/DTx5c78CSwKqOfXkOd+lFzE/Po9v2JnpAWZjBKL5S INJbLSfCIMKICA+KUFm7CVeb8HMNFtqwEsKawLqOfWUWd/UU5vQ0umVhGMCjqynmPa2XqIqgP4J0 AFoAsQ9SK8KPJaiW4IYDv3uwFkJDINKwL87ivjRBeuoLDKUUh1rC/GKvnBg+2D7oHsQuuC3o1Pvo qxZgoQDLG1BzwQ+SkgHopK4u4H8ziwEwbsIni8nmd8D0IO2C3oa4Cd4GeLUUfb/lYSUP7TxIK+mS kODhEeTsBMZrJ7DSJoaI8GwF9GUhchV4YLXBbIHmQFyHoAbtVUWxkYW4e/IcgicLyHvjpCaeQuna 1u4rpRjK6BzuC5m5ZqDaYLcg1QCtDrIOwQa4EURk0MkSjN+HfPAMqSP7UUr9vfm7H688JsxcAL0J lgPGbVAbIOFmqV0leC/opN5/CPNQ9u5nX5I2evmwzkAjIrUE5iIYNVAhiB5TPh1w/+WQzHnrP0EA HMfpXQMffuRJXok8jsipdCSfv+XLrWvB7u+oLhrHsQRBJO+82ZKP3/Xk1nLQm+++W61W78ft83+d +wOuBu1qqTfJ4wAAAABJRU5ErkJggg==" clip-path="url(#cieClip)" width="36.6" height="41" id="image2428" x="-0.264" y="7.333" />
-<path style="fill:none;stroke:#000000;stroke-width:1.5px" d="M 8.36,47.76 C 7.751574,47.51528 7.222277,46.90182 6.784324,46.39273 5.608271,45.02566 4.964826,43.30281 4.38,41.63 3.446394,38.95956 2.627115,36.19922 2.114165,33.41042 1.415792,29.6135 0.6129846,25.78424 0.3959804,21.94278 0.2093634,18.63925 -0.036735,15.09899 0.67,11.99 1.021272,10.44473 2.335229,8.406245 3.57,7.98 4.66602,7.601652 6.456945,8.746987 7.698531,9.504755 9.584304,10.65569 11.33779,12.01369 12.9958,13.4917 17.54131,17.54374 21.81301,21.89176 26.1391,26.17398 29.19235,29.19627 32.22777,32.23682 35.27,35.27 26.3,39.43333 17.33,43.59667 8.36,47.76 Z" id="path8865" sodipodi:nodetypes="cssssssssscc" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="draw-use-tilt" transform="matrix(1,0,0,1.066667,-203.5002,-21.01625)" inkscape:label="#guse_tilt">
-<rect style="fill:none" id="use_tilt" width="11" height="10.31249" x="691.5" y="303.75" />
-<path id="path4036" style="fill:none;stroke:url(#linearGradient4610);stroke-width:0.9682457;stroke-linecap:round;stroke-linejoin:round" d="M 696.7189,305.998 696,305.5938 692,313.5938 702,313.5938 702,312.6563" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:url(#linearGradient4618);stroke-width:0.9682457;stroke-linecap:round" d="M 694.5,309.375 C 696,309.8438 697.5,311.7188 697,313.5938" id="path15733" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<g id="draw-use-pressure" transform="matrix(0.941445,0,0,1.002693,-145.0319,-1.597622)" inkscape:label="#guse_pressure">
-<rect style="fill:none" id="use_pressure" width="11.684" height="10.9571" x="691.524" y="303.7634" />
-<path style="fill:#000000;fill-rule:evenodd" d="M 691.5241,314.2513 691.5301,314.75 703.2083,314.7339 703.2086,310.7607 C 700.3774,312.5369 696.3043,314.2513 691.5244,314.2513 Z" id="path7145" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient4649);fill-rule:evenodd" d="M 696.8349,303.7635 696.8349,308.75 693.6483,308.75 697.366,312.7393 701.0837,308.75 697.8971,308.75 697.8971,303.7635 696.8349,303.7635 Z" id="path4622" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-</g>
-<use xlink:href="#properties_fill" height="1250" width="1250" transform="translate(482.0912,-121.9991)" id="controls_fill" y="0" x="0" />
-<use xlink:href="#properties_stroke_paint" height="1250" width="1250" transform="translate(486.0664,-121.9791)" id="controls_stroke" y="0" x="0" />
-<g id="transform-affect-stroke" transform="matrix(0.695835,0,0,0.741921,35.18012,-150.29)" inkscape:label="#transform_stroke">
-<path style="fill:none;stroke:#000000;stroke-width:2.7835436;stroke-linecap:square" d="M 670.8773,245.7 685.2485,245.7 685.2485,251.0914" id="path5760" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1.391772px;stroke-linecap:square" d="M 670.1587,250.4175 680.2186,250.4175 680.2186,253.1132" id="path5762" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<g id="g5772">
-<path style="fill:#000000;fill-rule:evenodd" d="M 682.3742,253.7871 682.3742,256.4828 679.5,256.4828 679.5,257.8307 682.3742,257.8307 682.3742,260.5264 686.6856,257.1568 682.3742,253.7871 Z" id="path12910" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<path transform="translate(170,219.961)" id="path5764" d="M 505.9072,37.19576 507.3443,37.19576" style="fill:none;stroke:#000000;stroke-width:1.391772px;stroke-linecap:square" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path5770" d="M 672.3144,257.1568 673.7515,257.1568" style="fill:none;stroke:#000000;stroke-width:1.391772px" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="transform-affect-rounded-corners" transform="translate(-150,-214)" inkscape:label="#transform_corners">
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" d="M 673.5,248.5 677.5,248.5 C 680,248.5 681,249.5 681,251.8" id="path4434" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1.0000004px;stroke-linecap:round;stroke-linejoin:round" d="M 673.5,245.5 679,245.5 C 682.5,245.5 684.5,247.5 684.5,250.5" id="path4436" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<use xlink:href="#g5772" height="1250" width="1250" transform="matrix(0.695835,0,0,0.741921,207.1801,63.71)" id="use4586" y="0" x="0" />
-</g>
-<g id="transform-affect-pattern" transform="translate(-109.9999,-213.9612)" inkscape:label="#transform_pattern">
-<rect style="fill:#000000;stroke:#000000;stroke-width:0;stroke-linejoin:round" id="rect4538" width="11.00024" height="4.999897" x="674.9997" y="245.9612" />
-<path style="opacity:0.9;fill:#ffffff;stroke:#000000;stroke-width:0;stroke-linejoin:round" d="M 683.8361,245.8988 681.6098,247.592 679.4293,245.9337 677.2029,247.627 679.4063,249.3028 677.2259,250.9612 681.6327,250.9612 679.4523,249.3028 681.6557,247.627 683.8361,249.2853 686.0625,247.592 683.8361,245.8988 Z M 683.8361,249.2853 681.6327,250.9612 686.0395,250.9612 683.8361,249.2853 Z M 674.9995,245.9162 674.9995,249.2679 677.2029,247.592 674.9995,245.9162 Z M 674.9995,249.3028 674.9995,250.9612 677.18,250.9612 674.9995,249.3028 Z" id="rect4540" inkscape:connector-curvature="0" />
-<use xlink:href="#path4430" height="1250" width="1250" id="use5102" y="0" x="0" transform="translate(0,-1)" />
-<use xlink:href="#g5772" height="1250" width="1250" id="use4592" y="0" x="0" transform="matrix(0.695835,0,0,0.741921,209.1801,63.671)" />
-</g>
-<g id="transform-affect-gradient" transform="translate(-130,-214.961)" inkscape:label="#transform_gradient">
-<path style="color:#000000;opacity:0.9;fill:url(#linearGradient8709);fill-rule:evenodd;stroke-width:0.7" d="M 675,245.961 687,245.961 687,251.961 675,251.961 675,245.961 Z" id="path12993" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;opacity:0.9;fill:url(#linearGradient8711);fill-rule:evenodd;stroke-width:0.7" d="M 675,248.961 683,248.961 683,252.961 675,252.961 675,248.961 Z" id="path12995" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 675.5,246.461 686.5,246.461 686.5,251.461" id="path4430" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 675.5,249.461 682.5,249.461 682.5,252.461" id="path4432" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<use xlink:href="#g5772" height="1250" width="1250" id="use4589" y="0" x="0" transform="matrix(0.695835,0,0,0.741921,209.1801,64.671)" />
-</g>
-<g id="edit-undo-history" transform="matrix(1.00075,0,0,0.9928055,-0.0412413,0.2497714)" inkscape:label="#edit_undo_history">
-<g transform="matrix(0.723037,0,0,0.675336,-257.1363,-6.948167)" id="g2661">
-<path style="fill:#fac32d;fill-rule:evenodd" d="M 432.5759,60.78928 440.0143,53.3847 440.0143,57.08698 C 440.0143,57.08698 448.7829,57.01915 448.7829,57.01915 448.7829,57.01915 448.7829,70.32655 448.7829,70.32655 448.7829,70.32655 445.5535,70.25508 445.5535,70.25508 445.5535,70.25508 445.5535,63.56253 445.5535,63.56253 445.5535,63.56253 438.6118,63.56253 438.6118,63.56253 438.6118,63.56253 438.6118,66.537 438.6118,66.537 438.6118,66.537 432.5759,60.78928 432.5759,60.78928 Z" id="path2640" inkscape:connector-curvature="0" />
-<path style="fill:#efe4b6;fill-rule:evenodd;stroke:#efe7c1;stroke-width:1.4336616;stroke-linejoin:bevel" d="M 432.558,61.52785 439.1437,54.49225" id="path2645" inkscape:connector-curvature="0" />
-<path style="fill:#ca8f0b;fill-rule:evenodd;stroke-width:1px" d="M 442.9108,70.25823 C 445.632,70.1633 445.5988,70.32655 445.5988,70.32655 445.5988,70.32655 445.5219,63.56253 445.5219,63.56253 445.5219,62.0753 445.5219,62.0753 443.4488,62.0753 443.4488,62.0753 433.6966,61.96534 433.6966,61.96534 L 439.1693,67.94512 439.1693,64.46465 C 439.1693,64.46465 440.3647,64.4945 441.6052,64.4945 444.0861,64.4945 442.9108,67.2805 442.9108,70.25823 Z" id="path2642" inkscape:connector-curvature="0" />
-<path id="path2647" d="M 432.3932,60.65307 439.3236,53.25005 439.3236,56.89614 C 439.3236,56.89614 446.4899,56.8473 448.9899,56.8473 448.9899,56.8473 449.0231,56.99985 449.0231,70.32655 449.0231,70.32655 444.5537,70.34731 443.4548,70.32655 443.4548,70.32655 443.4578,64.35493 443.4578,64.35493 442.2078,64.35493 439.3086,64.35493 439.3086,64.35493 L 439.3237,68.25005 432.3933,60.65307 Z" style="fill:none;stroke:#000000;stroke-width:1.3971461;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-<g id="g11177" transform="translate(-254.4684,4.926264)">
-<path style="color:#000000;fill:url(#linearGradient5391);fill-rule:evenodd;stroke:url(#linearGradient5393);stroke-width:0.7119799;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path14377" d="M 284,23 A 3,3 0 1 1 278,23 3,3 0 1 1 284,23 Z" transform="matrix(1.331759,0,0,1.327869,-53.22381,-6.040984)" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#000000;fill-rule:evenodd" d="M 320.4594,22.00781 321.4594,21.00781 321.4594,25.00781 320.4594,25.00781 320.4594,22.00781 Z" id="path11169" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#000000;fill-rule:evenodd" d="M 319.4609,24.02096 321.4609,24.02096 321.4609,25.02096 318.4609,25.02096 319.4609,24.02096 Z" id="path11171" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="g3735" transform="matrix(0.76838,0,0,0.776759,4.51551,573.2782)" />
-<g id="distribute-graph-directed" inkscape:label="#directed_graph" transform="translate(295.9565,-461.8256)">
-<path id="path3750" d="M 815.4504,655.5878 819.7252,661.5878" style="fill:none;stroke:#000000;stroke-width:0.7856485;marker-end:url(#Arrow1Send)" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path3752" d="M 828.2748,655.7252 824.2748,661.4504" style="fill:none;stroke:#000000;stroke-width:0.7856485;marker-end:url(#Arrow1Send)" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="path3762" transform="matrix(0.375607,0,0,0.376774,698.833,582.9556)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="path3764" transform="matrix(0.375607,0,0,0.376774,690.833,572.9556)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="path3766" transform="matrix(0.375607,0,0,0.376774,706.833,572.9556)" cx="328" cy="215" r="5" />
-<circle style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0" id="path3787" transform="matrix(0.375607,0,0,0.376774,698.833,592.9556)" cx="328" cy="215" r="5" />
-<path id="path3789" d="M 822,666 822,670.626" style="fill:none;stroke:#000000;stroke-width:0.7856485;marker-end:url(#Arrow1Send)" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<g inkscape:label="#layers" transform="translate(-819.959,77.03912)" id="dialog-layers">
-<use xlink:href="#use8059" transform="translate(0,2.999974)" height="1250" width="1250" id="use8977" y="0" x="0" />
-<use xlink:href="#rect12856" x="0" y="0" id="use8055" width="1250" height="1250" />
-<use xlink:href="#path4802" transform="translate(-0.0409998,-2.993605)" x="0" y="0" id="use8059" width="1250" height="1250" />
-<use xlink:href="#path4802" transform="translate(-0.0410002,-5.993605)" x="0" y="0" id="use8061" width="1250" height="1250" />
-</g>
-<use xlink:href="#rect12856" transform="translate(-864.959,177.0391)" x="0" y="0" id="use9075" width="1250" height="1250" />
-<g id="edit-select-all-layers" inkscape:label="#selection_select_all_in_all_layers">
-<path id="path9031" d="M 55.5,213.5 56.5,213.5" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<use xlink:href="#path6078" x="0" y="0" id="use9033" transform="translate(-295.3149,-39.1388)" width="1250" height="1250" />
-<use xlink:href="#path6078" x="0" y="0" id="use9035" transform="translate(-292.3149,-39.1388)" width="1250" height="1250" />
-<use xlink:href="#path6078" x="0" y="0" id="use9037" transform="translate(-289.3149,-39.1388)" width="1250" height="1250" />
-<use xlink:href="#path6078" x="0" y="0" id="use9039" transform="translate(-286.3149,-39.1388)" width="1250" height="1250" />
-<use xlink:href="#path6078" x="0" y="0" id="use9041" transform="translate(-296.3149,-24.1388)" width="1250" height="1250" />
-<use xlink:href="#path6078" x="0" y="0" id="use9043" transform="translate(-293.3149,-24.1388)" width="1250" height="1250" />
-<use xlink:href="#path6078" x="0" y="0" id="use9045" transform="translate(-290.3149,-24.1388)" width="1250" height="1250" />
-<use xlink:href="#path6078" x="0" y="0" id="use9047" transform="translate(-287.3149,-24.1388)" width="1250" height="1250" />
-<use xlink:href="#path6078" x="0" y="0" id="use9049" transform="translate(-284.3149,-24.1388)" width="1250" height="1250" />
-<path id="path9051" d="M 55.5,215.5 55.5,216.5" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<use xlink:href="#path6100" x="0" y="0" id="use9053" transform="translate(-298.3149,-36.1388)" width="1250" height="1250" />
-<use xlink:href="#path6100" x="0" y="0" id="use9055" transform="translate(-298.3149,-33.1388)" width="1250" height="1250" />
-<use xlink:href="#path6100" x="0" y="0" id="use9057" transform="translate(-298.3149,-30.1388)" width="1250" height="1250" />
-<use xlink:href="#path6100" x="0" y="0" id="use9059" transform="translate(-298.3149,-27.1388)" width="1250" height="1250" />
-<use xlink:href="#path6100" x="0" y="0" id="use9061" transform="translate(-283.3149,-29.1388)" width="1250" height="1250" />
-<use xlink:href="#path6100" x="0" y="0" id="use9063" transform="translate(-283.3149,-32.1388)" width="1250" height="1250" />
-<use xlink:href="#path6100" x="0" y="0" id="use9065" transform="translate(-283.3149,-35.1388)" width="1250" height="1250" />
-<use xlink:href="#path6100" x="0" y="0" id="use9067" transform="translate(-283.3149,-38.1388)" width="1250" height="1250" />
-<use xlink:href="#path6100" x="0" y="0" id="use9069" transform="translate(-283.3149,-41.1388)" width="1250" height="1250" />
-<use xlink:href="#use8059" x="0" y="0" id="use9073" width="1250" height="1250" transform="matrix(0.752527,0,0,0.752527,-669.1784,91.05547)" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use9077" y="0" x="0" transform="matrix(0.752527,0,0,0.752527,-669.2092,85.8027)" />
-<use xlink:href="#path4802" height="1250" width="1250" id="use9079" y="0" x="0" transform="matrix(0.752527,0,0,0.752527,-669.2092,82.8027)" />
-</g>
-<g id="dialog-messages" transform="translate(45,111)" inkscape:label="#messages">
-<g id="g4239" transform="matrix(1,0,0,0.996869,-60.05696,-76.20668)">
-<rect style="color:#000000;fill:url(#linearGradient4249);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" id="rect4241" width="14.99917" height="11.99987" x="115.5577" y="338.8083" />
-<rect style="color:#000000;fill:url(#linearGradient4251);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" id="rect4243" width="14.99819" height="3.011261" x="115.5588" y="335.7579" />
-</g>
-<path sodipodi:nodetypes="cccccccc" id="rect5189" d="M 57.49993,263.4998 68.49997,263.4998 68.5,268.5 66.5,268.5 64.29651,271.4721 64,268.5 57.5,268.5 57.49993,263.4998 Z" style="color:#000000;fill:#d3d7cf;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999992;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-<g id="dialog-scripts" inkscape:label="#scripts">
-<g transform="matrix(1,0,0,0.996869,-15.05696,14.79332)" id="g4209">
-<rect y="338.8083" x="115.5577" height="11.99987" width="14.99917" id="rect4212" style="color:#000000;fill:url(#linearGradient4218);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect4214" style="color:#000000;fill:url(#linearGradient4220);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" />
-</g>
-<path style="fill:#000000" d="M 103,354 103,363 107,363 107,361 105,361 105,356 107,356 107,354 103,354 Z" id="path5166" sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccc" id="path5168" d="M 113,354 113,363 109,363 109,361 111,361 111,356 109,356 109,354 113,354 Z" style="fill:#000000" inkscape:connector-curvature="0" />
-</g>
-<g id="dialog-icon-preview" inkscape:label="#view_icon_preview">
-<g transform="matrix(1,0,0,0.996869,-15.05696,54.79332)" id="g5190">
-<rect y="338.8083" x="115.5577" height="11.99987" width="14.99917" id="rect5192" style="color:#000000;fill:url(#linearGradient5198);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect5194" style="color:#000000;fill:url(#linearGradient5200);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" />
-</g>
-<g inkscape:label="#visible" id="g5206" transform="matrix(0.823809,0,0,0.639827,-480.5562,242.2038)">
-<rect y="235.935" x="707.1481" height="18.61259" width="14.52438" id="rect5208" style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.83269" />
-<g transform="translate(0,-0.9)" id="g5210">
-<path sodipodi:nodetypes="ccscscccccccccc" d="M 718.3596,243.1986 C 719.3773,243.9521 720.2979,245.1034 721.151,246.7745 719.3176,250.3658 717.7991,251.8726 715.049,251.8726 712.299,251.8726 709.4688,249.9998 707.853,246.6911 709.6864,243.0997 713.2961,241.3385 716.1602,242.0819 M 711.7759,242.388 710.7364,238.3101 M 709.2185,244.2435 707.6685,241.7133 M 714.9275,241.9355 715.0423,237.208 M 717.4674,242.559 718.9969,238.7706 M 719.616,244.0748 721.2305,242.135" style="color:#000000;fill:url(#linearGradient5218);fill-rule:evenodd;stroke:#000000;stroke-width:1.1019087;stroke-linecap:round" id="path5212" inkscape:connector-curvature="0" />
-<ellipse transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)" id="path5214" style="color:#000000;fill:url(#linearGradient5220);fill-rule:evenodd;stroke-width:3.0247481" cx="63.5" cy="714" rx="3.5" ry="4" />
-<ellipse transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)" id="path5216" style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:3.0247481" cx="63.5" cy="714" rx="3.5" ry="4" />
-</g>
-</g>
-</g>
-<g id="edit-select-none" inkscape:label="#selection_deselect">
-<use xlink:href="#g6068" x="0" y="0" id="use5235" transform="translate(-298.3274,-16.15328)" width="1250" height="1250" />
-<use xlink:href="#g10421" x="0" y="0" id="use5237" transform="translate(-299.3571,-15.18254)" width="1250" height="1250" />
-<path id="path5239" d="M 55.5,236.5 56.5,236.5" style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path id="path5261" d="M 55.5,238.5 55.5,239.5" style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<use xlink:href="#path5239" x="0" y="0" id="use5306" transform="translate(3)" width="1250" height="1250" />
-<use xlink:href="#path5239" height="1250" width="1250" transform="translate(6)" id="use5309" y="0" x="0" />
-<use xlink:href="#path5239" height="1250" width="1250" transform="translate(9)" id="use5313" y="0" x="0" />
-<use xlink:href="#path5239" x="0" y="0" id="use5311" transform="translate(12)" width="1250" height="1250" />
-<use xlink:href="#path5261" x="0" y="0" id="use5318" transform="translate(0,3)" width="1250" height="1250" />
-<use xlink:href="#path5261" height="1250" width="1250" transform="translate(0,6)" id="use5321" y="0" x="0" />
-<use xlink:href="#path5261" height="1250" width="1250" transform="translate(0,9)" id="use5323" y="0" x="0" />
-<use xlink:href="#path5261" x="0" y="0" id="use5325" transform="translate(0,12)" width="1250" height="1250" />
-<use xlink:href="#path5239" height="1250" width="1250" transform="translate(2,15)" id="use5327" y="0" x="0" />
-<use xlink:href="#path5239" x="0" y="0" id="use5329" transform="translate(5,15)" width="1250" height="1250" />
-<use xlink:href="#path5239" x="0" y="0" id="use5331" transform="translate(8,15)" width="1250" height="1250" />
-<use xlink:href="#path5239" height="1250" width="1250" transform="translate(11,15)" id="use5333" y="0" x="0" />
-<use xlink:href="#path5239" x="0" y="0" id="use5335" transform="translate(14,15)" width="1250" height="1250" />
-<path style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square" d="M 70.5,236.5 70.5,237.5" id="path5337" inkscape:connector-curvature="0" />
-<use xlink:href="#path5261" height="1250" width="1250" transform="translate(15,1)" id="use5340" y="0" x="0" />
-<use xlink:href="#path5261" x="0" y="0" id="use5342" transform="translate(15,4)" width="1250" height="1250" />
-<use xlink:href="#path5261" x="0" y="0" id="use5344" transform="translate(15,7)" width="1250" height="1250" />
-<use xlink:href="#path5261" height="1250" width="1250" transform="translate(15,10)" id="use5346" y="0" x="0" />
-</g>
-<g id="edit-select-invert" transform="translate(0,-18)" inkscape:label="#selection_invert">
-<use xlink:href="#g10421" height="1250" width="1250" transform="matrix(1.112088,0,0,1.110911,-340.6366,-0.279561)" id="use5599" y="0" x="0" style="opacity:0.5" />
-<path style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square" d="M 59.5,281.5 60.5,281.5" id="path5378" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square" d="M 59.5,283.5 59.5,284.5" id="path5380" inkscape:connector-curvature="0" />
-<use xlink:href="#path5239" height="1250" width="1250" transform="translate(7,45)" id="use5382" y="0" x="0" />
-<use xlink:href="#path5239" x="0" y="0" id="use5384" transform="translate(10,45)" width="1250" height="1250" />
-<use xlink:href="#path5261" height="1250" width="1250" transform="translate(4,48)" id="use5390" y="0" x="0" />
-<use xlink:href="#path5261" x="0" y="0" id="use5392" transform="translate(4,51)" width="1250" height="1250" />
-<use xlink:href="#path5239" x="0" y="0" id="use5398" transform="translate(6,54)" width="1250" height="1250" />
-<use xlink:href="#path5239" height="1250" width="1250" transform="translate(9,54)" id="use5400" y="0" x="0" />
-<use xlink:href="#path5239" height="1250" width="1250" transform="translate(12,54)" id="use5402" y="0" x="0" />
-<use xlink:href="#path5261" x="0" y="0" id="use5410" transform="translate(13,43)" width="1250" height="1250" />
-<use xlink:href="#path5261" height="1250" width="1250" transform="translate(13,46)" id="use5412" y="0" x="0" />
-<use xlink:href="#path5261" height="1250" width="1250" transform="translate(13,49)" id="use5414" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 55.5,277.5 56.5,277.5" id="path5523" inkscape:connector-curvature="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-295.3149,24.86123)" id="use5525" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-292.3149,24.86123)" id="use5527" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-289.3149,24.86123)" id="use5529" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-286.3149,24.86123)" id="use5531" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-296.3149,39.86123)" id="use5533" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-293.3149,39.86123)" id="use5535" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-290.3149,39.86123)" id="use5537" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-287.3149,39.86123)" id="use5539" y="0" x="0" />
-<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-284.3149,39.86123)" id="use5541" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 55.5,279.5 55.5,280.5" id="path5543" inkscape:connector-curvature="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-298.3149,27.86123)" id="use5545" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-298.3149,30.86123)" id="use5547" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-298.3149,33.86123)" id="use5549" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-298.3149,36.86123)" id="use5551" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,34.86123)" id="use5553" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,31.86123)" id="use5555" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,28.86123)" id="use5557" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,25.86123)" id="use5560" y="0" x="0" />
-<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,22.86123)" id="use5563" y="0" x="0" />
-</g>
-<g id="dialog-tile-clones" transform="translate(-0.4999811,-21.5031)" inkscape:label="#edit_create_tiled_clones">
-<g id="g5745" transform="matrix(1,0,0,0.996869,-59.55772,-28.70668)">
-<rect style="color:#000000;fill:url(#linearGradient5944);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" id="rect5747" width="14.99917" height="11.99987" x="115.5577" y="338.8083" />
-<rect style="color:#000000;fill:url(#linearGradient5946);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" id="rect5749" width="14.99819" height="3.011261" x="115.5588" y="335.7579" />
-</g>
-<g transform="matrix(0.600005,0,0,0.599717,25.61153,139.5917)" id="g5803">
-<g id="g5704" transform="translate(50.5399,79.54113)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5948);stroke-width:0.9999996;stroke-linejoin:round;stroke-miterlimit:0" id="rect5706" width="8.996808" height="7.996297" x="5.4601" y="205.4404" />
-<rect style="color:#000000;fill:url(#linearGradient5950);fill-rule:evenodd;stroke:url(#linearGradient5952);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5708" width="6.994814" height="5.993324" x="6.46013" y="206.4404" />
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5954);stroke-width:0.9999994;stroke-linejoin:round;stroke-miterlimit:0" id="rect5711" width="11.99355" height="11.99031" x="8.477812" y="208.4686" />
-<rect style="color:#000000;fill:url(#linearGradient5956);fill-rule:evenodd;stroke:url(#linearGradient5958);stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5713" width="9.982319" height="9.971587" x="9.477811" y="209.4688" />
-</g>
-<rect y="293.0437" x="62.0523" height="4.001433" width="5.979028" id="rect5715" style="color:#000000;fill:url(#linearGradient5960);fill-rule:evenodd;stroke:url(#linearGradient5962);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 63.0113,291 C 63.0113,292 63.0113,292 63.0113,292" id="path5717" inkscape:connector-curvature="0" />
-<use xlink:href="#path6162" height="1250" width="1250" transform="translate(-293.8567,32.29639)" id="use5721" y="0" x="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" d="M 64.0113,290 66.0113,290" id="path5723" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1px" d="M 63,295.9816 63,293.9816 67,293.9816" id="path5725" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="edit-select-original" inkscape:label="#edit_select_original">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient6151);stroke-width:0.9999994;stroke-linejoin:round;stroke-miterlimit:0" id="rect5972" width="11.99355" height="11.99031" x="58.51771" y="309.5096" />
-<rect style="color:#000000;fill:url(#linearGradient6146);fill-rule:evenodd;stroke:url(#linearGradient6148);stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5974" width="9.982319" height="9.971587" x="59.51771" y="310.5099" />
-<rect style="color:#000000;fill:url(#linearGradient6122);fill-rule:evenodd;stroke:url(#linearGradient6125);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5976" width="5.979028" height="4.001433" x="61.5523" y="314.5437" />
-<path id="path5978" d="M 62.5113,312.5 C 62.5113,313.5 62.5113,313.5 62.5113,313.5" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<use xlink:href="#path6162" x="0" y="0" id="use5981" transform="translate(-294.3567,53.7964)" width="1250" height="1250" />
-<path id="path5983" d="M 63.5113,311.5 65.5113,311.5" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path id="path5985" d="M 62.5,317.4816 62.5,315.4816 66.5,315.4816" style="fill:none;stroke:#ffffff;stroke-width:1px" inkscape:connector-curvature="0" />
-<g id="g6161">
-<rect y="306.4815" x="55.5" height="7.996297" width="8.996808" id="rect5968" style="color:#000000;fill:none;stroke:url(#linearGradient6159);stroke-width:0.9999996;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="307.4814" x="56.50003" height="5.993324" width="6.994814" id="rect5970" style="color:#000000;fill:url(#linearGradient6154);fill-rule:evenodd;stroke:url(#linearGradient6156);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-</g>
-<g id="text-flow-into-frame" transform="translate(-15.00082,-30.00001)" inkscape:label="#flow_into_frame">
-<rect y="118.5" x="296.5008" height="15.00001" width="14.99917" id="rect6267" style="color:#000000;fill:url(#linearGradient6369);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round" />
-<g transform="matrix(0.5,0,0,0.5,149,70)" id="g6352">
-<path sodipodi:nodetypes="ccccccccccccccccc" d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z" style="fill:#000000;fill-rule:evenodd" id="path6342" inkscape:connector-curvature="0" />
-<path inkscape:label="#object_font" id="path6344" d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z" style="fill:url(#linearGradient6371);fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<path sodipodi:nodetypes="ccccccccccccccccc" id="path6358" d="M 308,126 308,129 310,129 310,130 309,130 309,131 308,131 308,132 307,132 307,131 306,131 306,130 305,130 305,129 307,129 307,126 308,126 Z" style="fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g id="text-unflow" inkscape:label="#unflow">
-<rect style="color:#000000;fill:none;stroke:#cc0000;stroke-width:1.0000001;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:1.0000001, 2.0000002" id="rect6375" width="14.99917" height="15.00001" x="281.5" y="110.5" />
-<g id="g6377" transform="matrix(0.5,0,0,0.5,133.9992,61.99999)">
-<path id="path6379" style="fill:#000000;fill-rule:evenodd" d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z" sodipodi:nodetypes="ccccccccccccccccc" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient6436);fill-rule:evenodd" d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z" id="path6381" inkscape:label="#object_font" inkscape:connector-curvature="0" />
-</g>
-<path sodipodi:nodetypes="ccccccccccccccccc" id="path6428" d="M 290,119 291,119 292.5,120.5 294,119 295,119 295,120 293.5,121.5 295,123 295,124 294,124 292.5,122.5 291,124 290,124 290,123 291.5,121.5 290,120 290,119 Z" style="fill:#c80000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g id="text-convert-to-regular" inkscape:label="#convert_to_text">
-<g transform="matrix(0.725945,0,0,0.725944,63.34671,33.14915)" id="g15109">
-<rect y="135.4703" x="300.4999" height="11.02972" width="11.02971" id="rect15111" style="color:#000000;fill:url(#linearGradient15119);fill-rule:evenodd;stroke:#000000;stroke-width:1.3775157;stroke-linecap:round;stroke-linejoin:round" />
-<g transform="matrix(0.5,0,0,0.5,153,87)" id="g15113">
-<path sodipodi:nodetypes="ccccccccccccccccc" d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z" style="fill:#000000;fill-rule:evenodd" id="path15115" inkscape:connector-curvature="0" />
-<path inkscape:label="#object_font" id="path15117" d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z" style="fill:url(#linearGradient15121);fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-</g>
-<rect ry="0" y="138.493" x="288.493" height="8.006958" width="8.006964" id="rect15125" style="color:#000000;fill:url(#linearGradient15141);fill-rule:evenodd;stroke:#3465a4;stroke-linecap:square;stroke-dasharray:1, 2" />
-<g transform="matrix(0.362972,0,0,0.362972,181.4162,103.3063)" id="g15127">
-<path sodipodi:nodetypes="ccccccccccccccccc" d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z" style="fill:#000000;fill-rule:evenodd" id="path15129" inkscape:connector-curvature="0" />
-<path inkscape:label="#object_font" id="path15131" d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z" style="fill:url(#linearGradient15135);fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="text-unkern" inkscape:label="#remove_manual_kerns">
-<path id="rect15156" d="M 281.5,153.5 296.4992,153.5 296.4992,168.5 281.5,168.5 281.5,153.5 Z" style="color:#000000;fill:url(#linearGradient15175);fill-rule:evenodd;stroke:#3465a4;stroke-width:1.0000001;stroke-linecap:square;stroke-dasharray:1.0000001, 2.0000002" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.0000001;stroke-linecap:square" d="M 283.5,153.9828 283.5,168 283.5,153.9828 Z" id="path15185" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccc" id="path15187" d="M 290.5,153.9828 290.5,168 290.5,153.9828 Z" style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.0000001;stroke-linecap:square" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.0000001;stroke-linecap:square" d="M 294.461,153.9828 294.461,168 294.461,153.9828 Z" id="path15189" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<g transform="matrix(0.5,0,0,0.5,133.9992,105)" id="g15195">
-<path sodipodi:nodetypes="ccccccccccccccccc" d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z" style="fill:#000000;fill-rule:evenodd" id="path15197" inkscape:connector-curvature="0" />
-<path inkscape:label="#object_font" id="path15199" d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z" style="fill:url(#linearGradient15213);fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<path style="fill:#c80000;fill-rule:evenodd" d="M 290,162 291,162 292.5,163.5 294,162 295,162 295,163 293.5,164.5 295,166 295,167 294,167 292.5,165.5 291,167 290,167 290,166 291.5,164.5 290,163 290,162 Z" id="path15201" sodipodi:nodetypes="ccccccccccccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="dialog-memory" inkscape:label="#about_memory">
-<rect style="color:#000000;fill:url(#linearGradient4689);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round" id="rect4657" width="14.99917" height="15.00001" x="331.5008" y="86.5" />
-<rect y="94" x="332" height="7" width="4.666667" id="rect4691" style="color:#000000;fill:url(#linearGradient4703);fill-rule:evenodd;stroke-width:1.0000007" />
-<rect style="color:#000000;fill:url(#linearGradient4707);fill-rule:evenodd;stroke-width:1.0000007" id="rect4705" width="4.666667" height="14.00001" x="336.6667" y="86.99999" />
-<rect y="91" x="341.3333" height="10" width="4.666667" id="rect4715" style="color:#000000;fill:url(#linearGradient4718);fill-rule:evenodd;stroke-width:1.0000007" />
-</g>
-<g id="dialog-input-devices" inkscape:label="#input_devices">
-<g transform="matrix(1,0,0,0.996869,-105.0577,-206.2098)" id="g5739">
-<rect y="338.8083" x="115.5577" height="11.99987" width="14.99917" id="rect5741" style="color:#000000;fill:url(#linearGradient5750);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect5744" style="color:#000000;fill:url(#linearGradient5752);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" />
-</g>
-<g transform="matrix(1,0,0,1.066667,-679.5,-193.0001)" id="g5768">
-<rect y="303.75" x="691.5" height="10.31249" width="11" id="rect5771" style="fill:none" />
-<path sodipodi:nodetypes="ccccc" d="M 696.7189,305.998 696,305.5938 692,313.5938 702,313.5938 702,312.6563" style="fill:none;stroke:url(#linearGradient5777);stroke-width:0.9682457;stroke-linecap:round;stroke-linejoin:round" id="path5773" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5775" d="M 694.5,309.375 C 696,309.8438 697.5,311.7188 697,313.5938" style="fill:none;stroke:url(#linearGradient5779);stroke-width:0.9682457;stroke-linecap:round" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="document-metadata" inkscape:label="#document_metadata">
-<g id="g5714" transform="matrix(1,0,0,0.996869,-105.057,-226.2067)">
-<rect style="color:#000000;fill:url(#linearGradient5728);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" id="rect5716" width="14.99917" height="11.99987" x="115.5577" y="338.8083" />
-<rect style="color:#000000;fill:url(#linearGradient5730);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" id="rect5718" width="14.99819" height="3.011261" x="115.5588" y="335.7579" />
-</g>
-<path style="color:#000000;fill:url(#linearGradient5844);fill-rule:evenodd;stroke:url(#linearGradient5846);stroke-width:1.0000011;stroke-linecap:square;stroke-linejoin:round" d="M 12.5,122.5 12.5,113.5 19.5,113.5 23.5,117.5 23.5,122.5" id="path5826" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient5841);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" d="M 19.5,113.5 23.5,117.5 19.5,117.5 19.5,113.5 Z" id="path5829" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square" d="M 22.5,122.5 22.5,118.5" id="path5831" inkscape:connector-curvature="0" />
-</g>
-<g id="color-fill" transform="matrix(0.78125,0,0,0.78125,451.845,442.25)" inkscape:label="#g3340">
-<path id="path30990" d="M 13.0063,24.4482 30.4465,15.9086 C 31.4092,15.4372 31.0551,10.9526 28.9338,6.62049 26.8126,2.28834 23.7236,-0.25897 22.7609,0.212415 L 5.32066,8.75199" style="fill:url(#linearGradient3352);stroke:#000000;stroke-width:1.28" sodipodi:nodetypes="ccscc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" d="M 459.326,449.367 469.844,444.248 C 471.078,444.895 471.386,445.263 472.077,446.761" id="path4825" sodipodi:nodetypes="ccc" transform="matrix(1.28,0,0,1.28,-578.362,-566.08)" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1.28" d="M 15.3452,14.3489 C 13.4479,-3.0346 8.35128,-2.74598 9.06756,6.76043" id="path31979" sodipodi:nodetypes="cs" inkscape:connector-curvature="0" />
-<circle style="fill:#c8c8c8;stroke:#2e3436;stroke-width:1.138871;stroke-linejoin:round" id="path31981" transform="matrix(1.12392,0,0,1.12392,0.83338,-2.58525)" cx="12.875" cy="14.875" r="1.3125" />
-<path style="color:#000000;fill:url(#radialGradient4365);stroke:#000000;stroke-width:1.000001" d="M 456.281,449.062 C 456.213,449.07 456.154,449.096 456.094,449.125 455.133,449.59 455.637,452.694 457.25,456.062 458.238,458.125 459.43,459.799 460.406,460.688 460.405,460.698 460.407,460.708 460.406,460.719 460.337,461.549 459.647,462.428 459.378,463.219 449.286,463.539 450.416,467.696 460.031,467.742 478.573,467.83 478.246,463.266 462.875,463.188 462.602,462.532 462.317,461.864 462.094,461.188 462.821,460.45 462.262,457.533 460.75,454.375 459.238,451.217 457.308,448.951 456.281,449.062 Z" transform="matrix(1.28,0,0,1.28,-578.362,-566.08)" id="path22088" sodipodi:nodetypes="csscscsccsc" inkscape:connector-curvature="0" />
-</g>
-<g transform="matrix(0.941445,0,0,1.002693,-125.0319,-1.597622)" id="draw-trace-background" inkscape:label="#g9319">
-<rect style="fill:url(#linearGradient9331)" id="rect9329" width="11.68417" height="10.97046" x="-703.2083" y="303.7795" transform="scale(-1,1)" />
-<rect y="303.7634" x="691.524" height="10.9571" width="11.684" id="rect9321" style="fill:none" />
-<path sodipodi:nodetypes="ccccc" id="path9323" d="M 691.5241,314.2513 691.5301,314.75 703.2083,314.7339 703.2086,310.7607 C 700.3774,312.5369 696.3043,314.2513 691.5244,314.2513 Z" style="fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<g id="rectangle-make-corners-sharp" inkscape:label="#squared_corner">
-<rect y="120" x="500" height="16" width="16" id="rect9834" style="opacity:0.33213;fill:none" />
-<g id="g11004">
-<path sodipodi:nodetypes="csccc" id="path8457" d="M 504,122 C 503.9062,124.5 508.2036,125.3952 509,126 510,126.7593 511.5,130.0937 514,130 L 514,122 504,122 Z" style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke-width:2" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1;stroke-dashoffset:0.5" d="M 500,122 514,122 514,135" id="rect8453" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccc" id="path8462" d="M 514,130 514,122 504,122" style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:1.5" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="draw-ellipse" inkscape:label="#g8245">
-<rect y="145.0391" x="450" height="24" width="24" id="rect3417" style="color:#000000;fill:none;stroke-width:1.0000001" />
-<circle transform="matrix(0.795464,0,0,0.798577,364.999,27.71345)" id="draw_arc1" style="color:#000000;fill:none;stroke:url(#linearGradient6574);stroke-width:1.2546769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" cx="122" cy="162" r="12" />
-<circle transform="matrix(0.707159,0,0,0.70714,375.7721,42.48712)" id="path5905" style="color:#000000;fill:url(#linearGradient5907);fill-rule:evenodd;stroke:url(#linearGradient5915);stroke-width:1.4141293;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" cx="122" cy="162" r="12" />
-<rect style="color:#000000;fill:none;stroke-width:1.0000001" id="rect4336" width="24" height="24" x="450" y="145" />
-<circle style="color:#000000;fill:none;stroke:url(#linearGradient5389);stroke-width:1.2546769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4338" transform="matrix(0.795464,0,0,0.798577,364.999,27.67435)" cx="122" cy="162" r="12" />
-</g>
-<g id="draw-ellipse-whole" style="fill:none" inkscape:label="#reset_circle">
-<rect y="150" x="500" height="16" width="16" id="rect4298" />
-<circle style="fill:#b0c5da" id="path4888" cx="508" cy="158" r="6" />
-<path id="path5285" style="color:#000000;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1" d="M 514,158 508,158 511,153" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<circle id="path5292" style="stroke:#0000ff;stroke-miterlimit:1.5" cx="508" cy="158" r="6" />
-</g>
-<g style="fill:none" id="draw-ellipse-segment" transform="translate(20)" inkscape:label="#circle_closed_arc">
-<rect id="rect4316" width="16" height="16" x="500" y="150" />
-<path d="M 514,158 A 6,6 0 0 1 509.0419,163.9088 6,6 0 0 1 502.3618,160.0521 6,6 0 0 1 505,152.8038 L 508,158 Z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path4318" style="fill:#b0c5da;stroke:#0000ff;stroke-miterlimit:1.5" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="4.18879" />
-</g>
-<g transform="translate(40)" id="draw-ellipse-arc" style="fill:none" inkscape:label="#circle_open_arc">
-<rect y="150" x="500" height="16" width="16" id="rect4326" />
-<path sodipodi:end="4.18879" sodipodi:start="0" sodipodi:type="arc" style="fill:#b0c5da;stroke:#0000ff;stroke-miterlimit:1.5" id="path4328" sodipodi:cx="508" sodipodi:cy="158" sodipodi:rx="6" sodipodi:ry="6" d="M 514,158 A 6,6 0 0 1 509.0419,163.9088 6,6 0 0 1 502.3618,160.0521 6,6 0 0 1 505,152.8038" sodipodi:open="true" />
-</g>
-<g id="draw-cuboid" inkscape:label="#draw_3dbox">
-<path style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0492821px;stroke-linejoin:round" d="M 604.0245,114.9402 592.1873,119.5308 591.9578,132.5813 600.8438,138.7786 612.1565,135.1716 612.3859,122.613 604.0245,114.9402 Z" id="path5192" inkscape:connector-curvature="0" />
-<rect y="115" x="590" height="24" width="24" id="rect4344" style="color:#000000;fill:none;stroke-width:1.0000001" />
-<path d="M 592.431,132.3014 603.7065,128.3707 603.9313,115.491 592.6477,119.8876 592.431,132.3014 Z" style="fill:url(#linearGradient5190);fill-rule:evenodd" id="path4628" inkscape:box3dface="XYfront" inkscape:connector-curvature="0" />
-<path d="M 592.431,132.3014 603.7065,128.3707 611.6821,134.7794 600.9065,138.2261 592.431,132.3014 Z" style="fill:url(#linearGradient5187);fill-rule:evenodd" id="path4630" inkscape:box3dface="XZtop" inkscape:connector-curvature="0" />
-<path d="M 603.7065,128.3707 611.6821,134.7794 611.891,122.8084 603.9313,115.491 603.7065,128.3707 Z" style="fill:url(#linearGradient5184);fill-rule:evenodd" id="path4633" inkscape:box3dface="YZleft" inkscape:connector-curvature="0" />
-<path id="path5202" d="M 603.8375,116.1429 593.1947,120.2702 592.9884,132.004 600.9777,137.5758 611.149,134.333 611.3554,123.0416 603.8375,116.1429 Z" style="opacity:0.5;fill:none;stroke:#ffffff;stroke-width:1.0657545;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-<g id="perspective-parallel" transform="matrix(1,0,0,1.090725,-0.3693,-12.92106)" inkscape:label="#toggle_vp_x">
-<path sodipodi:nodetypes="cc" d="M 646.3693,119.7089 646.3693,140.2013" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round" id="path4997" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" d="M 653.3817,119.7089 653.3817,140.2013" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round" id="path4979" inkscape:connector-curvature="0" />
-</g>
-<g id="toggle_vp_y" transform="matrix(1,0,0,1.090725,39.6307,-12.92106)">
-<path sodipodi:nodetypes="cc" d="M 646.3693,119.7089 646.3693,140.2013" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round" id="path4987" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" d="M 653.3817,119.7089 653.3817,140.2013" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round" id="path4989" inkscape:connector-curvature="0" />
-</g>
-<g id="toggle_vp_z" transform="matrix(1,0,0,1.090725,79.6307,-12.92106)">
-<path sodipodi:nodetypes="cc" d="M 646.3693,119.7089 646.3693,140.2013" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round" id="path4993" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" d="M 653.3817,119.7089 653.3817,140.2013" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round" id="path4995" inkscape:connector-curvature="0" />
-</g>
-<g id="3dbox_three_handles" transform="translate(0.225708,-0.461998)">
-<rect y="117.462" x="753.7743" height="7.406888" width="7.406888" id="rect6683" style="fill:#000000" />
-<rect style="fill:#000000" id="rect7268" width="7.406888" height="7.406888" x="759.7743" y="131.462" />
-<rect y="119.462" x="767.7743" height="7.406888" width="7.406888" id="rect7270" style="fill:#000000" />
-</g>
-<g id="3dbox_four_handles" transform="translate(0.225708,0.538002)">
-<rect style="fill:#000000" id="rect7277" width="7.406888" height="7.406888" x="793.7743" y="117.462" />
-<rect y="117.462" x="807.7743" height="7.406888" width="7.406888" id="rect7279" style="fill:#000000" />
-<rect style="fill:#000000" id="rect7281" width="7.406888" height="7.406888" x="807.7743" y="131.462" />
-<rect y="131.462" x="793.7743" height="7.406888" width="7.406888" id="rect7283" style="fill:#000000" />
-</g>
-<g transform="matrix(0.9610923,0,0,0.9805424,517.7012,-120.9824)" id="tool-tweak" inkscape:label="#g4398">
-<rect style="color:#000000;fill:none" id="rect4400" width="24.97159" height="24.47625" x="-110.5099" y="180.0235" />
-<path style="fill:url(#linearGradient4415);stroke:#000000;stroke-width:0.9185374" d="M -109.5169,193.9456 C -101.3004,195.6369 -104.3945,186.0956 -98.80037,182.3615 -97.07122,181.2073 -92.56485,181.5557 -91.19654,184.6577 -90.17791,186.9669 -90.62355,188.4369 -92.0774,187.9956 -93.60686,187.5313 -93.32031,185.6852 -95.89519,186.1826 -97.19769,186.4342 -97.97739,188.526 -97.00432,190.8739 -95.90656,193.5227 -93.65232,195.2966 -88.05792,193.9456 L -88.05792,203.5432 -109.5169,203.5432 -109.5169,193.9456 Z" id="rect4412" sodipodi:nodetypes="cssssscccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:0.9185374" d="M -96.8577,182.6385 C -99.56837,183.1905 -100.8754,186.0548 -101.7054,188.5422 -102.4313,190.8017 -103.119,193.5659 -105.4493,194.5527 -106.46,194.9409 -108.4105,195.0975 -109.4854,194.9353 L -109.5145,203.4936 -88.0312,203.5536 -88.0312,194.9954 C -90.81344,195.4233 -93.95419,195.3603 -96.24656,193.5257 -98.26239,191.8375 -98.92499,188.4343 -97.46883,186.1775 -96.01814,184.4935 -93.0031,185.1955 -92.05592,187.0774 -91.27207,187.4754 -91.52566,186.3231 -91.65649,185.8702 -92.28666,183.7115 -94.67857,182.3941 -96.8577,182.6385 Z" id="path4416" sodipodi:nodetypes="ccccccccccsc" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(436.9762,-119.9465)" id="path-tweak-push" inkscape:label="#g4416">
-<rect style="color:#000000;fill:none" id="rect4418" width="16" height="16" x="-45" y="175" />
-<path style="color:#000000;fill:url(#linearGradient4428);stroke-width:0.6138721" d="M -44.25871,182.3053 C -41.14192,182.3454 -41.65281,178.8302 -37.00556,178.8744 -32.35831,178.9187 -33.7846,182.4061 -29.84463,182.3053 L -29.84463,186.3802 C -33.3901,186.3802 -34.1418,182.6887 -37.01137,182.6849 -40.19964,182.6809 -40.7966,186.3802 -44.25871,186.3802 L -44.25871,182.3053 Z" id="path4426" sodipodi:nodetypes="czccscc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cscczc" id="path4444" d="M -29.84463,186.3802 C -33.3901,186.3802 -34.1418,182.6887 -37.01137,182.6849 -40.19964,182.6809 -40.7966,186.3802 -44.25871,186.3802 M -44.25871,182.3053 C -41.14192,182.3454 -41.65281,178.8302 -37.00556,178.8744 -32.35831,178.9187 -33.7846,182.4061 -29.84463,182.3053" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721" inkscape:connector-curvature="0" />
-</g>
-<g inkscape:label="#g4416" id="path-tweak-grow" transform="translate(416.9762,-119.9465)">
-<rect y="175" x="-45" height="16" width="16" id="rect4432" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="czccscc" id="path4435" d="M -44.25871,182.0349 C -41.14192,182.075 -40.49264,178.9233 -37.00556,178.9565 -33.51848,178.9896 -33.7846,182.1357 -29.84463,182.0349 L -29.84463,186.1097 C -33.3901,186.1097 -34.1418,188.966 -37.01137,188.9623 -40.19964,188.9583 -40.7966,186.1097 -44.25871,186.1097 L -44.25871,182.0349 Z" style="color:#000000;fill:url(#linearGradient4437);stroke-width:0.6138721" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721" d="M -29.84463,186.1097 C -33.3901,186.1097 -34.1418,188.966 -37.01137,188.9623 -40.19964,188.9583 -40.7966,186.1097 -44.25871,186.1097 M -44.25871,182.0349 C -41.14192,182.075 -40.49264,178.9233 -37.00556,178.9565 -33.51848,178.9896 -33.7846,182.1357 -29.84463,182.0349" id="path4442" sodipodi:nodetypes="cscczc" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(396.9762,-119.9465)" id="path-tweak-shrink" inkscape:label="#g4416">
-<rect style="color:#000000;fill:none" id="rect4443" width="16" height="16" x="-45" y="175" />
-<path style="color:#000000;fill:url(#linearGradient4447);stroke-width:0.6138721" d="M -29.84463,186.6535 C -33.3901,186.6535 -34.51329,184.3364 -37.01137,184.3331 -39.50944,184.3301 -40.7966,186.6535 -44.25871,186.6535 L -44.25871,184.0994 -44.25871,181.3493 C -41.14192,181.3894 -40.04563,183.5265 -37.00556,183.5555 -33.96549,183.5844 -33.7846,181.4501 -29.84463,181.3493" id="path4445" sodipodi:nodetypes="czccczc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="czcczc" id="path4440" d="M -44.25871,181.3493 C -41.14192,181.3894 -40.04563,183.2325 -37.00556,183.2614 -33.96549,183.2903 -33.7846,181.4501 -29.84463,181.3493 M -29.84463,186.6535 C -33.3901,186.6535 -34.51329,184.5045 -37.01137,184.5012 -39.50944,184.4982 -40.7966,186.6535 -44.25871,186.6535" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(416.9762,-139.9465)" id="path-tweak-roughen" inkscape:label="#g4416">
-<rect style="color:#000000;fill:none" id="rect4446" width="16" height="16" x="-45" y="175" />
-<path style="color:#000000;fill:url(#linearGradient4453);stroke-width:0.6138721" d="M -44.25871,180.0349 -42.17829,181.5673 -41.23529,179.6783 -40.30299,181.2751 -37.44512,178.1377 -35.9,180.3197 -34.80075,179.1774 -32.13533,181.6011 -29.84463,179.9331 -29.84463,183.0536 -29.84463,184.0723 -29.84463,185.091 -29.84463,186.1097 -32.07052,187.013 -34.08315,186.3631 -32.00367,188.7335 -37.10857,186.5805 -40.25586,187.5167 -39.27382,184.4013 -42.11409,187.2305 -44.25871,186.1097 -44.25871,185.091 -44.25871,184.0723 -44.25871,183.0536 -44.25871,180.0349 Z" id="path4448" sodipodi:nodetypes="ccccccccccccccccccccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccccccccccccc" id="path4576" d="M -29.84463,186.1097 -32.07052,187.013 -34.08315,186.3631 -32.00367,188.7335 -37.10857,186.5805 -40.25586,187.5167 -39.27382,184.4013 -42.11409,187.2305 -44.25871,186.1097 M -44.25871,180.0349 -42.17829,181.5673 -41.23529,179.6783 -40.30299,181.2751 -37.44512,178.1377 -35.9,180.3197 -34.80075,179.1774 -32.13533,181.6011 -29.84463,179.9331" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721" inkscape:connector-curvature="0" />
-</g>
-<g id="document-import-ocal" inkscape:label="#ocal_import" transform="translate(-3.450267,2.75434)">
-<use xlink:href="#g5113" height="1250" width="1250" transform="translate(2.639605,16.28531)" id="use4598" y="0" x="0" />
-<use xlink:href="#path4685" transform="translate(14.58777,-33.04874)" x="0" y="0" id="use5366-8" width="1250" height="1250" />
-</g>
-<g id="document-export-ocal" inkscape:label="#ocal_export">
-<g id="g5113" transform="matrix(1.121863,0,0,0.8467469,-1.696936,21.3021)">
-<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.792642" transform="matrix(0.8657253,-0.5005195,0.214431,0.9767391,0,0)" rx="3.259387" y="145.0049" x="-23.34781" height="11.80559" width="8.207668" id="rect5675" style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2102582" />
-<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.217725" transform="matrix(0.8657253,-0.5005195,0.214431,0.9767391,0,0)" rx="2.588382" y="146.288" x="-22.55011" height="9.375189" width="6.517971" id="rect5679" style="fill:#bf0000;fill-rule:evenodd;stroke-width:0.7941308pt" />
-<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="3.032427" rx="3.851753" y="150.4802" x="14.50112" height="12.70694" width="7.830238" id="rect5668" style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2130624" />
-<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.408143" rx="3.058795" y="151.8613" x="15.26213" height="10.09097" width="6.218232" id="rect5670" style="fill:#ff7f00;fill-rule:evenodd;stroke-width:0.7941308pt" />
-<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.946012" transform="matrix(0.9158505,0.4015194,-0.1642153,0.9864245,0,0)" rx="3.542479" y="134.1788" x="44.10332" height="12.43601" width="8.253802" id="rect5662" style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2164044" />
-<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.339518" transform="matrix(0.9158505,0.4015194,-0.1642153,0.9864245,0,0)" rx="2.813192" y="135.5302" x="44.90545" height="9.875807" width="6.554592" id="rect5664" style="fill:#f3e533;fill-rule:evenodd;stroke-width:0.7941308pt" />
-</g>
-<use xlink:href="#path4685" transform="translate(6.008357,-49.39594)" x="0" y="0" id="use5366" width="1250" height="1250" />
-</g>
-<g inkscape:label="#g4416" id="path-tweak-attract" transform="translate(436.9762,-79.9465)">
-<rect y="175" x="-45" height="16" width="16" id="rect4494" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="czccscc" id="path4496" d="M -44.25871,185.7795 C -41.14192,185.805 -41.65281,183.5615 -37.00556,183.5898 -32.35831,183.618 -33.7846,185.8438 -29.84463,185.7795 L -29.84463,188.3802 C -33.3901,188.3802 -34.1418,184.9545 -37.01137,184.9521 -40.19964,184.9491 -40.7966,188.3802 -44.25871,188.3802 L -44.25871,185.7795 Z" style="color:#000000;fill:url(#linearGradient4501);stroke-width:0.6138721" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721" d="M -29.84463,188.3802 C -33.3901,188.3802 -34.1418,185.0054 -37.01137,185.003 -40.19964,185 -40.7966,188.3802 -44.25871,188.3802 M -44.25871,185.7795 C -41.14192,185.805 -41.65281,183.5615 -37.00556,183.5898 -32.35831,183.618 -33.7846,185.8438 -29.84463,185.7795" id="path4499" sodipodi:nodetypes="cscczc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient4507);stroke-width:0.6138721" d="M -44.25871,180.1902 C -41.14192,180.1646 -41.65281,182.4081 -37.00556,182.3799 -32.35831,182.3517 -33.7846,180.1259 -29.84463,180.1902 L -29.84463,177.5895 C -33.3901,177.5895 -34.1418,180.7605 -37.01137,180.7629 -40.19964,180.7659 -40.7966,177.5895 -44.25871,177.5895 L -44.25871,180.1902 Z" id="path4503" sodipodi:nodetypes="czccscc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cscczc" id="path4505" d="M -29.84463,177.5895 C -33.3901,177.5895 -34.1418,180.8624 -37.01137,180.8648 -40.19964,180.8678 -40.7966,177.5895 -44.25871,177.5895 M -44.25871,180.1902 C -41.14192,180.1646 -41.65281,182.4081 -37.00556,182.3799 -32.35831,182.3517 -33.7846,180.1259 -29.84463,180.1902" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(416.9762,-79.9465)" id="path-tweak-repel" inkscape:label="#g4416">
-<rect style="color:#000000;fill:none" id="rect4511" width="16" height="16" x="-45" y="175" />
-<path style="color:#000000;fill:url(#linearGradient4521);stroke-width:0.6138721" d="M -44.25871,186.1902 C -41.14192,186.1646 -41.65281,188.4081 -37.00556,188.3799 -32.35831,188.3517 -33.7846,186.1259 -29.84463,186.1902 L -29.84463,183.5895 C -33.3901,183.5895 -34.1418,186.7096 -37.01137,186.712 -40.19964,186.715 -40.7966,183.5895 -44.25871,183.5895 L -44.25871,186.1902 Z" id="path4513" sodipodi:nodetypes="czccscc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cscczc" id="path4515" d="M -29.84463,183.5895 C -33.3901,183.5895 -34.1418,186.7605 -37.01137,186.7629 -40.19964,186.7659 -40.7966,183.5895 -44.25871,183.5895 M -44.25871,186.1902 C -41.14192,186.1646 -41.65281,188.4081 -37.00556,188.3799 -32.35831,188.3517 -33.7846,186.1259 -29.84463,186.1902" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="czccscc" id="path4517" d="M -44.25871,179.7795 C -41.14192,179.805 -41.65281,177.5615 -37.00556,177.5898 -32.35831,177.618 -33.7846,179.8438 -29.84463,179.7795 L -29.84463,182.3802 C -33.3901,182.3802 -34.1418,179.2601 -37.01137,179.2577 -40.19964,179.2547 -40.7966,182.3802 -44.25871,182.3802 L -44.25871,179.7795 Z" style="color:#000000;fill:url(#linearGradient4523);stroke-width:0.6138721" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721" d="M -29.84463,182.3802 C -33.3901,182.3802 -34.1418,179.2466 -37.01137,179.2442 -40.19964,179.2412 -40.7966,182.3802 -44.25871,182.3802 M -44.25871,179.7795 C -41.14192,179.805 -41.65281,177.5615 -37.00556,177.5898 -32.35831,177.618 -33.7846,179.8438 -29.84463,179.7795" id="path4519" sodipodi:nodetypes="cscczc" inkscape:connector-curvature="0" />
-</g>
-<g inkscape:label="#g4416" id="object-tweak-paint" transform="translate(416.9762,-59.9465)">
-<rect y="175" x="-45" height="16" width="16" id="rect4527" style="fill:none" />
-<rect style="fill:#cccccc" id="rect4542" width="4.069275" height="4.069275" x="-42.99393" y="176.8167" />
-<rect y="176.8167" x="34.85538" height="4.069275" width="4.069275" id="rect4544" style="fill:#999999" transform="scale(-1,1)" />
-<rect style="fill:#cccccc" id="rect4547" width="4.069275" height="4.069275" x="-34.85538" y="176.8167" />
-<rect y="-184.9553" x="-42.99393" height="4.069275" width="4.069275" id="rect4549" style="fill:#999999" transform="scale(1,-1)" />
-<rect transform="scale(-1)" style="fill:#000000" id="rect4551" width="4.069275" height="4.069275" x="34.85538" y="-184.9553" />
-<rect y="-184.9553" x="-34.85538" height="4.069275" width="4.069275" id="rect4553" style="fill:#999999" transform="scale(1,-1)" />
-<rect style="fill:#cccccc" id="rect4555" width="4.069275" height="4.069275" x="-42.99393" y="184.9553" />
-<rect y="184.9553" x="34.85538" height="4.069275" width="4.069275" id="rect4557" style="fill:#999999" transform="scale(-1,1)" />
-<rect style="fill:#cccccc" id="rect4559" width="4.069275" height="4.069275" x="-34.85538" y="184.9553" />
-</g>
-<g transform="translate(436.9762,-59.9465)" id="object-tweak-jitter-color" inkscape:label="#g4416">
-<rect style="color:#000000;fill:none" id="rect4563" width="16" height="16" x="-45" y="175" />
-<rect y="176.8852" x="-43.13489" height="4.069275" width="4.069275" id="rect4565" style="fill:#ffffff" />
-<rect style="fill:#4d4d4d" id="rect4567" width="4.069275" height="4.069275" x="-43.13489" y="185.0237" />
-<rect y="-189.093" x="30.92706" height="4.069275" width="4.069275" id="rect4569" style="fill:#808080" transform="scale(-1)" />
-<rect style="fill:#e6e6e6" id="rect4571" width="4.069275" height="4.069275" x="-34.99632" y="-180.9545" transform="scale(1,-1)" />
-<rect y="-185.0237" x="34.99634" height="4.069275" width="4.069275" id="rect4573" style="fill:#cccccc" transform="scale(-1)" />
-<rect transform="scale(1,-1)" style="fill:#999999" id="rect4575" width="4.069275" height="4.069275" x="-39.06561" y="-180.9545" />
-<rect y="-185.0237" x="30.92705" height="4.069275" width="4.069275" id="rect4577" style="fill:#ffffff" transform="scale(-1)" />
-<rect style="fill:#b3b3b3" id="rect4579" width="4.069275" height="4.069275" x="-39.06561" y="185.0237" />
-<rect y="180.9545" x="-43.13489" height="4.069275" width="4.069275" id="rect4581" style="fill:#b3b3b3" />
-</g>
-<g id="path-effect-parameter-next" inkscape:label="#g10193" transform="translate(15.99998)">
-<path style="fill:#ffffff;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linejoin:round" d="M 761.9292,60.21135 C 760.6058,64.7918 762.5042,66.77982 762.7922,66.84248 763.4166,66.97833 766.4861,66.03134 767.048,65.34354 766.3456,64.57674 765.5236,64.09613 764.4271,63.34699 763.4713,62.69399 762.2584,61.8005 761.9292,60.21135 Z M 764.4579,59.01822 C 764.2074,59.81446 764.3042,60.66302 764.6999,61.36215 765.0351,61.9564 765.5544,62.39131 766.1623,62.67942 766.6943,62.92592 767.2889,63.04646 767.9134,63.0393 766.4463,62.15387 765.578,61.466 765.0109,60.58979 764.4906,59.78593 764.4536,59.11525 764.4579,59.01822 Z M 767.2562,57.98462 C 766.2903,60.03083 767.6727,60.75869 768.9902,61.0957 767.6785,60.07557 767.0798,58.11396 767.2562,57.98462 Z M 770.782,55.78203 C 770.198,56.11815 770.2734,57.16764 770.004,57.54492 769.4825,58.27512 768.9439,58.39669 769.2239,58.98036 769.5972,59.75861 769.7335,59.35699 770.7399,59.45409 771.0337,59.48243 772.0034,60.42201 772.2901,60.37037 771.3067,58.82615 770.7452,57.40036 770.782,55.78203 Z" id="path9858" inkscape:path-effect="#path-effect9860" inkscape:original-d="M 762.7922,66.84248 C 763.6022,63.11924 765.4886,60.07306 771.5388,58.08446" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path9256" d="M 762.5,68.5 C 763.3058,62.01571 768.0747,58.5078 773.5,57.5" style="fill:none;stroke:#008000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect style="fill:none" id="rect9258" width="16" height="16" x="759.9762" y="55.0535" />
-<use xlink:href="#g6043" height="1250" width="1250" id="use9872" y="0" x="0" transform="translate(760,-189)" />
-<use xlink:href="#rect10675" transform="translate(805.0318,-128.6983)" x="0" y="0" id="use10185" width="1250" height="1250" />
-<use xlink:href="#rect10675" height="1250" width="1250" id="use10187" y="0" x="0" transform="translate(793.0318,-116.6983)" />
-</g>
-<g id="grid-rectangular" transform="translate(-94,-28)" inkscape:label="#grid_xy">
-<path sodipodi:nodetypes="cc" id="path5235" d="M 305.5,421.5 305.5,436.5" style="fill:none;stroke:#0000ff;stroke-linecap:round" inkscape:connector-curvature="0" />
-<use xlink:href="#path5235" x="0" y="0" id="use5238" transform="translate(4)" width="1250" height="1250" style="stroke-linecap:round" />
-<use xlink:href="#path5235" height="1250" width="1250" transform="translate(8)" id="use5244" y="0" x="0" style="stroke-linecap:round" />
-<use xlink:href="#path5235" x="0" y="0" id="use5246" transform="translate(12)" width="1250" height="1250" style="stroke-linecap:round" />
-<path style="fill:none;stroke:#0000ff;stroke-linecap:round" d="M 319.5,423.5 304.5,423.5" id="path5252" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<use xlink:href="#path5252" x="0" y="0" id="use5254" transform="translate(0,4)" width="1250" height="1250" style="stroke-linecap:round" />
-<use xlink:href="#path5252" height="1250" width="1250" transform="translate(0,8)" id="use5257" y="0" x="0" style="stroke-linecap:round" />
-<use xlink:href="#path5252" x="0" y="0" id="use5259" transform="translate(0,12)" width="1250" height="1250" style="stroke-linecap:round" />
-</g>
-<g id="grid-axonometric" inkscape:label="#grid_axonom" transform="translate(-94,-28)">
-<path style="fill:none;stroke:#0000ff;stroke-linecap:round" d="M 332.5,421.5 332.5,436.5" id="path4674" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5266" d="M 342.5,421.5 342.5,436.5" style="fill:none;stroke:#0000ff;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#0000ff;stroke-linecap:round" d="M 337.5,421.5 337.5,436.5" id="path5268" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path4720" d="M 330.4851,424.4741 345.5008,433.1434" style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round" d="M 330.4321,430.3454 341.0657,436.4847" id="path5309" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5311" d="M 335.1528,421.4521 345.4605,427.4032" style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5313" d="M 330.4332,426.6692 339.4477,421.4646" style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round" d="M 330.4696,432.5182 345.4713,423.857" id="path5315" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5317" d="M 333.6366,436.5647 345.5367,429.6942" style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-<g id="transform-move-horizontal" transform="translate(-511.4352,-131.247)" inkscape:label="#arrows_hor">
-<rect transform="translate(348.4108,47.248)" y="270" x="895" height="24" width="24" id="rect5457" style="color:#000000;fill:none;stroke-width:1px" />
-<path sodipodi:nodetypes="cccccccc" style="fill:#000000;fill-rule:evenodd" d="M 1248.435,332.2471 1248.435,331.2471 1260.435,331.2471 1260.435,329.2471 1263.435,331.7471 1260.435,334.2471 1260.435,332.2471 1248.435,332.2471 Z" id="path5435" inkscape:connector-curvature="0" />
-<g id="g5384" transform="translate(-10.01187,-3.897705e-5)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5727);stroke-linejoin:round;stroke-miterlimit:0" id="rect3619" width="8.974897" height="7.990791" x="1267.947" y="319.7563" />
-<rect style="color:#000000;fill:url(#linearGradient5729);fill-rule:evenodd;stroke:url(#linearGradient5731);stroke-width:0.9999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3621" width="6.997538" height="5.995614" x="1268.938" y="320.7514" />
-</g>
-<use xlink:href="#g5384" style="opacity:0.5" height="1250" width="1250" transform="translate(-13.97489)" id="use6276" y="0" x="0" />
-</g>
-<g id="transform-scale-horizontal" inkscape:label="#transform_scale_hor" transform="translate(-142.0084,-53.992)">
-<g id="g6303" transform="translate(0,-0.0070343)">
-<rect y="244.5435" x="906.5059" height="14.95563" width="20.98823" id="rect6287" style="color:#000000;fill:url(#linearGradient5733);fill-rule:evenodd;stroke:url(#linearGradient5735);stroke-width:0.9999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="243.515" x="905.5084" height="16.98404" width="22.98326" id="rect6285" style="color:#000000;fill:none;stroke:url(#linearGradient5737);stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g style="opacity:0.5" id="g12100" transform="matrix(1,0,0,2.125424,-355.4347,-436.1096)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5739);stroke-width:0.685926;stroke-linejoin:round;stroke-miterlimit:0" id="rect12102" width="8.974897" height="7.990791" x="1267.947" y="319.7563" />
-<rect style="color:#000000;fill:url(#linearGradient5741);fill-rule:evenodd;stroke:url(#linearGradient5743);stroke-width:0.6859255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect12104" width="6.997538" height="6.940222" x="1268.938" y="320.2997" />
-</g>
-<path id="path5628" d="M 905.9609,255.5794 908.9609,253.0794 908.9609,255.0794 925.0391,255.0794 925.0391,253.0794 928.0391,255.5794 925.0391,258.0794 925.0391,256.0794 908.9609,256.0794 908.9609,258.0794 905.9609,255.5794 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" />
-<rect y="240" x="905" height="24" width="24" id="rect5634" style="color:#000000;opacity:0.5513197;fill:none;stroke-width:1px" />
-</g>
-<g id="transform-rotate" inkscape:label="#transform_rotate" transform="matrix(-1,0,0,1,1753.997,-53.89532)">
-<use xlink:href="#use6342" style="opacity:0.5" height="1250" width="1250" transform="rotate(-45,916.6665,253.528)" id="use6356" y="0" x="0" />
-<rect y="240" x="905" height="24" width="24" id="rect5743" style="color:#000000;opacity:0.5513197;fill:none;stroke-width:1px" />
-<path id="path5749" d="M 907,262 907,259 905,259 907.5,256 910,259 908,259 908,262 911,262 911,263 908,263 907,262 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" />
-<g id="use6342" transform="rotate(45,904.9224,254.0152)">
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5757);stroke-linejoin:round;stroke-miterlimit:0" id="rect6346" width="14.99428" height="9.989127" x="905.7186" y="240.2337" />
-<rect style="color:#000000;fill:url(#linearGradient5759);fill-rule:evenodd;stroke:url(#linearGradient5762);stroke-width:0.9999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect6348" width="12.98509" height="7.990848" x="906.7204" y="241.2301" />
-</g>
-<use xlink:href="#path5749" height="1250" width="1250" transform="rotate(180,917,253.9995)" id="use6358" y="0" x="0" />
-</g>
-<g id="transform-skew-horizontal" inkscape:label="#transform_scew_hor" transform="matrix(-1,0,0,1,1723.032,-54.0012)">
-<g id="g6663" style="opacity:0.5">
-<rect y="246.4982" x="911.4628" height="11.00354" width="11.07448" id="rect6417" style="color:#000000;fill:url(#linearGradient5745);fill-rule:evenodd;stroke:url(#linearGradient5747);stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="245.4988" x="910.4678" height="13.00241" width="13.0645" id="rect6419" style="color:#000000;fill:none;stroke:url(#linearGradient5749);stroke-width:0.9999979;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<rect y="240" x="905" height="24" width="24" id="rect6423" style="color:#000000;opacity:0.5513197;fill:none;stroke-width:1px" />
-<path sodipodi:nodetypes="cccccccc" style="fill:#000000;fill-rule:evenodd" d="M 926,242 926,240 929,242.5 926,245 926,243 923,243 923,242.0003 926,242 Z" id="use6595" inkscape:connector-curvature="0" />
-<use xlink:href="#use6595" height="1250" width="1250" transform="rotate(180,917,252)" id="use6602" y="0" x="0" />
-<g id="g6667" transform="matrix(1.008867,0,-0.759374,1,183.2271,0)">
-<rect style="color:#000000;fill:url(#linearGradient5751);fill-rule:evenodd;stroke:url(#linearGradient5753);stroke-width:0.9956706;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect6669" width="11.07448" height="11.00519" x="907.1069" y="246.5351" transform="matrix(1,0,0.017299,0.9998504,0,0)" />
-<rect style="color:#000000;fill:none;stroke:url(#linearGradient5755);stroke-width:0.9956684;stroke-linejoin:round;stroke-miterlimit:0" id="rect6671" width="13.0645" height="13.00435" x="906.1118" y="245.5355" transform="matrix(1,0,0.017299,0.9998504,0,0)" />
-</g>
-</g>
-<g id="show-path-outline" transform="translate(842.9337,-119.9172)" inkscape:label="#nodes_show_helperpath">
-<path style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -42.51871,188.4465 C -42.51871,182.9474 -41.84309,175.4698 -31.51871,177.4465 -29.7078,177.7932 -31.18387,189.1883 -42.51871,188.4465" id="path4756" sodipodi:nodetypes="csc" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect4758" style="fill:none" />
-<use xlink:href="#rect4374" height="1250" width="1250" id="use4760" y="0" x="0" transform="translate(-4.9762,-0.0534998)" />
-<use xlink:href="#rect4374" height="1250" width="1250" id="use4762" y="0" x="0" transform="translate(5.981293,-11.02417)" />
-</g>
-<g id="randomize" transform="translate(-174.6231,-48.06162)">
-<rect y="208" x="777.8536" height="24" width="24" id="rect7476" style="fill:none;stroke-width:1.0000001" />
-<g id="g4914" transform="translate(5.853577,2.75)">
-<path id="path4908" d="M 773,210.5 773,223 784,228.5 795,223 795,210.5 784,215 773,210.5 Z" style="fill:url(#radialGradient8472);stroke:url(#linearGradient5637);stroke-linejoin:round" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path4912" d="M 784,206 795,210.5 784,215 773,210.5 784,206 Z" style="fill:url(#radialGradient8474);stroke:url(#linearGradient5633);stroke-width:1px;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#000000;stroke-width:1px" d="M 848,219 848,232.417" id="path5699" transform="translate(-64,-4)" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<g id="g5864" transform="translate(-64,-4)">
-<ellipse transform="matrix(1.795342,0,0,1.795342,-669.664,-176.9133)" id="path5706" style="fill:url(#radialGradient5496);stroke-width:1.3484024" cx="842.25" cy="222.75" rx="0.75" ry="1.25" />
-<use xlink:href="#path5706" x="0" y="0" id="use5833" transform="translate(9.037201,-1.473703)" width="1250" height="1250" />
-<use xlink:href="#path5706" x="0" y="0" id="use5842" transform="translate(9.037201,3.880038)" width="1250" height="1250" />
-<use xlink:href="#path5706" x="0" y="0" id="use5848" transform="translate(13.22746,-3.462058)" width="1250" height="1250" />
-<use xlink:href="#path5706" x="0" y="0" id="use5855" transform="translate(13.22746,1.844619)" width="1250" height="1250" />
-<use xlink:href="#path5706" x="0" y="0" id="use5857" transform="rotate(90,847.9046,219.8453)" width="1250" height="1250" />
-<use xlink:href="#path5706" x="0" y="0" id="use5859" transform="rotate(90,851.3872,223.3559)" width="1250" height="1250" />
-</g>
-</g>
-</g>
-<g id="path-clip-edit" inkscape:label="#g7356" transform="translate(-21)">
-<path sodipodi:nodetypes="cc" id="path4828" d="M 855,62 C 853,64 850,63.5 847,60.5" style="fill:none;stroke:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-<use xlink:href="#path4828" x="0" y="0" id="use4830" transform="matrix(0,1,1,0,785.5,-785)" width="1250" height="1250" />
-<path style="fill:none;stroke:#00ff00;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 842.5,68.5 C 843.3058,62.01571 848.0747,58.5078 853.5,57.5" id="path4813" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect y="55.0535" x="839.9762" height="16" width="16" id="rect4815" style="fill:none" />
-<use xlink:href="#rect10675" height="1250" width="1250" id="use4819" y="0" x="0" transform="translate(885.0318,-128.6983)" />
-<use xlink:href="#rect10675" transform="translate(873.0318,-116.6983)" x="0" y="0" id="use4821" width="1250" height="1250" />
-</g>
-<g id="path-mask-edit" inkscape:label="#g7344" transform="translate(-40)">
-<use xlink:href="#path4893" x="0" y="0" id="use4911" transform="matrix(0,1,1,0,825.5171,-825.2431)" width="1250" height="1250" />
-<path style="fill:none;stroke:url(#linearGradient5824);stroke-width:1px" d="M 895,62 C 893,64 889,63 885,58" id="path4893" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path4899" d="M 882.5,68.5 C 883.3058,62.01571 888.0747,58.5078 893.5,57.5" style="fill:none;stroke:#0000ff;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect style="fill:none" id="rect4901" width="16" height="16" x="879.9762" y="55.0535" />
-<use xlink:href="#rect10675" transform="translate(925.0318,-128.6983)" x="0" y="0" id="use4903" width="1250" height="1250" />
-<use xlink:href="#rect10675" height="1250" width="1250" id="use4905" y="0" x="0" transform="translate(913.0318,-116.6983)" />
-</g>
-<g id="draw-eraser" transform="translate(1.5,359.5)" inkscape:label="#draw_erase">
-<rect style="color:#000000;fill:none;stroke-width:1.0000001" id="rect7418" width="24" height="24" x="450" y="115" />
-<g transform="rotate(30,462,127.0001)" id="g8277">
-<rect style="color:#000000;fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:0" id="rect7420" width="10.99167" height="18.99178" x="456.5083" y="117.5082" />
-<rect style="color:#000000;fill:url(#linearGradient7424);fill-rule:evenodd;stroke:url(#linearGradient7426);stroke-width:0.9999998;stroke-linejoin:round;stroke-miterlimit:0" id="rect7422" width="9" height="17" x="457.5" y="118.5" />
-</g>
-</g>
-<path style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round" d="M 887.0928,67.57225 C 885.0341,67.31083 883.3117,65.50657 883.1525,63.43651 882.9202,61.37378 884.2714,59.27622 886.2454,58.63449 888.196,57.92353 890.5511,58.74534 891.6405,60.51171 892.3223,61.5405 892.4753,62.82227 892.3121,64.02456 892.1368,65.22738 892.6277,66.54912 893.7105,67.16949 895.0589,68.03424 897.0395,67.50402 897.7755,66.08115 898.5889,64.70109 897.9844,62.74188 896.5348,62.05998" id="path-mode-spiro" sodipodi:nodetypes="cccccccs" inkscape:label="#spiro_splines_mode" inkscape:connector-curvature="0" />
-<g id="path-mode-bezier" transform="matrix(0.6666666,0,0,0.6666666,934.5,-64.83593)" inkscape:label="bezier_mode">
-<rect y="180" x="-110" height="24" width="24" id="rect4983" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="csc" id="path4985" d="M -107.5,202 C -108,194 -106.8635,189.643 -103.5351,186.5978 -100.5976,183.9103 -96,182 -88,182.5" style="fill:none;stroke:#646464;stroke-width:2.2500002" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:#0000ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.5000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect4987" width="6.117705" height="5.996136" x="-106.5" y="183.5039" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:1.2004722;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect4989" width="4.799528" height="4.801509" x="-109.8907" y="198.8925" />
-<use xlink:href="#rect10541" height="1250" width="1250" transform="matrix(1.200473,0,0,1.200473,40.4649,-59.44417)" id="use4993" y="0" x="0" />
-</g>
-<g id="path-mode-polyline" transform="matrix(0.6666666,0,0,0.6666666,976.1392,-64.65412)" inkscape:label="polylines_mode">
-<rect y="180" x="-110" height="24" width="24" id="rect4983-8" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="ccccc" id="path4985-5" d="M -85.93689,200.106 C -85.93689,200.106 -105.2088,189.9812 -105.2088,189.9812 -105.2088,189.9812 -97.33696,183.4504 -97.33696,183.4504 -97.33696,183.4504 -101.7414,203.6842 -101.7414,203.6842 -101.7414,203.6842 -89.17357,192.5538 -89.17357,192.5538" style="fill:none;stroke:#646464;stroke-width:2.2500002;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect4989-9" width="2.995161" height="2.996397" x="-86.98862" y="198.8744" />
-<rect y="190.5354" x="-90.29251" height="2.996397" width="2.995161" id="rect8372" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect8374" width="2.995161" height="2.996397" x="-98.65125" y="181.5116" />
-<rect y="188.5146" x="-106.7003" height="2.996397" width="2.995161" id="rect8376" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect8378" width="2.995161" height="2.996397" x="-103.3954" y="202.6229" />
-</g>
-<g id="path-mode-polyline-paraxial" transform="matrix(0.6666666,0,0,0.6666666,996.8529,-65.39675)" inkscape:label="paraxial_lines_mode">
-<rect y="180" x="-110" height="24" width="24" id="rect4983-8-8" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="ccccccc" id="path4985-5-5" d="M -83.37415,197.5433 C -83.37415,197.5433 -104.0525,197.5433 -104.0525,197.5433 -104.0525,197.5433 -104.0525,189.6892 -104.0525,189.6892 -104.0525,189.6892 -95.20504,189.6892 -95.20504,189.6892 -95.20504,189.6892 -95.20504,203.3698 -95.20504,203.3698 -95.20504,203.3698 -89.29061,203.3698 -89.29061,203.3698 -89.29061,203.3698 -89.29061,184.0466 -89.29061,184.0466" style="fill:none;stroke:#646464;stroke-width:2.2500002;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect4989-9-0" width="2.995161" height="2.996397" x="-84.48362" y="196.0672" />
-<rect y="182.1676" x="-90.81646" height="2.996397" width="2.995161" id="rect8372-9" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect8374-6" width="2.995161" height="2.996397" x="-96.73253" y="188.1577" />
-<rect y="188.1577" x="-105.581" height="2.996397" width="2.995161" id="rect8376-3" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect8378-8" width="2.995161" height="2.996397" x="-105.581" y="196.0672" />
-<rect y="201.7701" x="-96.73253" height="2.996397" width="2.995161" id="rect5087" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5089" width="2.995161" height="2.996397" x="-90.81646" y="201.7701" />
-</g>
-<g id="draw-geometry-line-segment" transform="translate(733.29,-88.29195)" inkscape:label="line_segment">
-<path style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M -44.20553,190.1345 -30.7183,176.434" id="path4418-8" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect y="175" x="-45" height="16" width="16" id="rect4420-5" style="color:#000000;fill:none" />
-<rect style="color:#000000;fill:#ff2100;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#d40000;stroke-width:0.6444077;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="use5756-0-3" width="2.550238" height="2.558726" x="-41.81641" y="185.1907" />
-<use xlink:href="#use5756-0-3" height="1250" width="1250" transform="translate(6.040428,-6.111492)" id="use5845" y="0" x="0" />
-</g>
-<g id="draw-geometry-circle-from-three-points" inkscape:label="circle_3pts" transform="translate(70)">
-<path style="fill:none;stroke:#5a5a5a;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008" d="M 658.0599,95.55848 C 658.0599,96.36229 657.9001,97.16579 657.5925,97.90842 657.2849,98.65104 656.8297,99.33222 656.2614,99.90059 655.6931,100.469 655.012,100.9241 654.2696,101.2317 653.5272,101.5392 652.724,101.699 651.9207,101.699 651.1174,101.6989 650.3146,101.5391 649.5727,101.2314 648.8308,100.9238 648.1505,100.4686 647.5829,99.90024 647.0153,99.33186 646.5608,98.65074 646.2537,97.90817 645.9466,97.16561 645.787,96.3622 645.787,95.55848 645.787,94.75475 645.9466,93.95134 646.2537,93.20878 646.5608,92.46622 647.0153,91.78509 647.5829,91.21671 648.1505,90.64834 648.8308,90.19318 649.5727,89.88554 650.3146,89.5779 651.1174,89.41802 651.9207,89.41797 652.724,89.41793 653.5272,89.57771 654.2696,89.88528 655.012,90.19286 655.6931,90.64799 656.2614,91.21636 656.8297,91.78474 657.2849,92.46591 657.5925,93.20854 657.9001,93.95116 658.0599,94.75466 658.0599,95.55848" id="path2526" inkscape:connector-curvature="0" />
-<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6" transform="translate(690.7581,-96.67858)" width="1250" height="1250" />
-<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6-1" transform="translate(686.3637,-90.33765)" width="1250" height="1250" />
-<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6-1-9" transform="translate(697.4319,-87.13558)" width="1250" height="1250" />
-</g>
-<g id="draw-geometry-angle-bisector" inkscape:label="angle_bisector" transform="translate(130)">
-<path sodipodi:nodetypes="cc" id="path4418-8-1" d="M 683.5954,101.6495 672.621,88.41118" style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7272727" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccc" d="M 677.4691,101.0666 674.8286,90.9351 684.5743,95.67784" style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(110,2.2e-5)" id="draw-geometry-line-perpendicular" inkscape:label="perp_bisector">
-<path sodipodi:nodetypes="cc" id="path4418-8-1-2" d="M 683.5954,101.6495 672.621,88.41118" style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7272727" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" d="M 674.4659,97.31266 681.5712,91.92394" style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0-1" inkscape:connector-curvature="0" />
-</g>
-<rect style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2.3001337;stroke-dasharray:2.3001337, 2.3001337" id="show-bounding-box" width="10.66002" height="16.84721" x="865.5653" y="86.07553" inkscape:label="lpetool_show_bbox" />
-<g transform="translate(92.93803,-0.728071)" id="draw-geometry-circle-from-radius" inkscape:label="circle_3pts">
-<path style="fill:none;stroke:#5a5a5a;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008" d="M 658.0599,95.55848 C 658.0599,96.36229 657.9001,97.16579 657.5925,97.90842 657.2849,98.65104 656.8297,99.33222 656.2614,99.90059 655.6931,100.469 655.012,100.9241 654.2696,101.2317 653.5272,101.5392 652.724,101.699 651.9207,101.699 651.1174,101.6989 650.3146,101.5391 649.5727,101.2314 648.8308,100.9238 648.1505,100.4686 647.5829,99.90024 647.0153,99.33186 646.5608,98.65074 646.2537,97.90817 645.9466,97.16561 645.787,96.3622 645.787,95.55848 645.787,94.75475 645.9466,93.95134 646.2537,93.20878 646.5608,92.46622 647.0153,91.78509 647.5829,91.21671 648.1505,90.64834 648.8308,90.19318 649.5727,89.88554 650.3146,89.5779 651.1174,89.41802 651.9207,89.41797 652.724,89.41793 653.5272,89.57771 654.2696,89.88528 655.012,90.19286 655.6931,90.64799 656.2614,91.21636 656.8297,91.78474 657.2849,92.46591 657.5925,93.20854 657.9001,93.95116 658.0599,94.75466 658.0599,95.55848" id="circle_with_radius" inkscape:label="circle_with_radius" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" d="M 651.6968,95.73494 657.1146,92.34622" style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0-1-0" inkscape:connector-curvature="0" />
-<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6-1-4" transform="translate(692.3012,-90.77515)" width="1250" height="1250" />
-<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6-1-9-8" transform="translate(697.6194,-94.13558)" width="1250" height="1250" />
-</g>
-<g transform="rotate(64.5595,722.6571,164.0529)" id="draw-geometry-line-parallel" inkscape:label="parallel">
-<path sodipodi:nodetypes="cc" d="M 672.4285,92.87286 687.1351,89.60546" style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902" id="path4418-8-1-0-1-4-4" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" d="M 673.2681,96.33213 687.9748,93.06472" style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0-1-4-4-6" inkscape:connector-curvature="0" />
-</g>
-<g id="draw-geometry-inactive" inkscape:label="all_inactive_old" transform="translate(50.20458)">
-<rect y="85.50002" x="612.75" height="24" width="20.25" id="rect5112" style="color:#000000;fill:none;stroke-width:3" />
-<path id="path6027" d="M 617.649,102.882 628.1009,92.11811" style="fill:none;stroke:#000000;stroke-width:4.2362256;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008" inkscape:connector-curvature="0" />
-<path id="path6027-1" d="M 628.2568,102.7259 617.4932,92.2741" style="fill:none;stroke:#000000;stroke-width:4.2362256;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008" inkscape:connector-curvature="0" />
-</g>
-<text xml:space="preserve" style="font-size:20px;line-height:100%;font-family:Arial;-inkscape-font-specification:Arial;fill:#008f00" x="614.23224" y="103.43147" id="all_inactive" sodipodi:linespacing="100%" inkscape:label="all_inactive"><tspan sodipodi:role="line" id="tspan5899" x="614.23224" y="103.43147">none</tspan></text>
-<g transform="rotate(64.5595,754.657,214.7116)" id="draw-geometry-mirror" inkscape:label="mirror_symmetry">
-<path sodipodi:nodetypes="cs" d="M 674.8734,92.098 C 680.2873,97.30342 677.4429,84.32937 684.5965,91.3047" style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902" id="path4418-8-1-0-1-4-4-8" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" d="M 673.2681,96.33213 687.9748,93.06472" style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0-1-4-4-6-5" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cs" d="M 676.5145,99.48186 C 679.1239,92.43934 681.9149,106.1419 685.614,95.96528" style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902" id="path4418-8-1-0-1-4-4-8-5" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(416.9762,-39.9465)" id="object-tweak-push" inkscape:label="#g4416">
-<rect style="fill:none" id="rect4991" width="16" height="16" x="-45" y="175" />
-<g id="g5135" style="fill:#000000" transform="translate(-416.8263,39.0012)">
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" id="path5011" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" cx="375.0941" cy="137.9821" r="1.111868" />
-<use xlink:href="#path5011" transform="translate(4.825002e-8,2.41142)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5085" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0067742,5.089253)" id="use5087" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0027824,7.946541)" id="use5091" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.959973,-0.63416)" id="use5095" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.006247,0.88896)" id="use5097" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.034311,2.716243)" id="use5099" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.998324,5.976212)" id="use5101" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.922205,-0.70933)" id="use5105" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.986644,0.3787152)" id="use5107" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(6.028303,2.049693)" id="use5109" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.985226,4.82628)" id="use5111" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.86036,-0.67653)" id="use5115" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.908855,0.84335)" id="use5117" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.937926,2.560875)" id="use5119" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.901517,5.920781)" id="use5121" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.79723,-0.00985)" id="use5125" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.80716,2.53059)" id="use5127" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,5.183143)" id="use5129" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.80214,7.912301)" id="use5131" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5136" transform="translate(0.0027824,10.71149)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5011" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5138" transform="translate(2.998324,9.724665)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5011" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5140" transform="translate(5.985226,9.503606)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5011" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5142" transform="translate(8.901517,9.887791)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5011" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5144" transform="translate(11.80214,10.67725)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-</g>
-</g>
-<rect inkscape:label="#rect5080" style="fill:none" id="tweak_move_mode_inout" width="16" height="16" x="391.9762" y="135.0535" />
-<g id="object-tweak-attract" style="fill:#000000" transform="translate(20.0953,-1.38242)" inkscape:label="#g5082">
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.861385,11.02164)" id="use5124" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5130" transform="translate(2.953795,11.09914)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.11579,3.027365)" id="use5088" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5126" transform="translate(11.0383,9.082095)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(10.38143,6.05473)" id="use5090" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5132" transform="translate(5.90759,10.40446)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" id="path5084" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" cx="375.0941" cy="137.9821" r="1.111868" />
-<use xlink:href="#path5084" transform="translate(8.706381,0.9318868)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.953795,0.8543842)" id="use5092" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518)" id="use5094" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(1.317544,6.05473)" id="use5096" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.7764177,9.082095)" id="use5098" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,1.588803)" id="use5100" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.6601638,3.027365)" id="use5103" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.225052,3.298622)" id="use5106" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.147551,8.733335)" id="use5108" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,4.189904)" id="use5110" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.706381,3.376124)" id="use5112" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.961329,6.05473)" id="use5114" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,7.764549)" id="use5116" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(7.698848,6.05473)" id="use5120" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,6.05473)" id="use5118" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.628879,8.772087)" id="use5122" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5128" transform="translate(0,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5134" transform="translate(11.81518,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-</g>
-<rect inkscape:label="#rect5080-2" style="fill:none" id="tweak_move_mode_jitter" width="16" height="16" x="410.9524" y="135.1065" />
-<g id="object-tweak-randomize" style="fill:#000000" transform="translate(39.0715,-1.3294)" inkscape:label="#g5082-9">
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" id="path5084-3" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-78.24976,-27.879)" cx="375.0941" cy="137.9821" r="1.111868" />
-<use xlink:href="#path5084-3" transform="translate(8.561625,0.49145)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-7" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.84313,2.65475)" id="use5088-6" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.465,6.015863)" id="use5090-6" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.800431,0.1644349)" id="use5092-8" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.808,-0.0096427)" id="use5094-4" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(-0.4334583,6.118019)" id="use5096-4" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.2602591,9.383794)" id="use5098-4" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(6.0991,-0.2204626)" id="use5100-0" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.4371078,2.794418)" id="use5103-8" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.823264,2.99384)" id="use5106-4" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.2685,8.914454)" id="use5108-9" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(7.821966,3.036785)" id="use5110-6" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.506131,3.395216)" id="use5112-0" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.865657,4.495371)" id="use5114-7" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.940444,8.422506)" id="use5116-9" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(6.998359,5.075075)" id="use5118-4" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(7.573388,6.436901)" id="use5120-9" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.395772,9.33012)" id="use5122-7" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.885973,11.77538)" id="use5124-1" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-3" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5126-2" transform="translate(11.49834,9.064573)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-3" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5128-6" transform="translate(-0.009413,12.10337)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-3" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5130-6" transform="translate(3.166048,12.23381)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-3" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5132-7" transform="translate(5.944623,11.84999)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-3" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5134-4" transform="translate(11.80662,12.10332)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-</g>
-<rect inkscape:label="#rect5080-7" style="fill:none" id="tweak_scale_mode" width="16" height="16" x="372.0711" y="157.0817" />
-<g id="object-tweak-shrink" style="fill:#000000" transform="translate(0.1905,20.64585)" inkscape:label="#g5082-3">
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" id="path5084-2" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" cx="375.0941" cy="137.9821" r="1.111868" />
-<use xlink:href="#path5084-2" transform="matrix(0.9860759,0,0,0.9860759,14.06913,1.928293)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-8" style="stroke:#ffffff;stroke-width:0.2812746" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9791266,0,0,0.9791266,19.62171,5.917923)" id="use5088-8" style="stroke:#ffffff;stroke-width:0.2832711" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9025255,0,0,0.9025255,48.27027,19.55311)" id="use5090-1" style="stroke:#ffffff;stroke-width:0.3073135" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9860707,0,0,0.9860707,8.163368,1.928972)" id="use5092-4" style="stroke:#ffffff;stroke-width:0.2812758" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518)" id="use5094-42" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9068615,0,0,0.9068615,34.83344,18.95266)" id="use5096-0" style="stroke:#ffffff;stroke-width:0.3058435" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9828022,0,0,0.9828022,6.431961,11.46371)" id="use5098-8" style="stroke:#ffffff;stroke-width:0.2822113" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9220478,0,0,0.9220478,35.06151,10.79493)" id="use5100-6" style="stroke:#ffffff;stroke-width:0.3008064" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9801935,0,0,0.9801935,7.407717,5.770255)" id="use5103-0" style="stroke:#ffffff;stroke-width:0.2829629" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6146776,0,0,0.6146776,147.0627,56.38727)" id="use5106-9" style="stroke:#ffffff;stroke-width:0.451224" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6232617,0,0,0.6232617,143.8529,61.25332)" id="use5108-2" style="stroke:#ffffff;stroke-width:0.4450105" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4296546,0,0,0.4296546,219.2145,82.00947)" id="use5110-1" style="stroke:#ffffff;stroke-width:0.645537" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6112925,0,0,0.6112925,154.2364,56.85603)" id="use5112-7" style="stroke:#ffffff;stroke-width:0.4537236" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4261003,0,0,0.4261003,217.5898,85.52904)" id="use5114-3" style="stroke:#ffffff;stroke-width:0.6509216" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4378052,0,0,0.4378052,216.1661,86.93554)" id="use5116-0" style="stroke:#ffffff;stroke-width:0.633519" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.256807,0,0,0.256807,283.8591,108.9729)" id="use5118-6" style="stroke:#ffffff;stroke-width:1.0800228" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4222839,0,0,0.4222839,224.9252,86.0576)" id="use5120-92" style="stroke:#ffffff;stroke-width:0.6568049" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6190024,0,0,0.6190024,151.3531,61.84314)" id="use5122-6" style="stroke:#ffffff;stroke-width:0.4480718" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9884129,0,0,0.9884129,13.19493,13.71404)" id="use5124-2" style="stroke:#ffffff;stroke-width:0.2806096" width="1250" height="1250" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2829278" id="use5126-4" transform="matrix(0.9803125,0,0,0.9803125,19.17819,11.80843)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5128-4" transform="translate(0,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2802223" id="use5130-0" transform="matrix(0.9897789,0,0,0.9897789,6.776422,13.52485)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2981642" id="use5132-1" transform="matrix(0.9302193,0,0,0.9302193,32.00541,21.7728)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5134-8" transform="translate(11.81518,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-</g>
-<rect inkscape:label="#rect5080-5" style="fill:none" id="tweak_rotate_mode" width="16" height="16" x="392.0683" y="156.9639" />
-<g id="object-tweak-rotate" style="fill:#000000" transform="translate(20.1874,20.52808)" inkscape:label="#g5082-36">
-<use xlink:href="#rect5405" transform="rotate(6.891451,378.4121,212.0572)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-1" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(6.742276,354.1916,240.2747)" id="use5088-9" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(13.88251,355.0222,190.0243)" id="use5090-9" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(8.166722,375.4574,159.1597)" id="use5092-7" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518)" id="use5094-1" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(17.82176,354.6725,141.5001)" id="use5096-08" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(8.378837,311.9869,143.0133)" id="use5098-0" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(15.2684,376.9345,160.51)" id="use5100-2" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(9.387622,355.5457,139.986)" id="use5103-7" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(44.87149,371.792,143.563)" id="use5106-2" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(42.22786,363.698,146.8381)" id="use5108-6" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(63.21644,374.4751,144.7858)" id="use5110-65" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(41.22188,374.3871,151.767)" id="use5112-8" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(65.03753,370.7095,143.8163)" id="use5114-5" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(59.91134,369.0555,148.139)" id="use5116-6" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(88.2,373.8108,144.5479)" id="use5118-0" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(60.38546,373.2086,149.115)" id="use5120-1" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(38.71798,365.4871,155.6236)" id="use5122-0" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(5.269124,246.8273,240.8168)" id="use5124-4" style="stroke:#ffffff;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#rect5405" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5126-7" transform="rotate(5.910683,291.9279,257.4433)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#rect5405" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5128-0" transform="translate(0,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#rect5405" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5130-7" transform="rotate(6.371765,266.6809,171.0607)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#rect5405" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5132-5" transform="rotate(12.64041,322.2687,171.1961)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#rect5405" height="1250" width="1250" style="stroke:#ffffff;stroke-width:0.2773579" id="use5134-1" transform="translate(11.81518,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<rect y="136.9544" x="373.4724" height="3.036042" width="1.257945" id="rect5405" style="color:#000000;stroke:#ffffff;stroke-width:0.3344132" />
-</g>
-<rect y="157.0817" x="411.2426" height="16" width="16" id="tweak_moreless_mode" style="fill:none" inkscape:label="#rect5080-7" />
-<g clip-path="url(#clipPath5905)" transform="translate(37.4344,20.35234)" style="fill:#000000" id="object-tweak-duplicate" inkscape:label="#g5678">
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use5685" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" transform="matrix(2.361086,0,0,2.361086,-503.8152,-187.3038)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use5687" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" transform="matrix(2.176368,0,0,2.176368,-434.5286,-155.763)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use5828" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" transform="matrix(2.363946,0,0,2.363946,-504.888,-175.5924)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(0,2.361086,-2.361086,0,713.6548,-741.0926)" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" id="path5885" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(0,2.363946,-2.363946,0,701.94,-742.1654)" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" id="path5889" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path5893" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" transform="matrix(0,2.361086,-2.361086,0,713.6548,-747.1456)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path5895" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" transform="matrix(0,2.363946,-2.363946,0,701.94,-748.2184)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(0,2.361086,-2.361086,0,713.6548,-735.0396)" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" id="path5897" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(0,2.363946,-2.363946,0,701.94,-736.1123)" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" id="path5899" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(2.176368,0,0,2.176368,-433.9294,-155.2869)" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" id="path5909" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path5911" style="color:#000000;stroke:#ffffff;stroke-width:0.138679" transform="matrix(2.176368,0,0,2.176368,-433.3154,-154.7343)" cx="375.0941" cy="137.9821" r="1.111868" />
-</g>
-<rect y="181.0817" x="372.0711" height="16" width="16" id="tweak_blur_mode" style="fill:none" inkscape:label="#rect5080-7" />
-<g transform="translate(0.1905,44.64585)" style="fill:#000000" id="object-tweak-blur" inkscape:label="#g7655">
-<circle transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" id="path7657" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7660" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.188922,0,0,1.188922,-63.09951,-25.56857)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7662" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.180543,0,0,1.180543,-57.00309,-21.38516)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7664" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.088184,0,0,1.088184,-22.35986,-5.61394)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7666" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.188915,0,0,1.188915,-69.00487,-25.56775)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7668" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-66.44314,-27.88514)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7670" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.093412,0,0,1.093412,-36.13602,-6.3353)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7672" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.184974,0,0,1.184974,-70.48049,-15.94187)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7674" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.111722,0,0,1.111722,-37.0964,-14.9165)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7676" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.181829,0,0,1.181829,-69.30058,-21.56258)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7678" style="color:#000000;fill:url(#radialGradient7818);stroke-width:0.2773579" transform="matrix(1.485788,0,0,1.485788,-180.3604,-63.50353)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7680" style="color:#000000;fill:url(#radialGradient7802);stroke-width:0.2773579" transform="matrix(1.485788,0,0,1.485788,-180.3597,-57.44874)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7682" style="color:#000000;fill:url(#radialGradient7826);stroke-width:0.2773579" transform="matrix(1.485788,0,0,1.485788,-177.4064,-63.50356)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7684" style="color:#000000;fill:url(#radialGradient7834);stroke-width:0.2773579" transform="matrix(1.485788,0,0,1.485788,-174.4526,-63.50354)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7686" style="color:#000000;fill:url(#radialGradient7810);stroke-width:0.2773579" transform="matrix(1.485788,0,0,1.485788,-180.3605,-60.47619)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7688" style="color:#000000;fill:url(#radialGradient7794);stroke-width:0.2773579" transform="matrix(1.4858,0,0,1.4858,-177.4101,-57.45014)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7692" style="color:#000000;fill:url(#radialGradient7842);stroke-width:0.2773579" transform="matrix(1.485788,0,0,1.485788,-174.4524,-60.47613)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7694" style="color:#000000;fill:url(#radialGradient7786);stroke-width:0.2773579" transform="matrix(1.492675,0,0,1.492675,-177.0357,-58.39903)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7696" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.191739,0,0,1.191739,-64.1566,-13.84799)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7698" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.181973,0,0,1.181973,-57.53942,-15.52772)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7700" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-78.25832,-15.77568)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7702" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.193386,0,0,1.193386,-70.68201,-14.07527)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7704" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.121575,0,0,1.121575,-40.79199,-4.166495)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7706" style="color:#000000;stroke:#ffffff;stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-66.44314,-15.77568)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7690" style="color:#000000;fill:url(#radialGradient7778);stroke-width:0.2773579" transform="matrix(6.75293,0,0,6.75293,-2153.081,-787.2478)" cx="375.0941" cy="137.9821" r="1.111868" />
-</g>
-<g inkscape:label="#node_symmetric" transform="translate(736.4717,-120)" id="node-type-auto-smooth">
-<path sodipodi:nodetypes="csc" id="path5383" d="M -44.41296,176.5635 C -44.94008,180.0159 -43.02606,185.9502 -37.02606,185.9502 -31.02606,185.9502 -29.0373,180.0159 -29.51018,176.5635" style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect style="color:#000000;fill:none" id="rect5385" width="16" height="16" x="-45" y="175" />
-<rect transform="rotate(-89.99984)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5387" width="4.966394" height="4.950177" x="-188.4831" y="-39.47938" ry="2.475089" />
-</g>
-<g id="snap" inkscape:label="#toggle_snap_global">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6" width="16" height="16" x="620" y="30" />
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-0" width="16" height="16" x="620" y="30.00057" />
-<rect transform="rotate(-45)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3224-2" width="3.584063" height="3.621212" x="415.401" y="462.0515" />
-<rect transform="rotate(-45)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3224-2-8" width="3.584063" height="3.621212" x="415.401" y="476.282" />
-<path id="path9093" d="M 631,41 631,37 627,41 631,41" style="color:#000000;fill:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-<rect transform="rotate(-45)" inkscape:transform-center-y="-2.12133" inkscape:transform-center-x="1.414208" y="466.7135" x="416.693" height="7.962208" width="1" id="rect9095" style="fill:#000000" />
-</g>
-<g id="snap-bounding-box" inkscape:label="#toggle_snap_bbox">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-4" width="16" height="16" x="638" y="30" />
-<path id="path9141" d="M 641,46 641,33 654,33" style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5" inkscape:connector-curvature="0" />
-<rect transform="rotate(-45)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3224-2-2" width="3.584063" height="3.621212" x="428.1289" y="474.691" />
-</g>
-<g id="snap-bounding-box-edges" inkscape:label="#toggle_snap_to_bbox_path">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-5" width="16" height="16" x="656" y="30.00057" />
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-0-1" width="16" height="16" x="656" y="30.00114" />
-<path id="path9141-9" d="M 669,30 669,43 656,43" style="color:#000000;fill:none;stroke:#008000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5" inkscape:connector-curvature="0" />
-</g>
-<g id="snap-bounding-box-corners" inkscape:label="#toggle_snap_to_bbox_node">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-4-0" width="16" height="16" x="674" y="30.00057" />
-<path id="path9141-9-2" d="M 687,30 687,43 674,43" style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5" inkscape:connector-curvature="0" />
-<rect transform="rotate(-45)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3224-2-8-6" width="3.584063" height="3.621212" x="453.5847" y="514.3773" />
-</g>
-<g id="snap-nodes" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_nodes">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-7" width="16" height="16" x="692" y="30.00057" />
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-0-8" width="16" height="16" x="692" y="30.00114" />
-<path sodipodi:nodetypes="ccsc" id="path6308" d="M 693,38 C 693,38 693,33 700,33 696,38 697.75,41 700.5,42.75 703.25,44.5 707,45 707,45" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect transform="rotate(-45)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3224-2-9" width="3.584063" height="3.621212" x="469.8239" y="516.5415" />
-</g>
-<g id="snap-nodes-path" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_paths">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-4-8" width="16" height="16" x="710" y="30.00057" />
-<path sodipodi:nodetypes="ccsc" id="path6308-6" d="M 725,39 C 725,39 725,44 718,44 722,39 720.25,36 717.5,34.25 714.75,32.5 711,32 711,32" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccsc" id="path6308-6-9" d="M 725,39.00001 C 725,39.00001 725,44.00001 718,44.00001 722,39.00001 720.25,36.00001 717.5,34.25001 714.75,32.50001 711,32.00001 711,32.00001" style="color:#000000;fill:none;stroke:#008000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-</g>
-<g id="snap-nodes-cusp" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_nodes">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-74" width="16" height="16" x="728" y="30.00057" />
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-0-19" width="16" height="16" x="728" y="30.00114" />
-<path sodipodi:nodetypes="ccsc" id="path6308-6-3" d="M 743,38 C 743,38 743,43 736,43 740,38 738.25,35 735.5,33.25 732.75,31.5 729,31 729,31" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect transform="rotate(-45)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3224-2-8-6-5" width="3.584063" height="3.621212" x="488.233" y="549.0256" />
-</g>
-<g id="snap-nodes-smooth" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_smooth_nodes">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-4-09" width="16" height="16" x="746" y="30.00057" />
-<path sodipodi:nodetypes="ccsc" id="path6308-6-3-2" d="M 761,38 C 761,38 761,43 754,43 758,38 756.25,35 753.5,33.25 750.75,31.5 747,31 747,31" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<rect transform="rotate(-90)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3224-2-8-6-5-6" width="3.584063" height="3.621212" x="-35.08406" y="751.8788" />
-</g>
-<g id="snap-nodes-midpoint" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_midpoints">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-5-8" width="16" height="16" x="764" y="30.00114" />
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-0-1-8" width="16" height="16" x="764" y="30.00171" />
-<path id="path6507" d="M 765,45 779,31" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
-<circle transform="matrix(0.8749999,0,0,0.875,112.6876,9.126711)" id="path6530" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round" cx="753.5" cy="33" r="2" />
-<g transform="matrix(1.5,0,0,1.5,-383.9324,-21.06763)" id="g6242">
-<path style="color:#000000;fill:#c00000;stroke:#c00000;stroke-width:0.6666667px" d="M 766.7737,40.68077 767.7737,44.68077" id="path6218" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#c00000;stroke:#c00000;stroke-width:0.6666667px" d="M 767.9558,39.58974 768.9558,43.58974" id="path6218-9" inkscape:connector-curvature="0" />
-</g>
-<g id="g6242-2" transform="matrix(1.5,0,0,1.5,-375.4835,-29.48977)">
-<path style="color:#000000;fill:#c00000;stroke:#c00000;stroke-width:0.6666667px" d="M 766.7737,40.68077 767.7737,44.68077" id="path6218-2" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#c00000;stroke:#c00000;stroke-width:0.6666667px" d="M 767.9558,39.58974 768.9558,43.58974" id="path6218-9-6" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="snap-nodes-intersection" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_path_intersections">
-<g id="g6774">
-<rect y="30.00114" x="782" height="16" width="16" id="rect5385-6-4-0-5" style="color:#000000;fill:none;stroke-width:0.1" />
-<path style="color:#000000;fill:none;stroke:#646464;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 783,45 797,31" id="path6507-9" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 783,40 797,36" id="path6507-9-3" inkscape:connector-curvature="0" />
-<circle style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round" id="path6530-3" transform="matrix(0.8749999,0,0,0.875,130.6876,9.127)" cx="753.5" cy="33" r="2" />
-</g>
-</g>
-<g id="snap-nodes-rotation-center" transform="translate(54.5,0.5)" inkscape:label="#toggle_snap_center">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-7-8" width="16" height="16" x="800" y="30.00114" />
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-0-8-4" width="16" height="16" x="800" y="30.00171" />
-<path id="path9141-9-0" d="M 813,30 813,43 800,43" style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5" inkscape:connector-curvature="0" />
-<path id="path6380" d="M 805,31.5 805,34.5" style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-<path id="path6380-4" d="M 805,35.5 805,38.5" style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-<path id="path6380-8" d="M 801.5,35 804.5,35" style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-<path id="path6380-4-0" d="M 805.5,35 808.5,35" style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" inkscape:connector-curvature="0" />
-</g>
-<g id="snap-page" transform="translate(54.5,0.5)" inkscape:label="#toggle_snap_page_border">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-4-8-3" width="16" height="16" x="818" y="30.00114" />
-<path sodipodi:nodetypes="ccccc" id="path3805-7" d="M 820.7689,31.00114 831.2311,31.00114 831.2311,45.00114 820.7689,45.00114 820.7689,31.00114 Z" style="color:#000000;fill:url(#linearGradient6465);fill-rule:evenodd;stroke:url(#linearGradient6467);stroke-width:1.0000002" inkscape:connector-curvature="0" />
-</g>
-<g id="snap-grid-guide-intersections" transform="translate(54.5,0.5)" inkscape:label="#toggle_snap_grid_guide_intersections">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-4-8-3-1" width="16" height="16" x="836" y="30.00057" />
-<path id="path6498-9-0" d="M 851,37 837,37" style="color:#000000;fill:#c00000;stroke:#0065ff;stroke-width:1px" inkscape:connector-curvature="0" />
-<path id="path6498-1" d="M 841.5822,45.57303 846.4186,30.42697" style="color:#000000;fill:#c00000;stroke:#0065ff;stroke-width:1px" inkscape:connector-curvature="0" />
-<circle transform="matrix(0.8749999,0,0,0.875,185.0073,8.125)" id="path6530-3-7" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round" cx="753.5" cy="33" r="2" />
-</g>
-<g id="snap-bounding-box-center" inkscape:label="#toggle_snap_to_bbox_midpoints">
-<circle transform="matrix(0.8749999,0,0,0.875,56.39207,5.147436)" id="path6530-5" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round" cx="753.5" cy="33" r="2" />
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-4-0-8" width="16" height="16" x="712" y="29.99886" />
-<path id="path9141-9-2-5" d="M 725,29.99829 725,42.99829 712,42.99829" style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(162.5,0.5)" id="snap-nodes-center" inkscape:label="#toggle_snap_to_bbox_midpoints-3">
-<g id="toggle_snap_to_object_midpoints">
-<rect y="30.00057" x="674" height="16" width="16" id="rect5385-6-4-0-8-1" style="color:#000000;fill:none;stroke-width:0.1" />
-<path style="color:#000000;fill:none;stroke:#646464;stroke-linecap:square" d="M 687,30 687,43 674,43" id="path9141-9-2-5-1" inkscape:connector-curvature="0" />
-<circle transform="matrix(0.8749999,0,0,0.875,19.93758,6.375)" id="path6530-3-6" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round" cx="753.5" cy="33" r="2" />
-</g>
-</g>
-<g id="snap-bounding-box-midpoints" inkscape:label="#toggle_snap_to_bbox_edge_midpoints">
-<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect5385-6-4-0-8-5" width="16" height="16" x="692.5" y="30" />
-<path id="path9141-9-2-5-3" d="M 705.5,29.99943 705.5,42.99943 692.5,42.99943" style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5" inkscape:connector-curvature="0" />
-<circle style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round" id="path6530-4" transform="matrix(0.8749999,0,0,0.875,46.21002,5.147436)" cx="753.5" cy="33" r="2" />
-</g>
-<g id="guides" transform="translate(-118,-28)" inkscape:label="#guide">
-<path sodipodi:nodetypes="cc" id="path5235-0" d="M 305.5,421.5 305.5,436.5" style="fill:none;stroke:#0000ff;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#0000ff;stroke-linecap:round" d="M 315.5,421.5 310.4026,436.5" id="use5244-0" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<use xlink:href="#path5235-0" x="0" y="0" id="use5246-9" transform="translate(12)" width="1250" height="1250" style="stroke-linecap:round" />
-</g>
-<use xlink:href="#transform-scale-horizontal" inkscape:label="#use5735" height="1250" width="1250" transform="rotate(-90,791.4837,214.4996)" id="transform-scale-vertical" y="0" x="0" />
-<use xlink:href="#transform-move-horizontal" inkscape:label="#use5770" height="1250" width="1250" transform="matrix(0,-1,-1,0,942,973.9749)" id="transform-move-vertical" y="0" x="0" />
-<g id="draw-polygon-star" inkscape:label="#g6798">
-<g id="g6790">
-<path style="color:#000000;fill:url(#linearGradient5939);fill-rule:evenodd;stroke:url(#linearGradient5941);stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 462.0737,189.3155 454.3023,189.3155 452.082,181.7659 458.188,176.9127 464.2941,181.7659 462.0737,189.3155 Z" id="path6584" sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:none;stroke:url(#linearGradient5936);stroke-width:0.9999991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 462.8716,190.3459 453.5036,190.3459 450.8269,181.4767 458.1876,175.775 465.5484,181.4767 462.8717,190.3459 Z" id="star" sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" />
-</g>
-<rect y="174" x="450" height="24" width="24" id="rect3610" style="color:#000000;fill:none;stroke-width:1.0000001" />
-<g id="g6786">
-<path sodipodi:type="star" style="color:#000000;fill:#fffbc5;fill-rule:evenodd;stroke:url(#linearGradient6644);stroke-width:0.6782926;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path2669" sodipodi:sides="5" sodipodi:cx="103" sodipodi:cy="195" sodipodi:r1="6.158659" sodipodi:r2="3" sodipodi:arg1="-0.122765" sodipodi:arg2="0.5055535" inkscape:flatsided="false" inkscape:rounded="0" inkscape:randomized="0" d="M 109.1123,194.2458 105.6247,196.4529 105.6061,200.5801 102.4293,197.9452 98.49833,199.2029 100.0226,195.3674 97.61175,192.0174 101.7305,192.2818 104.1715,188.9538 105.1928,192.9527 Z" transform="matrix(1.492696,-0.0409829,0.0399483,1.455015,302.9314,-91.01218)" />
-<path transform="matrix(1.492696,-0.0409829,0.0399483,1.455015,302.9314,-91.01218)" d="M 107.5277,194.4445 104.9587,196.0598 104.9275,199.1345 102.5973,197.1903 99.66351,198.1107 100.7924,195.2939 99.01048,192.7881 102.0383,192.9913 103.8708,190.5222 104.6132,193.4647 Z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" sodipodi:arg2="0.4959725" sodipodi:arg1="-0.1220787" sodipodi:r2="2.227037" sodipodi:r1="4.561672" sodipodi:cy="195" sodipodi:cx="103" sodipodi:sides="5" id="path5971" style="color:#000000;fill:url(#linearGradient6636-2);fill-rule:evenodd;stroke:url(#linearGradient6625-4);stroke-width:0.6782926;stroke-linecap:round;stroke-miterlimit:80" sodipodi:type="star" />
-</g>
-</g>
-<use xlink:href="#object-columns" inkscape:label="#use5494" height="1250" width="1250" transform="rotate(90,751.5041,292.5041)" id="object-rows" y="0" x="0" />
-<g id="draw-geometry" transform="translate(82.15887,-154.5354)" inkscape:label="#g7080">
-<rect y="235.5354" x="503.8411" height="24" width="24" id="rect7049" style="color:#000000;fill:none" />
-<path sodipodi:nodetypes="ccccc" id="rect6919" d="M 512.7676,243.3399 521.8159,251.0712 520.8131,252.2449 511.7648,244.5135 C 511.8808,243.7931 512.276,243.4938 512.7676,243.3399 Z" style="color:#000000;fill:url(#linearGradient7072);fill-rule:evenodd;stroke:#000000;stroke-width:0.5719796" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccc" id="path6913" d="M 521.7667,239.9343 522.1847,238.5778 524.458,236.6762 525.6627,237.7055 524.0435,240.3051 522.9164,240.7998 521.7667,239.9343 Z" style="color:#000000;fill:url(#linearGradient7069);fill-rule:evenodd;stroke:#000000;stroke-width:0.8" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccc" id="path6124" d="M 507.2225,249.5491 506.0196,252.5658 508.0728,250.4763 507.2226,249.5491 Z" style="color:#000000;fill:#b6cbe0;fill-rule:evenodd;stroke:#000000;stroke-width:0.5719796;stroke-miterlimit:30" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccc" id="path6904" d="M 508.0727,250.4763 507.2225,249.5491 507.3394,248.2888 519.2382,240.0135 518.9833,242.8558 508.0727,250.4763 Z" style="color:#000000;fill:url(#linearGradient7065);fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccc" id="path6908" d="M 521.6141,239.6871 C 520.7442,239.3672 519.849,239.4141 519.2387,240.0107 L 518.9822,242.8603 C 518.3414,244.1333 519.3175,244.7569 520.4067,244.0775 L 523.1814,243.3796 C 523.6755,242.6837 523.5822,241.7921 523.1305,240.9828 522.8471,240.2569 522.3474,239.8575 521.6141,239.6871 Z" style="color:#000000;fill:url(#linearGradient7062);fill-rule:evenodd;stroke:#000000;stroke-width:0.8" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient7059);fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linejoin:round" d="M 514.5887,256.0406 515.6372,256.7358 516.8638,256.4236 523.1814,243.3795 520.4138,244.0747 514.5887,256.0406 Z" id="path6917" sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" />
-<ellipse transform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,34.89977)" id="path6923" style="color:#000000;fill:#f7df3a;fill-rule:evenodd;stroke:#000000;stroke-width:1.4786291" cx="610.7591" cy="215.7293" rx="1.866584" ry="4.248087" />
-<ellipse transform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.5889,35.35265)" style="color:#000000;fill:url(#linearGradient7074);fill-rule:evenodd;stroke:#000000;stroke-width:1.4786291" id="path6925" cx="610.7591" cy="215.7293" rx="1.866584" ry="4.248087" />
-<circle transform="matrix(0.6717776,0.5740055,-0.5740055,0.6717776,236.7316,-232.3531)" id="path6927" style="color:#000000;fill:url(#linearGradient7102);fill-rule:evenodd" cx="592.1254" cy="198.5761" r="0.740197" />
-<path id="path6947" d="M 508.3136,248.6121 512.3845,245.8025" style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.4;stroke-linecap:round" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#b6cbe0;fill-rule:evenodd;stroke:#000000;stroke-width:0.5719796;stroke-miterlimit:30" d="M 515.6372,256.7358 512.8451,258.3947 514.5887,256.0406 515.6372,256.7358 Z" id="path6949" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path id="path6998" d="M 522.9128,238.979 524.4219,237.7303" style="color:#000000;fill:#f7df3a;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:30" inkscape:connector-curvature="0" />
-<use xlink:href="#path6927" height="540" width="1250" transform="translate(1.456413,1.183335)" id="use7078" y="0" x="0" />
-</g>
-<g id="dialog-geometry" inkscape:label="#g2858" transform="translate(2.000001,7.246792e-6)">
-<g transform="matrix(1.500067,0,0,1.495011,711.1557,-419.4617)" id="g2770">
-<rect y="338.8083" x="115.5577" height="11.99987" width="14.99917" id="rect2772" style="color:#000000;fill:url(#linearGradient2876);fill-rule:evenodd;stroke:#000000;stroke-width:0.6677634;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect2774" style="color:#000000;fill:url(#linearGradient2878);fill-rule:evenodd;stroke:#000000;stroke-width:0.6677633;stroke-linecap:round;stroke-linejoin:round" />
-</g>
-<path style="color:#000000;fill:url(#linearGradient2880);fill-rule:evenodd;stroke:#000000;stroke-width:0.4646012" d="M 893.9086,90.94437 898.4098,99.4997 897.3001,100.0835 892.799,91.5282 C 893.1032,91.01951 893.4914,90.91259 893.9086,90.94437 Z" id="path2794" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient2882);fill-rule:evenodd;stroke:#000000;stroke-width:0.6498151" d="M 901.723,91.08202 902.4465,90.1843 904.7338,89.43334 905.3331,90.57238 903.3294,92.0467 902.3301,92.08088 901.723,91.08202 Z" id="path2796" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#b6cbe0;fill-rule:evenodd;stroke:#000000;stroke-width:0.4646012;stroke-miterlimit:30" d="M 887.8568,93.9611 886.0417,95.87539 888.2195,94.91653 887.8569,93.96119 Z" id="path2798" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient2884);fill-rule:evenodd;stroke:#000000;stroke-width:0.6498151;stroke-linejoin:round" d="M 888.2194,94.91644 887.8568,93.9611 888.3242,93.04538 899.7914,90.38115 898.7441,92.44899 888.2194,94.91644 Z" id="path2800" sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:url(#linearGradient2886);fill-rule:evenodd;stroke:#000000;stroke-width:0.6498151" d="M 901.6822,90.84956 C 901.1222,90.34652 900.4326,90.11262 899.7927,90.37915 L 898.7419,92.45203 C 897.8754,93.21978 898.4243,93.98389 899.4505,93.79894 L 901.754,94.10707 C 902.3361,93.73068 902.5339,93.02989 902.4366,92.28338 902.4416,91.65046 902.1842,91.19877 901.6823,90.84957 Z" id="path2802" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccc" id="path2804" d="M 891.4619,101.075 892.0438,101.9149 893.0632,102.0484 901.754,94.10707 899.4566,93.79895 891.4619,101.075 Z" style="color:#000000;fill:url(#linearGradient2889);fill-rule:evenodd;stroke:#000000;stroke-width:0.6498151;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<ellipse style="color:#000000;fill:#f7df3a;fill-rule:evenodd;stroke:#000000;stroke-width:1.4786291" id="path2806" transform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.556,-101.4348)" cx="610.7591" cy="215.7293" rx="1.866584" ry="4.248087" />
-<ellipse id="path2808" style="color:#000000;fill:url(#linearGradient2891);fill-rule:evenodd;stroke:#000000;stroke-width:1.4786291" transform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8196,-100.9337)" cx="610.7591" cy="215.7293" rx="1.866584" ry="4.248087" />
-<circle style="color:#000000;fill:url(#linearGradient2893);fill-rule:evenodd" id="path2810" transform="matrix(0.3341836,0.6351824,-0.6351824,0.3341836,828.7399,-351.0096)" cx="592.1254" cy="198.5761" r="0.740197" />
-<path style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.3249075;stroke-linecap:round" d="M 888.962,93.58236 892.8787,92.68718" id="path2812" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccc" id="path2814" d="M 892.0438,101.9149 889.4382,102.3266 891.4619,101.075 892.0438,101.9149 Z" style="color:#000000;fill:#b6cbe0;fill-rule:evenodd;stroke:#000000;stroke-width:0.4646012;stroke-miterlimit:30" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#f7df3a;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.3249075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:30" d="M 902.8751,90.70598 904.3894,90.21782" id="path2816" inkscape:connector-curvature="0" />
-<use xlink:href="#path6927" x="0" y="0" id="use2818" transform="matrix(0.7545079,0.3008297,-0.3008297,0.7545079,580.9682,-245.5823)" width="1250" height="540" />
-</g>
-<g id="draw-geometry-set-bounding-box" inkscape:label="#g3679">
-<rect style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2.3001337;stroke-dasharray:2.3001337, 2.3001337" id="rect2895" width="10.66002" height="16.84721" x="865.1501" y="115.1501" inkscape:label="lpetool_show_bbox" />
-<path id="path2897" d="M 860,120 860,127.8525 863.9906,123.8619 860,120 Z" style="color:#000000;fill:#000000;stroke-width:0.4" inkscape:connector-curvature="0" />
-<path style="color:#000000;fill:#000000;stroke-width:0.4" d="M 881,120 881,127.8525 877.0094,123.8619 881,120 Z" id="path3677" inkscape:connector-curvature="0" />
-</g>
-<g id="draw-geometry-show-measuring-info" transform="translate(23.01003,-32.10901)" inkscape:label="#g3731">
-<path style="color:#000000;fill:url(#linearGradient3740);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999992;stroke-linecap:round;stroke-linejoin:round" d="M 891.49,114.609 914.4899,114.609 914.49,129.0345 910.3082,129.0345 905.7009,137.609 905.0809,129.0345 891.4901,129.0345 891.49,114.609 Z" id="rect5189-6" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<g id="text3706" style="font-size:8.7460566px">
-<path id="path3719" d="M 895.9941,119.2959 C 895.1463,119.2751 894.7938,120.1965 894.7211,120.898 894.6294,121.9436 894.5529,123.0953 895.08,124.0441 895.4964,124.781 896.695,124.6689 896.9976,123.891 897.4368,122.8798 897.3808,121.7206 897.2282,120.6519 897.1176,120.0199 896.7498,119.2637 895.9941,119.2959 Z M 895.9941,118.6126 C 896.9509,118.5524 897.7519,119.3144 897.9758,120.2047 898.2877,121.3635 898.2902,122.6289 897.9292,123.7767 897.6728,124.6649 896.8012,125.3325 895.862,125.2243 894.8289,125.2293 894.0921,124.2919 893.9314,123.3422 893.708,122.1354 893.6931,120.8177 894.222,119.6858 894.5435,119.0127 895.2473,118.5832 895.994,118.6126 Z" inkscape:connector-curvature="0" />
-<path id="path3721" d="M 899.7179,124.0191 C 900.0183,124.0191 900.3187,124.0191 900.619,124.0191 900.619,124.3806 900.619,124.7422 900.619,125.1038 900.3187,125.1038 900.0183,125.1038 899.7179,125.1038 899.7179,124.7422 899.7179,124.3806 899.7179,124.0191 Z" inkscape:connector-curvature="0" />
-<path id="path3723" d="M 903.2454,124.3778 C 904.249,124.3778 905.2526,124.3778 906.2561,124.3778 906.2561,124.6198 906.2561,124.8618 906.2561,125.1038 904.9067,125.1038 903.5572,125.1038 902.2077,125.1038 902.2077,124.8618 902.2077,124.6198 902.2077,124.3778 903.1601,123.3422 904.2578,122.431 905.0916,121.2929 905.5287,120.7197 905.4201,119.7534 904.6999,119.4637 903.876,119.1394 902.9792,119.5091 902.2504,119.9065 902.2504,119.6161 902.2504,119.3258 902.2504,119.0354 903.325,118.5793 904.7495,118.3235 905.704,119.1712 906.4861,119.884 906.3111,121.1679 905.632,121.8901 904.8737,122.7521 904.0412,123.55 903.2454,124.3778 Z" inkscape:connector-curvature="0" />
-<path id="path3725" d="M 910.6847,121.666 C 911.5783,121.791 912.1673,122.7237 911.9772,123.5893 911.8831,124.5921 910.8635,125.1799 909.9352,125.2095 909.2127,125.2794 908.4835,125.1506 907.8021,124.9117 907.8021,124.6341 907.8021,124.3565 907.8021,124.0789 908.6387,124.535 909.7266,124.6809 910.6028,124.2565 911.4045,123.822 911.2934,122.4449 910.406,122.1755 909.9252,121.9917 909.4059,122.0661 908.9039,122.0504 908.9039,121.8141 908.9039,121.5778 908.9039,121.3415 909.5715,121.3127 910.4133,121.4904 910.8604,120.8661 911.2781,120.2052 910.7157,119.3318 909.9526,119.3552 909.2869,119.2871 908.6225,119.448 907.9943,119.6547 907.9943,119.3984 907.9943,119.1422 907.9943,118.886 909.0743,118.5993 910.4019,118.3569 911.3476,119.1178 912.1497,119.7623 911.9741,121.2601 910.9484,121.5818 L 910.8205,121.6274 910.6847,121.6661" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g transform="matrix(0.8557944,0,0,0.8106021,188.9219,242.3584)" id="spray-mode-copy">
-<path d="M 368.2187,315.4062 C 367.625,315.4062 367.125,315.9062 367.125,316.5 L 367.125,324.6875 360.5,324.6875 C 359.9062,324.6875 359.4062,325.1562 359.4062,325.75 L 359.4062,344.7187 C 359.4062,345.1327 359.6581,345.4775 360,345.6562 360.026,345.6698 360.0353,345.7072 360.0625,345.7187 360.2408,346.0619 360.5851,346.3125 361,346.3125 L 385.625,346.3125 C 386.2188,346.3125 386.7188,345.8438 386.7187,345.25 L 386.7187,336.5312 392.8437,336.5312 C 393.4375,336.5312 393.9063,336.0626 393.9062,335.4687 L 393.9062,316.5 C 393.9062,315.9062 393.4375,315.4062 392.8437,315.4062 L 368.2187,315.4062 Z" id="rect6196" style="fill:#000000;stroke:#000000;stroke-width:1.2" inkscape:connector-curvature="0" />
-<g transform="translate(-3.545057e-7,0.5149192)" id="g6335">
-<rect width="26.77582" height="21.11171" ry="1.071839" x="367.1378" y="315.4208" id="rect6337" style="fill:url(#linearGradient6466-2);stroke:#000000;stroke-width:1.2" />
-<g transform="translate(7.208876,-31.4101)" id="g6339">
-<rect width="26.77582" height="21.11171" ry="1.071839" x="352.72" y="356.6143" id="rect6341" style="fill:#000000;stroke:#000000;stroke-width:1.2" />
-<rect width="26.77582" height="21.11171" ry="1.071839" x="352.2051" y="356.0994" id="rect6343" style="fill:url(#linearGradient6468-0);stroke:#000000;stroke-width:1.2" />
-</g>
-</g>
-</g>
-<g transform="matrix(0.8413762,0,0,0.8105392,266.3079,183.1218)" id="spray-mode-union">
-<path d="M 377.4873,389.0398 C 376.8935,389.0398 376.3936,389.5397 376.3936,390.1335 L 376.3936,398.321 369.7686,398.321 C 369.1748,398.321 368.6748,398.7897 368.6748,399.3835 L 368.6748,418.3523 C 368.6748,418.7662 368.9267,419.1111 369.2686,419.2898 369.2946,419.3034 369.3039,419.3409 369.3311,419.3523 369.5094,419.6954 369.8537,419.946 370.2686,419.946 L 394.8936,419.946 C 395.4874,419.946 395.9873,419.4773 395.9873,418.8835 L 395.9873,410.1648 402.1123,410.1648 C 402.7061,410.1648 403.1748,409.6961 403.1748,409.1023 L 403.1748,390.1335 C 403.1748,389.5397 402.7061,389.0398 402.1123,389.0398 L 377.4873,389.0398 Z" id="path6506" style="fill:#000000;stroke:#000000;stroke-width:1.2" inkscape:connector-curvature="0" />
-<path d="M 377.4794,388.5322 C 376.8856,388.5322 376.4169,389.0322 376.4169,389.626 L 376.4169,397.8135 369.7607,397.8135 C 369.1669,397.8135 368.6669,398.2822 368.6669,398.876 L 368.6669,417.8447 C 368.6669,418.2901 368.9382,418.6825 369.3232,418.8447 369.4992,419.1949 369.8407,419.4385 370.2607,419.4385 L 394.9169,419.4385 C 395.5107,419.4385 395.9794,418.9698 395.9794,418.376 L 395.9794,409.6572 402.1044,409.6572 C 402.6982,409.6572 403.1669,409.1885 403.1669,408.5947 L 403.1669,389.626 C 403.1669,389.0322 402.6982,388.5322 402.1044,388.5322 L 377.4794,388.5322 Z" id="rect6510" style="fill:url(#linearGradient6563-3);stroke:#000000;stroke-width:1.2" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(164.4253,191.5008)" id="spray-mode-clone" inkscape:label="#g5793">
-<path transform="matrix(0.8269532,0,0,0.8236011,70.70512,33.207)" d="M 373.3679,331.8837 C 372.7742,331.8837 372.2742,332.3836 372.2742,332.9774 L 372.2742,341.1649 365.6492,341.1649 C 365.0554,341.1649 364.5554,341.6336 364.5554,342.2274 L 364.5554,361.1962 C 364.5554,361.6101 364.8073,361.955 365.1492,362.1337 365.1752,362.1473 365.1845,362.1847 365.2117,362.1962 365.39,362.5393 365.7343,362.7899 366.1492,362.7899 L 390.7742,362.7899 C 391.368,362.7899 391.868,362.3212 391.8679,361.7274 L 391.8679,353.0087 397.9929,353.0087 C 398.5867,353.0087 399.0555,352.54 399.0554,351.9462 L 399.0554,332.9774 C 399.0554,332.3836 398.5867,331.8837 397.9929,331.8837 L 373.3679,331.8837 Z" id="path6442" style="fill:#000000;stroke:#000000;stroke-width:1.2" inkscape:connector-curvature="0" />
-<g id="g5785">
-<g id="g5780">
-<rect width="22.14235" height="17.38762" ry="0.8827677" x="378.569" y="306.5587" id="rect6446" style="fill:url(#linearGradient5783-6-3);stroke:#000000;stroke-width:0.99" />
-</g>
-<g id="g5775">
-<rect transform="matrix(0.8269532,0,0,0.8236011,80.49886,-10.47411)" width="26.77582" height="21.11171" ry="1.071839" x="353.2349" y="394.7184" id="rect6450" style="fill:#000000;stroke:#000000;stroke-width:1.2" />
-<rect width="22.14235" height="17.38762" ry="0.8827677" x="372.5197" y="314.0268" id="rect6452" style="fill:url(#linearGradient6583-7);stroke:#c2c2c2;stroke-width:1.89;stroke-miterlimit:4.1999998" />
-<rect style="fill:none;stroke:#000000;stroke-width:1.89;stroke-miterlimit:4.1999998;stroke-dasharray:3.78, 3.78" id="rect6585" y="314.0268" x="372.5197" ry="0.8827677" height="17.38762" width="22.14235" />
-</g>
-</g>
-</g>
-<g id="connector-ignore" inkscape:label="#g8308" transform="translate(16.91698,1.000974)">
-<g id="g5802" style="stroke:url(#linearGradient8290-1)" transform="matrix(0.625904,0,0,0.672041,489.1682,222.3273)">
-<rect style="fill:none;stroke:url(#linearGradient8288-3);stroke-width:1.5418689;stroke-linejoin:round;stroke-miterlimit:0" id="rect5792" width="7.99868" height="2.959625" x="8.5083" y="211.5502" />
-</g>
-<path style="fill:none;stroke:#3c3c3c;stroke-width:1.0000002px;stroke-linecap:round;stroke-opacity:0.8469945" d="M 494.5,361.4977 500.5,369.4977" id="path7667" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<g transform="matrix(0.689556,0,0,0.507098,484.5653,256.2643)" id="g5761" style="stroke:#000000">
-<rect style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0" id="rect5763" width="4.508889" height="2.011886" x="11.50698" y="205.5087" />
-</g>
-<use xlink:href="#g5761" height="1250" width="1250" transform="matrix(0.997702,0,0,1.018967,8.108667,2.14079)" id="use5785" y="0" x="0" />
-</g>
-<g id="connector-avoid" inkscape:label="#g8327" transform="translate(16.91698,1.000974)">
-<path style="fill:none;stroke:#3c3c3c;stroke-width:1.0000002px;stroke-linecap:round;stroke-opacity:0.8306011" d="M 517.5,361.4977 522.5,364.4977 522.5,369.4977" id="path12164" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
-<g transform="matrix(0.689556,0,0,0.507098,506.5653,256.2643)" id="use5787" style="stroke:#000000">
-<rect style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0" id="rect8286" width="4.508889" height="2.011886" x="11.50698" y="205.5087" />
-</g>
-<g transform="matrix(0.689556,0,0,0.507098,513.514,265.2668)" id="use5790" style="stroke:#000000">
-<rect style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0" id="rect8282" width="4.508889" height="2.011886" x="11.50698" y="205.5087" />
-</g>
-<g id="use5814" style="stroke:url(#linearGradient8278-4)" transform="matrix(0.625904,0,0,0.672041,509.1746,223.3273)">
-<rect style="fill:none;stroke:url(#linearGradient8276-2);stroke-width:1.5418689;stroke-linejoin:round;stroke-miterlimit:0" id="rect8274" width="7.99868" height="2.959625" x="8.5083" y="211.5502" />
-</g>
-</g>
-<g id="connector-orthogonal" inkscape:label="#g8327" transform="matrix(-1,0,0,1,1072.975,1.000934)">
-<path style="fill:none;stroke:#3c3c3c;stroke-width:1.0000002px;stroke-linecap:round;stroke-opacity:0.8306011" d="M 517.5,360.9977 519.5,360.9997 519.5,370.002 522.5,370" id="path5193" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<g transform="matrix(0.689556,0,0,0.507098,506.5653,256.2643)" id="g5195" style="stroke:#000000">
-<rect style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0" id="rect5197" width="4.508889" height="2.011886" x="11.50698" y="205.5087" />
-</g>
-<g transform="matrix(0.689556,0,0,0.507098,513.514,265.2668)" id="g5199" style="stroke:#000000">
-<rect style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0" id="rect5201" width="4.508889" height="2.011886" x="11.50698" y="205.5087" />
-</g>
-<g id="g5203" style="stroke:url(#linearGradient5209)" transform="matrix(0.625904,0,0,0.672041,509.1746,223.3273)" />
-</g>
-<g id="connector-edit" transform="matrix(0.5008045,0,0,0.5008045,547.9862,270.8335)" inkscape:label="#draw_node">
-<rect y="180" x="-110" height="24" width="24" id="rect5213" style="fill:none" />
-<rect style="fill:#ff0000;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.9967862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect5217" width="6.117705" height="5.996136" x="-108.2691" y="181.7348" />
-<path sodipodi:nodetypes="cccc" id="path5221" d="M -104.982,185.0571 -94.78307,203.1802 -87.9838,196.3841 -104.982,185.0571 Z" style="fill:#000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9983935;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(-11.08304,0.9782842)" id="connector-new-connpoint" inkscape:label="#g6061">
-<path sodipodi:end="4.717045" sodipodi:start="3.145564" d="M 578.0001,371.9603 A 10,10 0 0 1 580.9595,364.8985 10,10 0 0 1 588.0466,362.0001 L 588,372 Z" sodipodi:ry="10" sodipodi:rx="10" sodipodi:cy="372" sodipodi:cx="588" id="path6018" style="fill:#b0c5da;fill-rule:evenodd;stroke:#0000ff;stroke-miterlimit:1.5" sodipodi:type="arc" />
-<rect y="360.9807" x="577" height="12.01931" width="12.01931" id="rect5199" style="fill:none" />
-<rect style="fill:#ff7777;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.9411765" id="rect5202" width="3" height="3" x="580" y="363" />
-</g>
-<g transform="translate(-11.08304,0.9782842)" id="connector-remove-connpoint" inkscape:label="#g6098">
-<rect style="fill:none" id="rect6086" width="12.01931" height="12.01931" x="591.5" y="361" />
-<g transform="matrix(0.5555556,0,0,0.5555556,57.49996,271.5555)" id="g6088">
-<path id="path6090" d="M 972,171 973,170 980,170 981,171 981,178 980,179 973,179 972,178 972,171 Z" style="fill:#aa0000;fill-rule:evenodd;stroke:#aa0000;stroke-width:1.7999997px" sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:2.1599998" d="M 974,171.85 979,176.85" id="path6092" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke:#ffffff;stroke-width:2.1599998;stroke-linejoin:round" d="M 979,171.85 974,176.85" id="path6094" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<rect y="363" x="593" height="3" width="3" id="rect6096" style="fill:#ff7777;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.9411765" />
-</g>
-<g id="node-transform" inkscape:label="#g5821">
-<path sodipodi:nodetypes="ccccccccccc" id="path5786" d="M 480,55 480,60 481.5,58.5 483.5,60.5 482,62 487,62 487,57 485.5,58.5 483.5,56.5 485,55 480,55 Z" style="fill:#000000;stroke-width:0.1583337" inkscape:connector-curvature="0" />
-<use height="540" width="1250" transform="matrix(-1,0,0,1,976,0)" id="use5795" xlink:href="#path5786" y="0" x="0" />
-<use height="540" width="1250" transform="matrix(1,0,0,-1,0,126)" id="use5805" xlink:href="#path5786" y="0" x="0" />
-<use height="540" width="1250" transform="rotate(180,488,63)" id="use5819" xlink:href="#path5786" y="0" x="0" />
-</g>
-<g id="tool-spray" inkscape:label="#g7080" transform="translate(0,-1.97016)">
-<path id="path5769" d="M 452.0128,501.9702 476.0128,501.9702 476.0128,525.9702 452.0128,525.9702 452.0128,501.9702 Z" style="fill:none" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-linecap:round;stroke-linejoin:round" d="M 469.8452,510.2732 469.2327,508.1467 C 468.7258,506.7309 465.0328,507.0571 465.5559,508.5258 L 465.9811,510.5868" id="path6331-0" sodipodi:nodetypes="cccc" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315-8" d="M 473.7308,513.5934 472.1639,512.8256 464.3872,513.8848 463.0416,515.3827 464.3028,522.4454 C 466.9577,520.9127 468.5125,528.5106 475.4151,524.5254 L 473.7308,513.5934 Z" style="fill:url(#linearGradient7073);fill-rule:evenodd" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient7067);fill-rule:evenodd;stroke:url(#linearGradient7070);stroke-linecap:round;stroke-linejoin:round" d="M 471.9733,512.7668 471.1215,510.2029 464.6474,511.2517 464.2939,514.1903" id="path5211-1" sodipodi:nodetypes="cccc" />
-<path inkscape:connector-curvature="0" id="path6317-2" style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round" d="M 463.9963,521.9146 463.2051,516.279 C 462.9903,515.3399 463.6342,514.1117 464.3545,514.1514 467.0077,514.2975 469.5957,513.9521 472.0919,512.8733 472.5701,512.6666 473.78,513.5671 473.8862,514.218 L 475.1086,523.9944" sodipodi:nodetypes="ccsscc" />
-<path inkscape:connector-curvature="0" style="fill:none" d="M 470.9273,507.9889 464.9223,508.624 465.1688,512.7295 470.8672,511.5634 470.9273,507.9889 Z" id="path6311-1" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" style="fill:none;stroke:#ffffff;stroke-width:1.2262259px;stroke-linecap:round" d="M 471.4201,516.1999 472.444,524.1043" id="path6321-0" sodipodi:nodetypes="cc" />
-<circle transform="matrix(0.4357219,0,0,0.4357219,373.8457,283.2499)" id="path23475" style="color:#000000;fill:#000000;stroke-width:0.2295042" cx="206.5896" cy="518.4219" r="0.9253731" />
-<use height="1052.362" width="744.0945" transform="matrix(1.058646,0,0,1.058646,-27.96918,-28.7297)" id="use23477" xlink:href="#path23475" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="translate(0,-2.208168)" id="use23479" xlink:href="#use23477" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="translate(-0.6982309,1.078919)" id="use23481" xlink:href="#use23479" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.376269,0,0,1.376269,-175.6356,-191.1342)" id="use23483" xlink:href="#use23477" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.376269,0,0,1.376269,-175.9675,-192.0674)" id="use23485" xlink:href="#use23479" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.376269,0,0,1.376269,-175.6304,-191.5728)" id="use23487" xlink:href="#use23481" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.50123,0,0,1.50123,-233.3762,-255.2029)" id="use23489" xlink:href="#use23483" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.50123,0,0,1.50123,-233.501,-255.1293)" id="use23491" xlink:href="#use23485" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.50123,0,0,1.50123,-233.2539,-255.1948)" id="use23493" xlink:href="#use23487" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.485643,0,0,1.485643,-226.3497,-247.0189)" id="use23495" xlink:href="#use23489" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.485643,0,0,1.485643,-226.1442,-246.9565)" id="use23497" xlink:href="#use23491" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="matrix(1.485643,0,0,1.485643,-226.0963,-247.259)" id="use23499" xlink:href="#use23493" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="translate(-4.235815,-1.303328)" id="use23501" xlink:href="#path23475" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="translate(0.4480189,2.688113)" id="use23503" xlink:href="#use23501" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="translate(-4.724563)" id="use23505" xlink:href="#use23485" y="0" x="0" />
-<use height="1052.362" width="744.0945" transform="translate(0.6923928,4.113628)" id="use23509" xlink:href="#use23505" y="0" x="0" />
-</g>
-<g transform="translate(-1.367187e-5,-1.000977e-6)" id="exchange-positions" inkscape:label="#g5791">
-<rect y="217.9579" x="1105.989" height="24" width="24" id="rect5511" style="opacity:0;fill:none" />
-<g transform="translate(1106.989,-822.8055)" id="g6870">
-<rect style="fill:none;stroke:url(#linearGradient6608);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" id="rect6878" width="9.674352" height="9.673169" x="0.462824" y="1042.226" />
-<rect style="fill:url(#linearGradient6610);fill-rule:evenodd;stroke:url(#linearGradient6612);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect6880" width="7.840812" height="7.835659" x="1.379594" y="1043.145" />
-</g>
-<g id="g6888" transform="translate(1119.244,-812.1375)">
-<rect y="1042.226" x="0.462824" height="9.673169" width="9.674352" id="rect6890" style="fill:none;stroke:url(#linearGradient6614);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="1043.145" x="1.379594" height="7.835659" width="7.840812" id="rect6892" style="fill:url(#linearGradient6616);fill-rule:evenodd;stroke:url(#linearGradient6618-9);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="g6894" transform="matrix(-1.5,0,0,-1.5,1679.065,1036.244)" style="fill:#ffff00">
-<path inkscape:connector-curvature="0" style="fill:#000000;fill-rule:evenodd" d="M 373.1989,533.2837 373.1989,533.9837 376.1989,533.9837 377.3634,534.9837 377.3634,537.4991 376.0661,537.4991 377.693,539.4959 379.3768,537.4991 378.0814,537.4991 378.0814,534.7171 376.3988,533.2837 373.1989,533.2837 Z" id="path6896" sodipodi:nodetypes="cccccccccccc" />
-</g>
-<g style="fill:#ffff00" transform="matrix(1.5,0,0,1.5,556.9348,-576.9256)" id="g5473">
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccc" id="path5524" d="M 373.1989,533.2837 373.1989,533.9837 376.1989,533.9837 377.3634,534.9837 377.3634,537.4991 376.0661,537.4991 377.693,539.4959 379.3768,537.4991 378.0814,537.4991 378.0814,534.7171 376.3988,533.2837 373.1989,533.2837 Z" style="fill:#000000;fill-rule:evenodd" />
-</g>
-</g>
-<g id="exchange-positions-zorder" transform="translate(31.99999,-26)" inkscape:label="exchange-positions-zorder">
-<rect y="244" x="1106" height="24" width="24" id="rect5511-4" style="opacity:0;fill:none" />
-<g transform="matrix(0.8490566,0,0,0.8490566,1107,-639.5161)" id="g6870-3">
-<rect style="fill:none;stroke:url(#linearGradient8772);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" id="rect6878-1" width="9.674352" height="9.673169" x="0.462824" y="1042.226" />
-<rect style="fill:url(#linearGradient8774);fill-rule:evenodd;stroke:url(#linearGradient8776);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect6880-9" width="7.840812" height="7.835659" x="1.379594" y="1043.145" />
-</g>
-<g id="g6888-1" transform="matrix(0.8490566,0,0,0.8490566,1120,-632.5151)">
-<rect y="1042.226" x="0.462824" height="9.673169" width="9.674352" id="rect6890-0" style="fill:none;stroke:url(#linearGradient8766);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="1043.145" x="1.379594" height="7.835659" width="7.840812" id="rect6892-9" style="fill:url(#linearGradient8768);fill-rule:evenodd;stroke:url(#linearGradient8770);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g id="g6894-4" transform="matrix(-1.214009,0,0,-1.214009,1572.567,906.4111)" style="fill:#ffff00">
-<path style="fill:#000000;fill-rule:evenodd" d="M 372.8308,534.9312 372.8308,535.6312 377.8463,535.6312 379.0109,536.6312 379.0109,537.4991 377.7136,537.4991 379.3404,539.4959 381.0242,537.4991 379.7289,537.4991 379.7289,536.3645 378.0462,534.9312 372.8308,534.9312 Z" id="path6896-5" sodipodi:nodetypes="cccccccccccc" inkscape:connector-curvature="0" />
-</g>
-<g style="fill:#ffff00" transform="matrix(1.214009,0,0,1.214009,661.8316,-398.1738)" id="g5473-6">
-<path sodipodi:nodetypes="cccccccccccc" id="path5524-2" d="M 373.9715,533.0883 373.9715,533.7883 379.5775,533.7883 380.7421,534.7883 380.7421,535.6562 379.4448,535.6562 381.0716,537.653 382.7554,535.6562 381.4601,535.6562 381.4601,534.5216 379.7774,533.0883 373.9715,533.0883 Z" style="fill:#000000;fill-rule:evenodd" inkscape:connector-curvature="0" />
-</g>
-<use xlink:href="#path10475" height="1250" width="1250" id="use7638-0" y="0" x="0" transform="translate(1155.035,83.0092)" />
-<use xlink:href="#path10483" height="1250" width="1250" id="use8589-6" y="0" x="0" transform="translate(1152.062,76.0092)" />
-<use transform="translate(1155.062,79.0092)" x="0" y="0" id="use7946" width="1250" height="1250" xlink:href="#path10483" />
-<path id="path10449-0" d="M 1116.127,258 1115.191,258 1115.191,263.4545 1113.318,263.4545 1115.574,266.0069 1118,263.4545 1116.127,263.4545 1116.127,258 Z" style="fill:#c80000;fill-rule:evenodd" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" />
-<path id="path10449-0-8" d="M 1112.236,266 1111.354,266 1111.354,263.0642 1111.354,260.5455 1109.591,260.5455 1111.964,258.1621 1114,260.5455 1112.236,260.5455 1112.236,266 Z" style="fill:#c80000;fill-rule:evenodd" sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" />
-</g>
-<g id="exchange-positions-clockwise" transform="translate(23.99999,-26)" inkscape:label="exchange-positions-clockwise">
-<rect style="opacity:0;fill:none" id="rect8798" width="24" height="24" x="1146" y="244" />
-<g id="g8800" transform="matrix(0.8490566,0,0,0.8490566,1147,-639.5161)">
-<rect y="1042.226" x="0.462824" height="9.673169" width="9.674352" id="rect8802" style="fill:none;stroke:url(#linearGradient8980);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" />
-<rect y="1043.145" x="1.379594" height="7.835659" width="7.840812" id="rect8804" style="fill:url(#linearGradient8982);fill-rule:evenodd;stroke:url(#linearGradient8984);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-</g>
-<g transform="matrix(0.8490566,0,0,0.8490566,1160,-632.5151)" id="g8806">
-<rect style="fill:none;stroke:url(#linearGradient8986);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" id="rect8808" width="9.674352" height="9.673169" x="0.462824" y="1042.226" />
-<rect style="fill:url(#linearGradient8988);fill-rule:evenodd;stroke:url(#linearGradient8990);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect8810" width="7.840812" height="7.835659" x="1.379594" y="1043.145" />
-</g>
-<g style="fill:#ffff00" transform="matrix(-1.214009,0,0,-1.214009,1612.567,906.4111)" id="g8812">
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccc" id="path8814" d="M 372.8308,534.9312 372.8308,535.6312 377.8463,535.6312 379.0109,536.6312 379.0109,537.4991 377.7136,537.4991 379.3404,539.4959 381.0242,537.4991 379.7289,537.4991 379.7289,536.3645 378.0462,534.9312 372.8308,534.9312 Z" style="fill:#000000;fill-rule:evenodd" />
-</g>
-<g id="g8816" transform="matrix(1.214009,0,0,1.214009,701.8316,-398.1738)" style="fill:#ffff00">
-<path inkscape:connector-curvature="0" style="fill:#000000;fill-rule:evenodd" d="M 373.9715,533.0883 373.9715,533.7883 379.5775,533.7883 380.7421,534.7883 380.7421,535.6562 379.4448,535.6562 381.0716,537.653 382.7554,535.6562 381.4601,535.6562 381.4601,534.5216 379.7774,533.0883 373.9715,533.0883 Z" id="path8818" sodipodi:nodetypes="cccccccccccc" />
-</g>
-<g inkscape:transform-center-x="3.042784" transform="matrix(0.5350629,0.5892249,-0.5892249,0.5350629,686.558,-576.3326)" id="g8956">
-<path inkscape:connector-curvature="0" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5077016;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1.5077017, 1.5077017" d="M 1173.915,279.6085 C 1176.943,279.6085 1179.4,277.1505 1179.4,274.1219 1179.4,271.0933 1176.943,268.6353 1173.915,268.6353" id="path11132-6" sodipodi:nodetypes="csc" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" style="fill:#c80000;fill-rule:evenodd" d="M 1172.21,279.2058 1175.981,276.0625 1175.981,282.3493 1172.21,279.2058 Z" id="path11140-4" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="csc" id="path8948" d="M 1173.102,268.4294 C 1170.074,268.4294 1167.617,270.8874 1167.617,273.916 1167.617,276.9446 1170.074,279.4026 1173.102,279.4026" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5077016;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1.5077017, 1.5077017;stroke-dashoffset:0.3015402" />
-<path inkscape:connector-curvature="0" id="path8950" d="M 1174.61,268.7807 1170.839,271.9241 1170.839,265.6374 1174.61,268.7807 Z" style="fill:#c80000;fill-rule:evenodd" sodipodi:nodetypes="cccc" />
-</g>
-</g>
-<g id="text_remove_kerns" transform="translate(-693.87,270.0361)">
-<g transform="matrix(0.922438,0,0,0.922438,106.4646,4.828925)" id="g2607">
-<rect style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.7402338px" id="rect3019" width="29.18541" height="29.19199" x="1352.876" y="51.67942" />
-<path id="text3027" d="M 1357.349,63.74015 1356.074,67.18071 1358.629,67.18071 1357.349,63.74015 M 1356.819,62.81866 1357.884,62.81866 1360.531,69.73218 1359.555,69.73218 1358.921,67.95865 1355.791,67.95865 1355.158,69.73218 1354.167,69.73218 1356.819,62.81866 M 1364.123,63.74015 1362.848,67.18071 1365.402,67.18071 1364.123,63.74015 M 1363.593,62.81866 1364.658,62.81866 1367.305,69.73218 1366.328,69.73218 1365.695,67.95865 1362.564,67.95865 1361.932,69.73218 1360.94,69.73218 1363.593,62.81866" style="fill:#000000" inkscape:connector-curvature="0" />
-<path id="text3097" d="M 1370.815,63.74015 1369.54,67.18071 1372.095,67.18071 1370.815,63.74015 M 1370.284,62.81866 1371.35,62.81866 1373.997,69.73218 1373.02,69.73218 1372.388,67.95865 1369.257,67.95865 1368.624,69.73218 1367.633,69.73218 1370.284,62.81866 M 1377.589,63.74015 1376.314,67.18071 1378.868,67.18071 1377.589,63.74015 M 1377.059,62.81866 1378.124,62.81866 1380.771,69.73218 1379.794,69.73218 1379.161,67.95865 1376.03,67.95865 1375.397,69.73218 1374.407,69.73218 1377.059,62.81866" style="fill:#000000" inkscape:connector-curvature="0" />
-</g>
-<rect y="51.96389" x="1353.87" height="28" width="28" id="rect6752" style="fill:none" />
-</g>
-<g id="text_line_spacing" transform="translate(-0.0508118,0.0123038)">
-<rect y="321.9877" x="480.0508" height="28" width="28" id="rect6696" style="fill:none" />
-<g transform="translate(-787.9306,270.3015)" id="g7600">
-<use xlink:href="#g3805" height="1250" width="1250" transform="matrix(0.684222,0,0,0.684222,1257.669,-36.0664)" id="use3810" y="0" x="0" />
-<g transform="matrix(0.684211,0,0,0.684211,1257.617,-22.11736)" id="g3813">
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient12388);stroke:#000000" d="M 33,129.5 38,129.5 44.5,147.5 40.5,147.5 39.5,145 31.5,145 30.5,147.5 26.5,147.5 33,129.5 Z M 38.5,141.5 35.5,133 32.5,141.5 38.5,141.5 Z" id="path3815" sodipodi:nodetypes="ccccccccccccc" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3817" d="M 33.5,130.5 28,146" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:1.0000002px;stroke-linecap:round" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3819" d="M 38,142.5244 32.5,142.5244" style="fill:url(#radialGradient12390);fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient12392);stroke-width:1.0000002px;stroke-linecap:round" />
-</g>
-</g>
-</g>
-<g id="text_word_spacing" transform="matrix(0.942859,0,0,0.942859,-695.392,273.9242)">
-<g transform="matrix(0.992487,0,0,0.989897,10.11498,1.557598)" id="g7621-3">
-<rect style="fill:none" id="rect6706-6" width="29.92172" height="30" x="1310" y="49.93628" />
-</g>
-<g transform="matrix(1.060604,0,0,1.060604,769.377,-305.3736)" style="font-size:16px;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0;word-spacing:0;fill:#0000ff;stroke:#000000;stroke-width:0.5" id="text11660">
-<path style="color:#000000;fill:url(#linearGradient5857-1);stroke:none;stroke-width:0.9999999" d="M 510,347.3125 510,349 C 510.2685,349.074 510.5104,349.2153 510.7187,349.4375 511.0312,349.7656 511.1719,350.2396 511.1875,350.875 L 510,350.875 510,352.2187 513.375,352.2187 C 513.406,350.5365 513.0573,349.3125 512.3437,348.5 511.7449,347.8138 510.9656,347.4228 510,347.3125 Z M 511.0625,353.0937 C 510.9427,353.5104 510.7656,353.8125 510.5312,354 510.3747,354.1253 510.2054,354.2084 510,354.25 L 510,355.9062 C 510.7568,355.8582 511.4126,355.6745 511.9375,355.3125 512.5469,354.8906 512.9687,354.2708 513.25,353.4687 L 511.0625,353.0937 Z" id="path11665" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" d="M 522.7891,355.75 520.75,355.75 520.75,354.5312 C 520.4114,355.0052 520.0104,355.3594 519.5469,355.5937 519.0885,355.8229 518.625,355.9375 518.1562,355.9375 517.2031,355.9375 516.3854,355.5547 515.7031,354.7891 515.026,354.0182 514.6875,352.9453 514.6875,351.5703 514.6875,350.1641 515.0182,349.0964 515.6797,348.3672 516.3411,347.6328 517.1771,347.2656 518.1875,347.2656 519.1146,347.2656 519.9167,347.651 520.5937,348.4219 L 520.5937,344.2969 522.7891,344.2969 522.7891,355.75 M 516.9297,351.4219 C 516.9297,352.3073 517.0521,352.9479 517.2969,353.3437 517.651,353.9167 518.1458,354.2031 518.7812,354.2031 519.2864,354.2031 519.7161,353.9896 520.0703,353.5625 520.4245,353.1302 520.6016,352.487 520.6016,351.6328 520.6016,350.6797 520.4297,349.9948 520.0859,349.5781 519.7422,349.1563 519.3021,348.9453 518.7656,348.9453 518.2448,348.9453 517.8073,349.1537 517.4531,349.5703 517.1042,349.9818 516.9297,350.599 516.9297,351.4219" style="color:#000000;fill:url(#linearGradient5857-64)" id="path11667" />
-<path inkscape:connector-curvature="0" d="M 533.2031,347.4531 533.2031,349.2031 531.7031,349.2031 531.7031,352.5469 C 531.7031,353.224 531.7161,353.6198 531.7421,353.7344 531.7731,353.8437 531.8381,353.9349 531.9374,354.0078 532.0416,354.0808 532.1666,354.1172 532.3124,354.1172 532.5155,354.1172 532.8098,354.0472 533.1952,353.9062 L 533.3827,355.6094 C 532.8723,355.8281 532.2942,355.9375 531.6484,355.9375 531.2525,355.9375 530.8958,355.8725 530.578,355.7422 530.2603,355.6068 530.026,355.4349 529.8749,355.2266 529.7291,355.013 529.6275,354.7266 529.5702,354.3672 529.5232,354.112 529.5002,353.5964 529.5002,352.8203 L 529.5002,349.2031 528.4924,349.2031 528.4924,347.4531 529.5002,347.4531 529.5002,345.8047 531.7034,344.5234 531.7034,347.4531 533.2034,347.4531" style="color:#000000;fill:url(#linearGradient5621-6)" id="path11669" />
-<path style="color:#000000;fill:url(#linearGradient5621-8);stroke:none;stroke-width:0.684211" d="M 534.75,344.2812 534.75,355.75 536.9375,355.75 536.9375,351.5937 C 536.9375,350.8958 536.9945,350.3542 537.125,350 537.2604,349.6406 537.4635,349.3958 537.75,349.2187 537.827,349.1707 537.8948,349.1287 537.9779,349.0937 L 537.9779,347.625 C 537.5928,347.8308 537.2639,348.1184 536.9375,348.5 L 536.9375,344.2812 Z" id="path11671" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
-<path style="color:#000000;-inkscape-font-specification:Arial;fill:#000000;stroke:none" d="M 537.9836,347.3884 C 537.721,347.4997 537.4121,347.7687 537.1875,347.9687 L 537.1875,344.2812 537.1875,344.0312 536.9375,344.0312 534.75,344.0312 534.5,344.0312 534.5,344.0312 534.5,344.2812 534.5,355.75 534.5,356 534.75,356 536.9375,356 537.1875,356 537.1875,355.75 537.1875,351.5937 C 537.1875,350.9095 537.2655,350.3927 537.375,350.0937 L 537.344,350.0937 C 537.4635,349.7765 537.6315,349.5882 537.8752,349.4375 537.9352,349.4005 537.9302,349.3315 538.0086,349.3066 M 535,344.5312 536.6875,344.5312 536.6875,348.5 536.6875,349.1875 537.125,348.6562 C 537.3171,348.4317 537.763,348.0907 537.971,347.9353 L 537.971,348.7165 C 537.927,348.7385 537.6679,348.9735 537.625,349 537.2958,349.2035 537.0575,349.5047 536.9062,349.9062 L 536.8752,349.9062 C 536.7248,350.3156 536.6877,350.8822 536.6877,351.5937 L 536.6877,355.5 535.0002,355.5 535.0002,344.5312 Z" id="path11671-3" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc" />
-<path style="color:#000000;-inkscape-font-specification:Arial;fill:#000000;stroke:none" d="M 509.9927,349.2942 C 510.2199,349.3572 510.3528,349.4034 510.5312,349.5937 L 510.5312,349.6247 C 510.7348,349.8384 510.7944,350.2077 510.8437,350.6247 L 510,350.6247 510,352.4684 513.375,352.4684 513.625,352.4684 513.625,352.2184 C 513.657,350.4993 513.3003,349.2191 512.5312,348.3434 511.8927,347.6117 511.0148,347.1783 509.9981,347.0622 Z M 512.1562,348.6562 C 512.7755,349.3614 513.0814,350.4745 513.0937,351.9687 L 510.0014,351.9687 510.0014,351.125 511.1875,351.125 511.4375,351.125 511.4375,350.875 C 511.4215,350.2174 511.262,349.668 510.9062,349.2812 510.8962,349.2712 510.8812,349.2912 510.8752,349.2812 510.6953,349.0947 510.2189,348.8896 509.9961,348.7977 L 509.9961,347.6212 C 510.8736,347.7582 511.5344,348.1 512.1564,348.6562 Z M 510.875,352.8125 510.813,353.0312 C 510.7024,353.4159 510.5555,353.6685 510.3755,353.8125 510.2454,353.9166 510.1681,353.9719 509.9987,353.999 L 509.9987,356.1573 C 510.7883,356.1403 511.5165,355.926 512.0889,355.5313 512.748,355.0749 513.2013,354.4003 513.4951,353.5625 L 513.5891,353.2813 513.2766,353.2193 511.0891,352.8443 510.8704,352.8133 Z M 511.1875,353.375 512.8125,353.6562 C 512.553,354.2465 512.2511,354.7685 511.7812,355.0937 511.3784,355.3716 510.5824,355.5778 510.0014,355.6509 L 510.0014,354.4946 C 510.1586,354.4376 510.5593,354.2901 510.6875,354.1875 510.9159,354.0048 511.062,353.6974 511.1875,353.375 Z" id="path11665-7" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3817-5" d="M 537.7359,348.3968 C 537.4759,348.5671 537.1938,348.8009 536.9338,349.1468" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-linecap:round" />
-<path inkscape:connector-curvature="0" d="M 515.1958,351.9239 C 515.1958,350.5177 515.416,349.4058 516.0775,348.6766 516.7389,347.9422 517.6191,347.6855 518.6295,347.7739" style="color:#000000;-inkscape-font-specification:Arial;fill:none;stroke:url(#linearGradient12203);stroke-linecap:round" id="path11667-0" sodipodi:nodetypes="ccc" />
-<path inkscape:connector-curvature="0" d="M 520.929,352.4257 C 520.929,353.1543 520.643,353.6684 520.1629,354.1523 519.8022,354.5158 519.3421,354.6878 518.8187,354.642" style="color:#000000;-inkscape-font-specification:Arial;fill:none;stroke:url(#linearGradient12201);stroke-linecap:round" id="path11667-0-3" sodipodi:nodetypes="csc" />
-<path inkscape:connector-curvature="0" d="M 511.4152,353.5647 C 511.1329,354.2528 510.8173,354.5035 510.2283,354.8466" style="color:#000000;-inkscape-font-specification:Arial;fill:none;stroke:url(#linearGradient12220);stroke-linecap:round" id="path11667-0-3-8" sodipodi:nodetypes="cc" />
-</g>
-<path style="fill:#b2dafe;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.7256771px;stroke-linecap:round" d="M 1333.3,63.71495 1334.346,63.71495" id="path3819-4" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3817-9" d="M 1330.49,63.76263 1330.978,63.76167" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.7256771px;stroke-linecap:round" />
-</g>
-<g id="text_letter_spacing" transform="matrix(0.942859,0,0,0.942859,-725.403,273.9242)">
-<g transform="matrix(0.992487,0,0,0.989897,10.11498,1.557598)" id="g7621">
-<rect style="fill:none" id="rect6706" width="29.92172" height="30" x="1310" y="49.93628" />
-</g>
-<g id="g11383" transform="translate(-0.306361)">
-<use xlink:href="#use3810" x="0" y="0" id="use11377" transform="matrix(1.060604,0,0,1.060604,-41.64705,2.913479)" width="1250" height="1250" />
-<use xlink:href="#g3813" x="0" y="0" id="use11379" transform="matrix(1.060604,0,0,1.060604,-26.74292,-11.87951)" width="1250" height="1250" />
-</g>
-</g>
-<g id="text_horz_kern" transform="translate(-668.472,236.5637)">
-<g transform="translate(0.437484)" id="g7628">
-<path style="color:#000000;fill:none;stroke:#000000;stroke-width:1.1457608;stroke-linecap:square" d="M 1283.273,89.56319 1283.273,110.3093" id="path2219" transform="translate(-1.25,-0.5)" inkscape:connector-curvature="0" />
-<use xlink:href="#g11383" height="1250" width="1250" id="use11389" y="0" x="0" transform="matrix(0.942859,0,0,0.942859,32.60846,37.50304)" />
-</g>
-<g transform="matrix(0.935775,0,0,0.933333,42.8409,7.095812)" id="g7662-8">
-<g id="g6738-8" transform="translate(0.232684,0.559354)" />
-<rect style="fill:none" id="rect6736-4" width="29.92172" height="30" x="1309.75" y="83.93627" />
-</g>
-</g>
-<g id="text_vert_kern" transform="translate(-741.483,236.5637)">
-<g transform="matrix(0.935775,0,0,0.933333,85.72702,7.095784)" id="g7662">
-<rect style="fill:none" id="rect6736" width="29.92172" height="30" x="1309.884" y="83.93627" />
-</g>
-<g id="g7648">
-<path id="path2221" style="color:#000000;fill:none;stroke:#000000;stroke-width:1.199;stroke-linecap:square" d="M 1324.696,87.52091 1324.696,109.2329 M 1338.079,101.3851 1324.888,101.3851 M 1324.388,105.8851 1311.388,105.8851" sodipodi:nodetypes="cccccc" transform="translate(0.755145,1.059354)" inkscape:connector-curvature="0" />
-<use xlink:href="#use11377" height="1250" width="1250" transform="matrix(0.942859,0,0,0.942859,75.57607,38.50326)" id="use11392" y="0" x="0" />
-</g>
-<use xlink:href="#g3813" height="1250" width="1250" transform="translate(50.538,22.7904)" id="use3728" y="0" x="0" />
-</g>
-<g id="text_rotation" transform="translate(-724.5715,236.3563)">
-<g transform="matrix(0.935775,0,0,0.933333,88.85183,7.069861)" id="g7699">
-<g id="g6769" transform="translate(-0.990112,0.559353)" />
-<rect style="fill:none" id="rect6775" width="29.92172" height="30" x="1352.59" y="84.18627" />
-</g>
-<g transform="matrix(0.9996731,0,0,1,2.594501,1.121155e-6)" id="g7685">
-<path id="path3005" style="color:#000000;fill:none;stroke:#000000;stroke-width:1.1707308;stroke-linecap:square" d="M 1366.121,88.83886 1366.121,110.0337 M 1378.044,110.0737 1366.419,103.4487" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<use xlink:href="#use11392" height="1250" width="1250" transform="translate(40.65159,-3.000001)" id="use11398" y="0" x="0" />
-<use xlink:href="#g3813" x="0" y="0" id="use3744" transform="rotate(29.99998,1274.974,261.7423)" width="1250" height="1250" />
-</g>
-<g transform="matrix(0.935775,0,0,0.933333,167.3071,6.369855)" id="g7641">
-<rect style="fill:none" id="rect15695" width="29.92172" height="30" x="1268.75" y="84.93627" />
-</g>
-</g>
-<g id="text_subscript" transform="matrix(0.942859,0,0,0.942859,-575.1453,244.6314)" style="fill:#cccccc">
-<rect style="fill:none" id="rect5911" width="29.92172" height="30" x="1310" y="49.93628" />
-<g transform="matrix(1.060604,0,0,1.060604,610.0014,-259.457)" style="font-style:italic;font-weight:bold;font-size:24px;font-family:Arial;-inkscape-font-specification:'Arial Bold Italic';letter-spacing:0;word-spacing:0;fill:none;stroke:#000000;stroke-width:0.75" id="text5975">
-<path inkscape:connector-curvature="0" d="M 669.6914,306.5078 666.5977,310 662.4727,310 668.2266,303.625 665.0625,297.5547 668.6367,297.5547 670.4531,301.1055 673.6055,297.5547 677.6953,297.5547 671.918,304.0117 675.0586,310 671.4844,310 669.6914,306.5078" style="color:#000000;fill:url(#linearGradient5918-3-6)" id="path5935" />
-<path inkscape:connector-curvature="0" d="M 677.6619,306.7104 679.8405,306.7104 680.3889,310.74 C 680.526,311.7759 680.6022,312.5021 680.6174,312.9185 680.9018,312.0908 681.2928,311.2173 681.7905,310.2982 L 683.7253,306.7104 686.041,306.7104 681.044,315.5922 C 680.6327,316.3285 680.3077,316.844 680.069,317.1385 679.8354,317.433 679.551,317.6641 679.2159,317.8317 678.8858,317.9993 678.4871,318.083 678.0199,318.083 677.5578,318.083 677.0373,318.0017 676.4584,317.8393 L 676.6488,316.2092 C 676.9129,316.2854 677.1693,316.3235 677.4182,316.3235 678.0885,316.3235 678.6395,315.8156 679.0711,314.8 L 677.6619,306.7104" style="color:#000000;fill:url(#linearGradient5932-9-2)" id="path5937" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6782" d="M 663.8155,309.4334 668.6847,304.0513 M 670.6799,301.7978 673.812,298.1916" style="stroke:#808080;stroke-width:0.5;stroke-linecap:round" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6792" d="M 677.1662,316.7991 C 678.0717,316.7991 678.6479,316.511 679.43,315.1938 M 681.0764,312.7654 684.0193,307.25" style="stroke:#83c3fd;stroke-width:0.5;stroke-linecap:round" />
-</g>
-</g>
-<g id="text_superscript">
-<rect y="292" x="629.9996" height="28" width="28.00001" id="rect5896" style="fill:none" />
-<g id="text5926" style="font-style:italic;font-weight:bold;font-size:24px;font-family:Arial;-inkscape-font-specification:'Arial Bold Italic';letter-spacing:0;word-spacing:0;stroke:#000000;stroke-width:0.75">
-<path id="path5908" style="fill:url(#linearGradient5918)" d="M 639.6914,308.5078 636.5977,312 632.4727,312 638.2266,305.625 635.0625,299.5547 638.6367,299.5547 640.4531,303.1055 643.6055,299.5547 647.6953,299.5547 641.918,306.0117 645.0586,312 641.4844,312 639.6914,308.5078" inkscape:connector-curvature="0" />
-<path id="path5910" style="fill:url(#linearGradient5932)" d="M 647.6619,294.3104 649.8405,294.3104 650.3889,298.34 C 650.526,299.3759 650.6022,300.1021 650.6174,300.5185 650.9018,299.6908 651.2928,298.8173 651.7905,297.8982 L 653.7253,294.3104 656.041,294.3104 651.044,303.1922 C 650.6327,303.9285 650.3077,304.444 650.069,304.7385 649.8354,305.033 649.551,305.2641 649.2159,305.4317 648.8858,305.5993 648.4871,305.683 648.0199,305.683 647.5578,305.683 647.0373,305.6018 646.4584,305.4393 L 646.6488,303.8092 C 646.9129,303.8854 647.1693,303.9235 647.4182,303.9235 648.0885,303.9235 648.6395,303.4156 649.0711,302.4 L 647.6619,294.3104" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6006" d="M 633.8112,311.4529 638.6803,306.0707 M 640.6756,303.8172 643.8077,300.2111" style="fill:none;stroke:#808080;stroke-width:0.5;stroke-linecap:round" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6790" d="M 647.196,304.4839 C 648.1015,304.4839 648.6777,304.1958 649.4598,302.8786 M 651.1062,300.4502 654.0491,294.9348" style="fill:none;stroke:#82c2fe;stroke-width:0.5;stroke-linecap:round" />
-</g>
-</g>
-<g id="tool-measure" transform="matrix(0,1,1,0,303.3594,23.95023)" inkscape:label="#tool-measure">
-<rect transform="matrix(-0.5,0.8660254,0.8660254,0.5,0,0)" style="fill:url(#linearGradient10236);fill-rule:evenodd;stroke:url(#linearGradient10238);stroke-width:0.9999998;stroke-linejoin:round;stroke-miterlimit:0" id="rect10234" width="9" height="17" x="-125.5174" y="455.1053" />
-<g transform="matrix(-0.5,0.8660254,0.8660254,0.5,583.0174,-336.6053)" id="g11186">
-<rect y="117.5082" x="456.5083" height="18.99178" width="10.99167" id="rect10232" style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<g id="g11166" transform="matrix(-0.5,-0.8660254,-0.8660254,0.5,827.0362,462.4495)">
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" d="M 468.4443,154.4562 469.4443,156.1883" id="path11168" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
-<path inkscape:connector-curvature="0" id="path11170" d="M 469.1764,151.7242 C 469.1764,151.7242 471.1764,155.1883 471.1764,155.1883" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" d="M 471.9085,152.4562 472.9085,154.1883" id="path11172" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
-<path inkscape:connector-curvature="0" id="path11174" d="M 472.6405,149.7242 C 472.6405,149.7242 474.6405,153.1883 474.6405,153.1883" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" />
-<path inkscape:connector-curvature="0" id="path11176" d="M 475.3726,150.4562 476.3725,152.1883" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" sodipodi:nodetypes="cc" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" d="M 476.1046,147.7242 C 476.1046,147.7242 478.1046,151.1883 478.1046,151.1883" id="path11180" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path11182" d="M 478.8367,148.4562 479.8367,150.1883" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" sodipodi:nodetypes="cc" />
-<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" d="M 479.5687,145.7242 C 479.5687,145.7242 481.5687,149.1883 481.5687,149.1883" id="path11184" inkscape:connector-curvature="0" />
-</g>
-</g>
-</g>
-<g id="g7621-2" transform="matrix(0.9357753,0,0,0.9333333,-316.6114,-22.53112)">
-<rect y="49.93628" x="1310" height="30" width="29.92172" id="rect6706-4" style="fill:none" />
-</g>
-<g id="snap-text-baseline" inkscape:label="#toggle_snap_text_baseline">
-<path style="fill:none;stroke:#008000;stroke-width:0.9413574px;stroke-linecap:square" d="M 912.5,44.98691 924.5,44.98691" id="path13356" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
-<use height="1250" width="1250" transform="translate(-363.3501,-20.14579)" id="use11377-6" y="0" x="0" xlink:href="#use3810" />
-<rect transform="rotate(-45)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect3224-2-8-6-5-8" width="3.584063" height="3.621212" x="611.2788" y="674.8813" />
-</g>
-<rect style="color:#000000;fill:none;stroke-width:0.4532662" id="rect2808-3" width="24" height="24" x="930" y="25" />
-<g id="snap-others" inkscape:label="#toggle_snap_others">
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3570-5" d="M 935,31.25 935,39.75" style="fill:none;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="30.1269" x="932.9951" height="4.01786" width="4.0099" id="rect3568-1" style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
-<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path6498-1-8" d="M 939,39 945,30" style="color:#000000;fill:#c00000;stroke:#0065ff;stroke-width:1px" />
-<circle transform="matrix(0.8749999,0,0,0.875,282.6876,5.625)" id="path6530-3-7-6" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.1428572;stroke-linecap:round" cx="753.5" cy="33" r="2" />
-<g transform="translate(1.5,0.5)" id="g13570">
-<path inkscape:connector-curvature="0" id="path6380-5" d="M 943,37.5 943,40.5" style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" />
-<path inkscape:connector-curvature="0" id="path6380-4-1" d="M 943,41.5 943,44.5" style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" />
-<path inkscape:connector-curvature="0" id="path6380-8-4" d="M 939.5,41 942.5,41" style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" />
-<path inkscape:connector-curvature="0" id="path6380-4-0-5" d="M 943.5,41 946.5,41" style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" />
-</g>
-<circle transform="matrix(0.8749999,0,0,0.875,277.1876,14.625)" id="path6530-3-7-6-0" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.1428572;stroke-linecap:round" cx="753.5" cy="33" r="2" />
-</g>
-<g inkscape:label="#mesh-gradient" id="mesh-gradient" transform="translate(507.9575,294.8933)">
-<rect style="color:#000000;fill:none" id="box" width="24" height="24" x="-19.9575" y="90.10669" />
-<path sodipodi:nodetypes="ccccc" id="path6190" d="M -0.4575,109.6067 C -3.9575,102.1067 4.0425,102.1067 -0.4575,94.60669 -7.9575,99.10669 -7.9575,91.10669 -15.4575,94.60669 -10.9575,102.1067 -18.9575,102.1067 -15.4575,109.6067 -7.9575,106.1067 -7.9575,114.1067 -0.4575,109.6067 Z" style="fill:url(#linearGradient6212);stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
-<rect style="fill:#ffffff;stroke:#000000" id="rect6105" width="4" height="4" x="-17.4575" y="92.60669" />
-<use transform="matrix(1,0,0,0.99644,13.7166,13.06755)" xlink:href="#rect3568" id="use3133" x="0" y="0" width="100%" height="100%" />
-<use transform="matrix(1,0,0,0.99644,13.7265,-1.932448)" xlink:href="#rect3568" id="use3135" x="0" y="0" width="100%" height="100%" />
-<use transform="matrix(1,0,0,0.99644,-1.2735,13.06755)" xlink:href="#rect3568" id="use3137" x="0" y="0" width="100%" height="100%" />
-</g>
-<g id="paint-gradient-mesh" inkscape:label="#fill_mesh">
-<rect style="fill:#99b6d4" height="9.5" width="9.5" y="347" x="1095.5" id="rect3140" />
-<rect style="fill:#ffffff" height="9.5" width="9.5" y="357" x="1095.5" id="rect3142" />
-<rect style="fill:#99b6d4" height="9.5" width="9.5" y="357" x="1105" id="rect3144" />
-<rect style="fill:#ffffff" height="9.5" width="9.5" y="347" x="1105" id="rect3146" />
-<use xlink:href="#rect4381" transform="translate(425.0351,282.0202)" id="use3148" x="0" y="0" width="100%" height="100%" />
-</g>
-<g id="paint-gradient-conical" inkscape:label="#fill_conical">
-<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#ffffff" sodipodi:type="arc" sodipodi:start="0" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="1.047198" d="M 1144.5,357 A 9.5,9.5 0 0 1 1139.75,365.2272 L 1135,357 Z" id="path3145" />
-<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#ffffff" sodipodi:type="arc" sodipodi:start="4.18879" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="5.235988" d="M 1130.25,348.7728 A 9.5,9.5 0 0 1 1139.75,348.7728 L 1135,357 Z" id="path3147" />
-<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#99b6d4" sodipodi:type="arc" sodipodi:start="1.047198" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="2.094395" d="M 1139.75,365.2272 A 9.5,9.5 0 0 1 1130.25,365.2272 L 1135,357 Z" id="path3149" />
-<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#ffffff" sodipodi:type="arc" d="M 1130.25,365.2272 A 9.5,9.5 0 0 1 1125.5,357 L 1135,357 Z" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="3.141593" sodipodi:start="2.094395" id="path3151" />
-<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#99b6d4" sodipodi:type="arc" sodipodi:start="3.141593" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="4.18879" d="M 1125.5,357 A 9.5,9.5 0 0 1 1130.25,348.7728 L 1135,357 Z" id="path3153" />
-<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#99b6d4" sodipodi:type="arc" d="M 1139.75,348.7728 A 9.5,9.5 0 0 1 1144.5,357 L 1135,357 Z" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="6.283185" sodipodi:start="5.235988" id="path3155" />
-<circle style="fill:none;stroke:#000000" id="path3157" cx="1135" cy="357" r="9.5" />
-</g>
-<g id="dialog-filters" inkscape:label="#dialog-filters">
-<path sodipodi:nodetypes="cscccccc" inkscape:connector-curvature="0" id="path7138" d="M 272.415,308.6281 C 272.509,305.3138 278.0595,305.1187 279.875,305.1077 281.8707,305.0957 287.2213,305.3694 287.3348,308.5442 L 281.3157,314.8308 281.3157,319.0217 C 279.8863,319.4867 279.7151,319.5463 278.3661,319.0217 L 278.3661,314.8308 Z" style="opacity:0.909;fill:url(#linearGradient7163);stroke:#000000;stroke-width:0.9143469;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:10" />
-<ellipse id="path7140" style="opacity:0.909;fill:url(#radialGradient7218);stroke:url(#radialGradient7220);stroke-width:3.5711801;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:10" transform="matrix(0.115021,0,0,0.1903986,253.0723,212.7017)" cx="234.355" cy="496.273" rx="60.6092" ry="14.6472" />
-<rect style="fill:none" id="rect4326-5" width="16" height="16" x="272" y="304" />
-</g>
-<g id="symbols_old" inkscape:label="#symbols" transform="translate(0.6024061,-0.8334349)">
-<path transform="matrix(1.19879,-0.3146184,0.3093107,1.219499,-108.76,51.0626)" d="M 339.0043,147.223 C 338.4457,147.5641 335.3375,144.7402 334.7054,144.5708 334.0526,144.3959 329.8432,145.2506 329.491,144.6739 329.1499,144.1153 331.9738,141.0071 332.1432,140.375 332.3181,139.7223 331.4634,135.5128 332.0401,135.1606 332.5987,134.8196 335.7069,137.6434 336.339,137.8128 336.9917,137.9877 341.2012,137.133 341.5534,137.7097 341.8944,138.2683 339.0705,141.3765 338.9012,142.0086 338.7263,142.6613 339.581,146.8708 339.0043,147.223 Z" inkscape:randomized="0" inkscape:rounded="0.1295655" inkscape:flatsided="false" sodipodi:arg2="1.807987" sodipodi:arg1="1.047198" sodipodi:r2="3.476299" sodipodi:r1="6.964194" sodipodi:cy="141.1918" sodipodi:cx="335.5222" sodipodi:sides="4" id="path6040-9" style="color:#000000;fill:none;stroke:#c80000;stroke-width:0.7902741;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:0.790274, 0.790274" sodipodi:type="star" />
-<path transform="matrix(1.19879,-0.3146184,0.3093107,1.219499,-106.2295,53.36064)" d="M 339.0043,147.223 C 338.4457,147.5641 335.3375,144.7402 334.7054,144.5708 334.0526,144.3959 329.8432,145.2506 329.491,144.6739 329.1499,144.1153 331.9738,141.0071 332.1432,140.375 332.3181,139.7223 331.4634,135.5128 332.0401,135.1606 332.5987,134.8196 335.7069,137.6434 336.339,137.8128 336.9917,137.9877 341.2012,137.133 341.5534,137.7097 341.8944,138.2683 339.0705,141.3765 338.9012,142.0086 338.7263,142.6613 339.581,146.8708 339.0043,147.223 Z" inkscape:randomized="0" inkscape:rounded="0.1295655" inkscape:flatsided="false" sodipodi:arg2="1.807987" sodipodi:arg1="1.047198" sodipodi:r2="3.476299" sodipodi:r1="6.964194" sodipodi:cy="141.1918" sodipodi:cx="335.5222" sodipodi:sides="4" id="path6040" style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.7902742;stroke-linejoin:round;stroke-miterlimit:0" sodipodi:type="star" />
-</g>
-<g transform="translate(10.12068,24.83988)" inkscape:label="#symbols" id="symbols">
-<rect style="color:#000000;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" id="rect14677" width="16" height="16" x="319.423" y="108.194" />
-<path style="color:#000000;fill:url(#linearGradient5545-0-70);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000007;stroke-linejoin:round;stroke-miterlimit:0" d="M 321.4694,109.627 C 325.4824,108.4924 329.457,108.3482 333.3766,109.627 332.4143,112.6883 333.2424,115.5915 332.8513,118.5393 332.529,120.9684 330.1322,122.4298 327.4581,123.6656 325.2231,122.4245 322.5151,121.4377 322.0298,118.5393 321.5371,115.5973 322.3342,111.8965 321.4694,109.627 Z" id="path13801" inkscape:connector-curvature="0" sodipodi:nodetypes="ccscsc" />
-<g id="g14615" style="color:#000000;fill:url(#linearGradient15270-5);fill-rule:evenodd" transform="matrix(0.0362255,0,0,0.0374743,341.0312,112.2468)">
-<path sodipodi:nodetypes="czczc" inkscape:connector-curvature="0" id="path13803" d="M -477.8634,129.033 C -525.6256,93.68458 -437.3889,30.32002 -406.5889,99.87521 -375.7888,169.4304 -429.5858,207.6033 -446.2757,164.6702 -428.8608,164.5632 -412.1147,145.3545 -432.5068,116.074 -452.899,86.79346 -476.4068,97.43427 -477.8634,129.033 Z" />
-<path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path13805" d="M -406.5888,201.5225 C -363.777,163.166 -382.1057,79.29995 -426.0273,42.77461 -416.9104,15.273 -401.3604,-9.214447 -375.0013,-28.09496 -353.5282,-11.39881 -334.7341,8.935762 -323.9752,42.77461 -370.9234,76.33181 -386.2968,164.4648 -343.4137,201.5225 -351.1706,216.0243 -356.7218,232.671 -375.0012,238.7548 -389.3257,233.7161 -400.9014,219.5169 -406.5888,201.5225 Z" />
-<path inkscape:transform-center-y="-7.288905" inkscape:transform-center-x="-68.84826" d="M -273.4425,129.033 C -225.6803,93.68458 -313.917,30.32002 -344.717,99.87521 -375.5171,169.4304 -321.7201,207.6033 -305.0302,164.6702 -322.4451,164.5632 -339.1912,145.3545 -318.7991,116.074 -298.4069,86.79346 -274.8991,97.43427 -273.4425,129.033 Z" id="path13807" inkscape:connector-curvature="0" sodipodi:nodetypes="czczc" />
-<path inkscape:connector-curvature="0" id="path13809" d="M -443.0312,121.4688 A 10.001,10.001 0 1 0 -443.0312,141.4688 L -307.7812,141.4688 A 10.001,10.001 0 1 0 -307.7812,121.4688 L -443.0312,121.4688 Z" style="-inkscape-font-specification:sans-serif;stroke-width:20" />
-</g>
-</g>
-<g id="symbol-add" inkscape:label="#symbols" transform="translate(10.12068,44.83988)">
-<rect y="108.194" x="319.6498" height="16" width="16" id="rect15227" style="color:#000000;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" />
-<ellipse style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linejoin:round;stroke-miterlimit:0" id="path10909" transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)" cx="337.3443" cy="163.0209" rx="3.963478" ry="4.113043" />
-<path inkscape:connector-curvature="0" id="path4685-2" d="M 319.522,118.6983 319.522,116.5755 327.1498,116.5755 327.1498,111.194 325.1498,111.194 328.0237,108.194 330.8976,111.194 328.8976,111.194 328.8976,118.6983 Z" style="fill:#000000;fill-rule:evenodd" sodipodi:nodetypes="cccccccccc" />
-</g>
-<g 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;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" />
-<g id="g7224" transform="translate(-0.0655561,0.8269009)">
-<path inkscape:connector-curvature="0" id="path4011" d="M 334.5089,115.0312 320.3373,115.0312" style="fill:none;stroke:#000000;stroke-width:1.4" />
-</g>
-</g>
-<g transform="matrix(0,1,1,0,221.5126,-146.552)" inkscape:label="#symbols" id="symbol-remove">
-<rect style="color:#000000;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" id="rect10952" width="16" height="16" x="319.6498" y="108.194" />
-<ellipse transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)" id="path10954" style="color:#000000;fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:0.9166216;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:0.9166216, 1.8332432" cx="337.3443" cy="163.0209" rx="3.963478" ry="4.113043" />
-<path sodipodi:nodetypes="cccccccccc" style="fill:#000000;fill-rule:evenodd" d="M 319.522,118.6983 319.522,116.5755 327.1498,116.5755 327.1498,111.194 325.1498,111.194 328.0237,108.194 330.8976,111.194 328.8976,111.194 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;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" id="rect10979" width="16" height="16" x="319.6498" y="108.194" />
-<ellipse style="color:#000000;fill:none;fill-rule:evenodd;stroke:#c80000;stroke-width:0.6086934;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:0.6086934, 0.6086934" id="path10989" transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)" cx="337.3443" cy="163.0209" rx="3.963478" ry="4.113043" />
-<ellipse transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" id="path10981" style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linejoin:round;stroke-miterlimit:0" cx="337.3443" cy="163.0209" rx="3.963478" ry="4.113043" />
-</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;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" />
-<ellipse transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)" id="path11049" style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.6086935;stroke-linejoin:round;stroke-miterlimit:0" cx="337.3443" cy="163.0209" rx="3.963478" ry="4.113043" />
-<ellipse style="color:#000000;fill:none;fill-rule:evenodd;stroke:#c80000;stroke-width:0.9166215;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:0.9166215, 0.9166215" id="path11051" transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" cx="337.3443" cy="163.0209" rx="3.963478" ry="4.113043" />
-</g>
-<g transform="translate(30.12068,84.83988)" inkscape:label="#symbols" id="symbol-fit">
-<rect style="color:#000000;fill:url(#linearGradient15175-8);fill-rule:evenodd;stroke:#3465a4;stroke-width:1.0000001;stroke-linecap:square;stroke-dasharray:1.0000001, 2.0000002" 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.3078,163.0209 A 3.963478,4.113043 0 0 1 337.3443,167.1339 L 337.3443,163.0209 Z" sodipodi:ry="4.113043" sodipodi:rx="3.963478" sodipodi:cy="163.0209" sodipodi:cx="337.3443" id="path11111" style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.3492142;stroke-linejoin:round;stroke-miterlimit:0" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="1.570796" />
-<ellipse style="color:#000000;fill:none;stroke:#c80000;stroke-width:0.9166215;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:0.9166215, 0.9166215" id="path11051-8" transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" cx="337.3443" cy="163.0209" rx="3.963478" ry="4.113043" />
-</g>
-<g id="pack-more">
-<rect y="235" x="350" height="16" width="16" style="fill:none" id="rect19733" />
-<g style="fill:#98b6d6;fill-opacity:0.7;stroke:#000000" id="g19735">
-<rect x="351.5" y="236.5" width="3" height="3" id="rect19737" />
-<rect x="356.5" y="236.5" width="3" height="3" id="rect19739" />
-<rect x="361.5" y="236.5" width="3" height="3" id="rect19741" />
-<rect x="351.5" y="241.5" width="3" height="3" id="rect19743" />
-<rect x="356.5" y="241.5" width="3" height="3" id="rect19745" />
-<rect x="361.5" y="241.5" width="3" height="3" id="rect19747" />
-<rect x="351.5" y="246.5" width="3" height="3" id="rect19749" />
-<rect x="356.5" y="246.5" width="3" height="3" id="rect19751" />
-<rect x="361.5" y="246.5" width="3" height="3" id="rect19753" />
-</g>
-</g>
-<g id="pack-less">
-<rect y="215" x="350" height="16" width="16" style="fill:none" id="rect19756" />
-<g style="fill:#98b6d6;fill-opacity:0.7;stroke:#000000" id="g19758">
-<rect x="351.5" y="216.5" width="5" height="5" id="rect19760" />
-<rect x="359.5" y="216.5" width="5" height="5" id="rect19762" />
-<rect x="351.5" y="224.5" width="5" height="5" id="rect19764" />
-<rect x="359.5" y="224.5" width="5" height="5" id="rect19766" />
-</g>
-</g>
-<g id="boundingbox_top_left" transform="translate(998.1471,-107)" inkscape:label="#boundingbox_top_left">
-<rect y="475" x="-262.1471" height="16" width="16" id="rect7835" style="fill:none" />
-<path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path7837" d="M -257.6471,489.5 -257.6471,479.5 -247.6471,479.5 -247.6471,481.5 -255.6471,481.5 -255.6471,489.5 Z" style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" />
-<circle transform="matrix(1.05938,0,0,1.05938,-645.2144,-1289.466)" id="path7824" style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g id="boundingbox_top" transform="translate(1022.147,-107)">
-<rect style="fill:none" id="rect7846" width="16" height="16" x="-262.1471" y="475" />
-<path style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" d="M -260.6471,479.5 -247.6471,479.5 -247.6471,481.5 -260.6471,481.5 Z" id="path7848" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<circle style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" id="path7850" transform="matrix(1.05938,0,0,1.05938,-642.7144,-1289.466)" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g id="boundingbox_top_right" transform="rotate(90,322.4265,952.5735)">
-<rect style="fill:none" id="rect7856" width="16" height="16" x="-262.1471" y="475" />
-<path style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" d="M -257.6471,489.5 -257.6471,479.5 -247.6471,479.5 -247.6471,481.5 -255.6471,481.5 -255.6471,489.5 Z" id="path7858" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" />
-<circle style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" id="path7860" transform="matrix(1.05938,0,0,1.05938,-645.2144,-1289.466)" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g transform="rotate(90,310.4265,964.5735)" id="boundingbox_right">
-<rect y="475" x="-262.1471" height="16" width="16" id="rect7864" style="fill:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path7866" d="M -260.6471,479.5 -247.6471,479.5 -247.6471,481.5 -260.6471,481.5 Z" style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" />
-<circle transform="matrix(1.05938,0,0,1.05938,-642.7144,-1289.466)" id="path7868" style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g transform="rotate(180,268.9265,453.5)" id="boundingbox_bottom_right">
-<rect y="475" x="-262.1471" height="16" width="16" id="rect7876" style="fill:none" />
-<path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path7878" d="M -257.6471,489.5 -257.6471,479.5 -247.6471,479.5 -247.6471,481.5 -255.6471,481.5 -255.6471,489.5 Z" style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" />
-<circle transform="matrix(1.05938,0,0,1.05938,-645.2144,-1289.466)" id="path7880" style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g id="boundingbox_bottom" transform="rotate(180,256.9265,453.5)">
-<rect style="fill:none" id="rect7884" width="16" height="16" x="-262.1471" y="475" />
-<path style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" d="M -260.6471,479.5 -247.6471,479.5 -247.6471,481.5 -260.6471,481.5 Z" id="path7886" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<circle style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" id="path7888" transform="matrix(1.05938,0,0,1.05938,-642.7144,-1289.466)" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g id="boundingbox_bottom_left" transform="rotate(-90,215.4265,-45.57354)">
-<rect style="fill:none" id="rect7896" width="16" height="16" x="-262.1471" y="475" />
-<path style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" d="M -257.6471,489.5 -257.6471,479.5 -247.6471,479.5 -247.6471,481.5 -255.6471,481.5 -255.6471,489.5 Z" id="path7898" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" />
-<circle style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" id="path7900" transform="matrix(1.05938,0,0,1.05938,-645.2144,-1289.466)" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g transform="rotate(-90,203.4265,-57.57354)" id="boundingbox_left">
-<rect y="475" x="-262.1471" height="16" width="16" id="rect7905" style="fill:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path7907" d="M -260.6471,479.5 -247.6471,479.5 -247.6471,481.5 -260.6471,481.5 Z" style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" />
-<circle transform="matrix(1.05938,0,0,1.05938,-642.7144,-1289.466)" id="path7909" style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g transform="translate(1022.147,-83)" id="boundingbox_center">
-<rect y="475" x="-262.1471" height="16" width="16" id="rect7917" style="fill:none" />
-<circle transform="matrix(1.05938,0,0,1.05938,-642.7144,-1286.966)" id="path7922" style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333" cx="366.7874" cy="1670.756" r="3.775792" />
-</g>
-<g id="path-mode-bspline" transform="matrix(1.395066,-1.366399,1.366399,1.395066,-466.9364,1306.511)" inkscape:label="#bspline_mode">
-<path inkscape:connector-curvature="0" style="color:#000000;fill:none;stroke:#0000ff;stroke-width:0.9960949;stroke-linecap:round;stroke-linejoin:round" d="M 961.8604,56.03607 C 961.8604,56.03607 963.2385,54.53784 965.1208,54.27549 967.0031,54.01314 968.7049,56.05562 968.7049,56.05562" id="path-mode-spiro-3-8-8" sodipodi:nodetypes="czc" inkscape:label="#spiro_splines_mode" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" id="path6177-8-2" d="M 960.716,54.82044 965.2198,50.24637 969.7936,54.72621" style="fill:none;stroke:#646464;stroke-width:0.7501467;stroke-linecap:round;stroke-linejoin:round" />
-<rect y="-639.9971" x="724.2002" height="1.022964" width="1.022542" id="rect8372-9-8" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" transform="rotate(44.40522)" />
-<rect transform="rotate(44.40522)" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="rect6941" width="1.022542" height="1.022964" x="724.2002" y="-633.3398" />
-<rect y="-639.9971" x="730.8575" height="1.022964" width="1.022542" id="rect6954" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" transform="rotate(44.40522)" />
-</g>
-<g id="on" transform="translate(658.5112,-35.5352)">
-<ellipse style="color:#000000;fill:url(#linearGradient33206);fill-rule:evenodd;stroke:url(#linearGradient33208);stroke-linejoin:round" id="ellipse10646" cx="18.48884" cy="207.5353" rx="6.611154" ry="6.515604" transform="translate(-1.031494e-7,-4.35791e-5)" />
-<path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" id="path10653" d="M 15.35239,207.5955 17.38434,209.4915 21.62529,205.579" style="color:#000000;fill:none;stroke:url(#linearGradient33214)" />
-<ellipse transform="matrix(0.8723531,0,0,0.8723531,2.360043,26.49119)" ry="6.515604" rx="6.611154" cy="207.5353" cx="18.48884" id="ellipse10289" style="color:#000000;fill:none;stroke:url(#linearGradient33204);stroke-linejoin:round" />
-<rect style="color:#000000;fill:none;stroke-width:0.531496" id="rect9056-1" width="15.99999" height="15.99999" x="10.48884" y="199.5352" />
-</g>
-<g id="off" transform="translate(634.5112,-18.0497)">
-<ellipse ry="6.515604" rx="6.611154" cy="190.0497" cx="18.48884" id="path10622" style="color:#000000;fill:url(#linearGradient33193);fill-rule:evenodd;stroke:url(#linearGradient33195);stroke-linejoin:round" />
-<path inkscape:transform-center-y="3.571599" inkscape:transform-center-x="-5.253213" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path10677" d="M 15.90515,187.466 21.07254,192.6334" style="color:#000000;fill:none;stroke:url(#linearGradient33210)" />
-<path style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient33212)" d="M 21.07254,187.466 15.90515,192.6334" id="path10688" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" inkscape:transform-center-x="3.571613" inkscape:transform-center-y="5.253199" />
-<ellipse style="color:#000000;fill:none;stroke:url(#linearGradient33191);stroke-linejoin:round" id="ellipse10324" cx="18.48884" cy="207.5353" rx="6.611154" ry="6.515604" transform="matrix(0.8723531,0,0,0.8723531,2.360048,9.005643)" />
-<rect style="color:#000000;fill:none;stroke-width:0.531496" id="rect9056-0" width="15.99999" height="15.99999" x="10.48885" y="182.0497" />
-</g>
-<g inkscape:label="#interactive_simplify" id="interactive_simplify" transform="translate(212.4641,-329.0092)">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect17937" width="24" height="24" x="284.9688" y="527.3309" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" id="path14318-5" inkscape:connector-curvature="0" />
-</g>
-<g transform="matrix(0.6666667,0,0,0.6666667,336.0615,-149.1782)" id="interactive_simplify-16px" inkscape:label="#interactive_simplify-16px">
-<rect y="527.3309" x="284.9688" height="24" width="24" id="rect17971" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path inkscape:connector-curvature="0" id="path17973" d="M 291.8638,531.1819 C 290.9049,531.1594 290.0426,531.449 289.4616,532.0297 288.8807,532.6101 288.6201,533.3798 288.5126,534.1698 288.2973,535.7499 288.6292,537.5849 288.9715,539.3941 289.3139,541.2033 289.6808,542.9869 289.6841,544.1479 289.6857,544.7282 289.5784,545.123 289.4953,545.2546 289.4123,545.386 289.4415,545.4101 289.0814,545.4011 288.2665,545.3804 287.9879,545.1095 287.6986,544.5055 287.4094,543.9014 287.2807,542.9221 287.3071,541.9061 287.3601,539.8742 287.9465,537.7691 287.9465,537.7691 L 286.144,537.2593 C 286.144,537.2593 285.4955,539.507 285.4343,541.8583 285.4037,543.0339 285.5007,544.2557 286.0089,545.3166 286.5171,546.3775 287.6077,547.2377 289.0335,547.2739 289.8622,547.2948 290.6786,546.8914 291.0809,546.2544 291.4832,545.6173 291.5619,544.9005 291.5598,544.1421 291.5553,542.6259 291.15,540.8235 290.8134,539.0449 290.4769,537.2662 290.2226,535.5141 290.3712,534.4234 290.4456,533.8778 290.6049,533.5391 290.7881,533.3561 290.9712,533.173 291.2172,533.0434 291.8189,533.0575 292.4123,533.0714 292.7209,533.1999 292.8918,533.3307 293.0627,533.4614 293.1614,533.6209 293.2325,533.939 293.3747,534.5751 293.2177,535.7526 292.9565,536.9804 292.6954,538.2085 292.3532,539.476 292.3848,540.6557 292.4006,541.2457 292.5143,541.8595 292.9255,542.3792 293.3369,542.8991 294.02,543.1925 294.7448,543.2297 295.3457,543.2607 295.8946,543.172 296.3586,542.9171 296.8226,542.6622 297.1575,542.243 297.3414,541.8217 297.7093,540.979 297.6502,540.1291 297.6174,539.3574 297.5847,538.5857 297.5652,537.871 297.6456,537.5607 297.6857,537.4055 297.7178,537.3838 297.7187,537.3832 297.7195,537.3826 297.7472,537.3435 297.9807,537.3494 298.265,537.3567 298.2928,537.3984 298.3356,537.4339 298.3784,537.4694 298.4555,537.5737 298.589,537.8029 298.7224,538.0321 298.9129,538.3827 299.2902,538.6871 299.6676,538.9916 300.2078,539.1877 300.8194,539.2138 302.3402,539.2787 303.1146,538.6839 303.7427,538.3407 304.8109,537.7577 306.5236,537.907 307.9417,538.3773 L 308.5331,536.6003 C 306.8424,536.0394 304.6745,535.6941 302.8443,536.6932 301.9815,537.1647 302.0191,537.3887 300.8983,537.3409 300.5851,537.3277 300.5237,537.2737 300.4675,537.2283 300.4112,537.1829 300.3372,537.0808 300.2083,536.8595 300.0794,536.638 299.9009,536.295 299.5325,535.9892 299.164,535.6834 298.6247,535.4918 298.0286,535.4766 297.489,535.463 296.9552,535.5985 296.5529,535.9187 296.1505,536.2392 295.9375,536.6822 295.8319,537.0904 295.6206,537.9065 295.7135,538.7059 295.7446,539.439 295.7758,540.1724 295.7344,540.8185 295.6235,541.0724 295.5681,541.1995 295.5368,541.2287 295.4574,541.2724 295.3778,541.3162 295.2025,541.3754 294.8434,541.357 294.4839,541.3384 294.4433,541.2763 294.3957,541.216 294.348,541.156 294.2673,540.9688 294.2577,540.605 294.2382,539.8774 294.5197,538.6399 294.7899,537.3691 295.0601,536.0985 295.3424,534.7803 295.0631,533.5307 294.9234,532.9058 294.5956,532.2768 294.0296,531.8437 293.4635,531.4106 292.7252,531.2021 291.8638,531.1819 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
-</g>
+ <dc:format>image/svg+xml</dc:format>
+ <dc:type
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+ <cc:license
+ rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" />
+ <dc:creator>
+ <cc:Agent>
+ <dc:title>Inkscape Developers</dc:title>
+ </cc:Agent>
+ </dc:creator>
+ <dc:rights>
+ <cc:Agent>
+ <dc:title>Inkscape Developers</dc:title>
+ </cc:Agent>
+ </dc:rights>
+ <dc:title></dc:title>
+ </cc:Work>
+ <cc:License
+ rdf:about="http://creativecommons.org/licenses/GPL/2.0/">
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Reproduction" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/Distribution" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/Notice" />
+ <cc:permits
+ rdf:resource="http://web.resource.org/cc/DerivativeWorks" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/ShareAlike" />
+ <cc:requires
+ rdf:resource="http://web.resource.org/cc/SourceCode" />
+ </cc:License>
+ </rdf:RDF>
+ </metadata>
+ <g
+ id="pixelart-trace"
+ transform="translate(-18.39737,3.867394)"
+ inkscape:label="#g10374">
+ <g
+ transform="translate(4.748695,-1.046956)"
+ id="g10366">
+ <rect
+ style="fill:#ff0000"
+ id="rect10358"
+ width="8"
+ height="8"
+ x="248.6895"
+ y="82.21829" />
+ <rect
+ y="90.21829"
+ x="248.6895"
+ height="8"
+ width="8"
+ id="rect10364"
+ style="fill:#00ff00" />
+ <rect
+ y="90.21829"
+ x="256.6895"
+ height="8"
+ width="8"
+ id="rect10362"
+ style="fill:#ffff00" />
+ <rect
+ y="82.21829"
+ x="256.6895"
+ height="8"
+ width="8"
+ id="rect10360"
+ style="fill:#0000ff" />
+ </g>
+ <g
+ transform="translate(2.35278,0.184832)"
+ id="g10339">
+ <path
+ style="fill:none;stroke:url(#linearGradient10399);stroke-width:1px"
+ d="M 256.013,84.079 C 256.013,84.079 260.1779,83.14391 262.513,85.479 264.8481,87.81409 264.013,92.079 264.013,92.079"
+ id="path9547"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="czc" />
+ <rect
+ style="fill:#000000"
+ id="rect9507"
+ width="1"
+ height="1"
+ x="255.5127"
+ y="90.57895" />
+ <rect
+ y="83.57895"
+ x="255.5127"
+ height="1"
+ width="1"
+ id="rect9509"
+ style="fill:#cccccc" />
+ <rect
+ style="fill:#4d4d4d"
+ id="rect9513"
+ width="1"
+ height="1"
+ x="254.5127"
+ y="89.57895" />
+ <rect
+ style="fill:#4d4d4d"
+ id="rect9515"
+ width="1"
+ height="1"
+ x="254.5127"
+ y="88.57895" />
+ <rect
+ style="fill:#808080"
+ id="rect9517"
+ width="1"
+ height="1"
+ x="253.5127"
+ y="87.57895" />
+ <rect
+ style="fill:#808080"
+ id="rect9519"
+ width="1"
+ height="1"
+ x="253.5127"
+ y="86.57895" />
+ <rect
+ style="fill:#b3b3b3"
+ id="rect9521"
+ width="1"
+ height="1"
+ x="254.5127"
+ y="85.57895" />
+ <rect
+ style="fill:#b3b3b3"
+ id="rect9523"
+ width="1"
+ height="1"
+ x="254.5127"
+ y="84.57895" />
+ <rect
+ y="91.57895"
+ x="256.5127"
+ height="1"
+ width="1"
+ id="rect9525"
+ style="fill:#000000" />
+ <rect
+ y="92.57895"
+ x="257.5127"
+ height="1"
+ width="1"
+ id="rect9527"
+ style="fill:#4d4d4d" />
+ <rect
+ style="fill:#4d4d4d"
+ id="rect9531"
+ width="1"
+ height="1"
+ x="258.5127"
+ y="92.57895" />
+ <rect
+ style="fill:#808080"
+ id="rect9533"
+ width="1"
+ height="1"
+ x="259.5127"
+ y="93.57895" />
+ <rect
+ style="fill:#808080"
+ id="rect9535"
+ width="1"
+ height="1"
+ x="260.5127"
+ y="93.57895" />
+ <rect
+ style="fill:#b3b3b3"
+ id="rect9537"
+ width="1"
+ height="1"
+ x="261.5127"
+ y="92.57895" />
+ <rect
+ style="fill:#b3b3b3"
+ id="rect9539"
+ width="1"
+ height="1"
+ x="262.5127"
+ y="92.57895" />
+ <rect
+ style="fill:#cccccc"
+ id="rect9541"
+ width="1"
+ height="1"
+ x="263.5127"
+ y="91.57895" />
+ </g>
+ </g>
+ <use
+ xlink:href="#g6790"
+ inkscape:label="#use6796"
+ height="1250"
+ width="1250"
+ transform="translate(49.67355,1.575031)"
+ id="draw-polygon"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#g6786"
+ inkscape:label="#use6794"
+ height="1250"
+ width="1250"
+ transform="translate(64.14951,-2.923161)"
+ id="draw-star"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#transform-skew-horizontal"
+ inkscape:label="#use5772"
+ height="1250"
+ width="1250"
+ transform="rotate(-90,822.5335,214.531)"
+ id="transform-skew-vertical"
+ y="0"
+ x="0" />
+ <g
+ id="inkscape-logo"
+ transform="matrix(0.1336824,0,0,0.1336824,329.5233,64.55912)"
+ inkscape:label="#inkscape_options">
+ <use
+ xlink:href="#outline1"
+ height="128"
+ width="128"
+ y="0"
+ x="0"
+ style="opacity:0.1;fill:none"
+ id="use32"
+ class="outline-big" />
+ <use
+ xlink:href="#outline1"
+ height="128"
+ width="128"
+ y="0"
+ x="0"
+ style="opacity:0.2;fill:none"
+ id="use34"
+ class="outline-small" />
+ <use
+ xlink:href="#outline1"
+ height="128"
+ width="128"
+ y="0"
+ x="0"
+ id="use36"
+ class="black;" />
+ <use
+ xlink:href="#outline1"
+ height="128"
+ width="128"
+ y="0"
+ x="0"
+ style="opacity:0.2;fill:none"
+ id="use38"
+ class="stroke-highlight"
+ clip-path="url(#clipoutline1)" />
+ <use
+ xlink:href="#outline1"
+ height="128"
+ width="128"
+ y="0"
+ x="0"
+ id="use40"
+ class="specularity"
+ style="opacity:0.5;fill:url(#linearGradient3731)" />
+ <use
+ xlink:href="#outline1"
+ height="128"
+ width="128"
+ y="0"
+ x="0"
+ id="use42"
+ class="low-specularity"
+ style="opacity:0.25;fill:url(#linearGradient3733)" />
+ <path
+ class="specularity"
+ style="opacity:0.5;fill:url(#linearGradient3735)"
+ d="M 16.8,56.9 C 5.7,67.9 25.2,64.8 40.2,70.7 L 71.2,16.2 C 66.5,11.4 60.5,11.8 56.2,16.2 Z"
+ id="path44"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient3737)"
+ class="shade"
+ d="M 8.9,61.7 C 6.3,71.1 22.3,70.9 31.2,74.4 32.7,73.5 33.5,72.4 32.4,71.4 25.2,67.8 11,67.8 8.9,61.7 Z M 120,62.7 C 117.3,71.6 94.5,75 86.6,79.7 85.5,80.8 86.2,81.8 87.5,82.8 97.3,77.9 123.2,74.1 120,62.7 Z M 44.3,73.7 C 41.1,73.7 39.1,75.3 44.9,77.4 52.6,78 63.7,81.1 66.1,82.1 69.8,75.5 45.1,73.7 44.3,73.7 Z M 23.2,82.2 C 21.9,83.1 21.2,84.1 22.3,85.1 25.8,88.8 43.8,92.2 47.5,95.8 48.4,94.6 48.7,93.4 47.6,92.2 44.2,88.8 28.2,85.6 23.2,82.2 Z M 103,91.3 C 102.3,92.1 101.7,93 101.5,94 101.5,96.1 116.9,97.4 116.9,93.4 116.6,92.7 116.3,92 115.7,91.3 112.9,92.9 106,92.5 103,91.3 Z M 95.6,91.7 C 92.2,98.8 84.3,94.2 75.8,102.8 74.4,104.3 75.2,105.1 76.5,105.8 85.2,97.6 93.2,102.9 96.2,94 96.4,93.1 96.2,92.4 95.6,91.7 Z M 41.6,98.7 C 39.2,101.9 35,104 32,101.4 31.7,101.2 31.5,100.9 31.3,100.6 30.2,102 30.2,103.5 32,105.1 35.6,108.2 41.3,104.3 43,99.9 42.7,99.4 42.1,99 41.6,98.7 Z M 98.3,99.7 C 96,103.4 100.6,106.4 104.7,104.1 105.3,103.4 105.2,102 104.1,100.6 101.7,101.8 99.4,101.1 98.3,99.7 Z M 43.9,103.6 C 43,104.7 42.7,106 43.8,107.2 47.4,110.8 55.8,107.3 57.3,115.8 58.4,121.9 72,118.7 78.8,113.8 80.3,112.16 79.6,111.1 78.3,110.3 71.2,115.1 58.3,118 57.3,112.2 55.8,103.7 47.5,107.1 43.9,103.6 Z"
+ id="path46"
+ inkscape:connector-curvature="0" />
+ <path
+ id="icecap"
+ class="full-specularity"
+ style="fill:url(#linearGradient3739)"
+ d="M 70.5,15.5 86.8,32.1 C 88.3,33.6 88.3,36.7 87.4,37.6 L 79.3,31 77.7,40.7 71,37.1 60.1,44 56.5,29.5 50.7,42.1 36.2,42 C 33.4,42 33.8,39.1 36.7,36.2 42.4,29.9 53.5,19.2 57,15.5 60.6,11.8 66.9,11.9 70.5,15.5 Z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(839.0362,80.70908)"
+ id="layer1" />
+ <g
+ style="stroke:#000000"
+ transform="translate(-251.412,155.0283)"
+ id="path-simplify"
+ inkscape:label="#simplify">
+ <path
+ id="path10936"
+ style="fill:none;stroke-linecap:round"
+ d="M 486.953,205.5 501.953,205.5 M 501.953,201.4255 C 495.453,205.9255 493.453,194.4542 486.953,200.4255 M 486.953,193.6678 C 488.953,198.6678 489.0896,191.5995 490.953,190.6678 492.953,189.6678 493.2942,193.6914 493.953,195.6678 494.953,198.6678 495.953,192.6678 497.953,191.6678 500.7814,190.2536 497.953,198.6678 501.953,194.6678"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="paint-none"
+ transform="matrix(0.79999,0,0,0.799999,325.9038,309.7987)"
+ inkscape:label="#fill_none">
+ <rect
+ y="11.50168"
+ x="773.8801"
+ height="24.99999"
+ width="25"
+ id="rect194"
+ style="fill:none" />
+ <path
+ id="path2473"
+ d="M 781.3777,19.00161 791.3808,29.00165"
+ style="fill:none;stroke:#000000;stroke-width:2.9587891;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2474"
+ d="M 791.3808,19.00161 781.3777,29.00164"
+ style="fill:none;stroke:#000000;stroke-width:2.9587891;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="stroke-cap-butt"
+ transform="translate(44.5,219.7886)"
+ inkscape:label="#cap_butt">
+ <rect
+ style="color:#000000;fill:none;stroke-width:9"
+ id="rect3854"
+ width="24"
+ height="24"
+ x="899.5"
+ y="158.25" />
+ <path
+ style="fill:#99b6d4;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:square"
+ d="M 903,181.7114 903,167.7887 920,167.7887 920,181.7114"
+ id="path3844"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,1)"
+ id="use5734"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,5)"
+ id="use5736"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,9)"
+ id="use5738"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,13)"
+ id="use5741"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="translate(75.52,219.75)"
+ id="stroke-cap-square"
+ inkscape:label="#cap_square">
+ <rect
+ style="color:#000000;fill:none;stroke-width:9"
+ id="rect3876"
+ width="24"
+ height="24"
+ x="899.5"
+ y="158.25" />
+ <path
+ style="fill:#99b6d4;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 902.98,181.75 902.94,158.75 919.98,158.75 920.02,181.75"
+ id="path3878"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,13)"
+ id="use5743"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,9)"
+ id="use5746"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,5)"
+ id="use5748"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,1)"
+ id="use5751"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="translate(105.56,219.75)"
+ id="stroke-cap-round"
+ inkscape:label="#cap_round">
+ <rect
+ style="color:#000000;fill:none;stroke-width:9"
+ id="rect3904"
+ width="24"
+ height="24"
+ x="899.5"
+ y="158.25" />
+ <path
+ style="fill:#99b6d4;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 902.94,181.75 902.98,168.75 C 902.98,162.75 905.48,158.75 911.48,158.75 917.48,158.75 919.98,162.75 920.02,168.75 L 919.98,181.75"
+ id="path3906"
+ sodipodi:nodetypes="ccscc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,13)"
+ id="use5753"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,9)"
+ id="use5755"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,5)"
+ id="use5759"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-9.999997,1)"
+ id="use5761"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="translate(74.46,189.75)"
+ id="stroke-join-bevel"
+ inkscape:label="#join_bevel">
+ <path
+ style="fill:#99b6d4;fill-rule:evenodd"
+ d="M 900.04,181.75 900,171.25 912,158.75 923,158.75 923,176.25 917,176.25 917,181.75"
+ id="path3939"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:9"
+ id="rect3918"
+ width="24"
+ height="24"
+ x="899.5"
+ y="158.25" />
+ <path
+ id="path3920"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 900.04,181.75 900,171.25 912,158.75 923,158.75 M 917,181.75 917,175.75 923,175.75"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ id="use5703"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-3.999997)"
+ id="use5705"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-7.999997)"
+ id="use5707"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12)"
+ id="use5709"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,4)"
+ id="use5711"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,8)"
+ id="use5713"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,12)"
+ id="use5715"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="translate(105.46,189.75)"
+ id="stroke-join-round"
+ inkscape:label="#join_round">
+ <path
+ style="fill:#99b6d4;fill-rule:evenodd"
+ d="M 900.04,181.75 900,178.75 C 900,166.25 907,158.75 919.5,158.75 L 923,158.75 923,176.25 917,176.25 917,181.75"
+ id="path3949"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:9"
+ id="rect3951"
+ width="24"
+ height="24"
+ x="899.5"
+ y="158.25" />
+ <path
+ id="path3953"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 900.04,181.75 900,178.75 C 900,166.25 907,158.75 919.5,158.75 L 923,158.75 M 917,181.75 917,175.75 923,175.75"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ id="use5718"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-3.999997)"
+ id="use5720"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-7.999997)"
+ id="use5722"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12)"
+ id="use5724"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,4)"
+ id="use5726"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,8)"
+ id="use5728"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,12)"
+ id="use5731"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(0.791665,0,0,0.833336,428.2796,305.4214)"
+ id="paint-unknown"
+ inkscape:label="#fill_unset">
+ <g
+ id="g2496"
+ transform="matrix(0.959998,0,0,0.96,344.8925,1.216355)">
+ <rect
+ style="fill:none;stroke-width:0.0520834"
+ id="rect2499"
+ width="25"
+ height="24.99999"
+ x="596.8749"
+ y="15.62504" />
+ </g>
+ <path
+ id="text2490"
+ d="M 930.6839,16.18176 C 932.6605,16.18178 934.4131,16.63394 935.9414,17.53823 937.6736,18.57445 938.5397,19.9686 938.5397,21.72069 938.5397,23.19022 938.0098,24.34887 936.9502,25.19666 L 934.0463,27.42465 C 933.0885,28.00869 933.0885,28.63983 933.0885,29.69486 L 926.7203,29.69486 C 926.371,27.11114 927.5253,26.39788 928.4219,25.58776 928.6664,25.36169 929.6965,24.61431 930.8978,23.64236 931.6467,23.03653 932.2428,22.70038 932.2428,22.00329 932.2428,21.51347 932.0288,21.11783 931.6009,20.81638 931.1933,20.51495 930.7042,20.36424 930.1337,20.36422 929.5019,20.36424 928.4154,20.5903 928.3849,22.4837 L 928.4154,23.41628 922.1186,23.41628 C 922.1186,22.2859 922.3631,20.79755 922.8522,19.96858 923.3209,19.1208 924.0239,18.40488 924.9613,17.82082 926.5101,16.84117 928.1366,16.18178 930.6839,16.18176 M 926.8066,31.89421 933.0424,31.89421 933.0424,37.78169 926.8066,37.78169 926.8066,31.89421"
+ style="fill:#000000"
+ sodipodi:nodetypes="ccsccccsssssccccscccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="align-horizontal-baseline"
+ transform="matrix(-1,0,0,0.997921,1118.206,-16.51693)"
+ inkscape:label="#al_baselines_vert">
+ <use
+ xlink:href="#path5120"
+ height="1250"
+ width="1250"
+ id="use5262"
+ y="0"
+ x="0"
+ transform="matrix(-1,0,0,1.000085,-38.76176,-94.35424)" />
+ <rect
+ style="fill:none"
+ id="rect2758"
+ width="24.05"
+ height="24"
+ x="80.6858"
+ y="-28.803"
+ transform="matrix(0,1,1,0,0,0)" />
+ <path
+ id="text3357"
+ d="M -11.9668,90.11223 C -12.7455,89.43522 -14.0693,89.67792 -14.6597,90.46077 -15.6351,91.64638 -15.9172,93.16305 -16.2761,94.58222 -16.5423,95.79253 -16.7095,97.02162 -16.7771,98.2554 -17.5654,96.69517 -18.4736,95.01934 -18.4901,93.26239 -18.5119,92.37434 -17.9777,91.62159 -17.6209,90.83626 -17.3262,90.17803 -18.1376,89.4931 -18.8334,89.70428 -19.6856,89.87006 -19.8276,90.81043 -19.803,91.48473 -19.7134,93.49021 -18.8909,95.4594 -18.0586,97.29225 -16.8791,99.71268 -15.1908,101.9573 -12.9826,103.6604 -12.1142,104.2845 -9.9179,105.0083 -8.8334,104.6324 -6.8334,103.6372 -6.8334,101.6468 -8.8334,101.6468 -9.552,101.3227 -11.3725,102.8907 -12.1086,102.866 -13.3235,102.857 -14.1896,101.8146 -14.5175,100.8217 -14.8507,99.50814 -14.5389,98.151 -14.3331,96.84131 -13.9978,95.13877 -13.6205,93.40174 -12.7366,91.86153 -12.5558,91.26334 -11.1394,90.90781 -11.9668,90.11223 Z"
+ style="fill:#000000"
+ sodipodi:nodetypes="cccccsccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ transform="scale(-1.036041,0.965213)"
+ style="fill:url(#linearGradient5555)"
+ d="M 15.59046,88.20062 C 15.05718,88.20062 14.65483,88.29109 14.38344,88.47202 14.11679,88.65296 13.98347,88.9196 13.98347,89.27194 13.98347,89.59572 14.0906,89.85046 14.30487,90.03615 14.5239,90.21709 14.82625,90.30756 15.21193,90.30756 15.69283,90.30756 16.09755,90.13615 16.4261,89.79332 16.75463,89.44574 16.9189,89.01245 16.91891,88.49345 L 16.91891,88.20062 15.59047,88.20062 M 19.49723,87.23643 19.49723,91.80027 16.91891,91.80027 16.91891,90.61467 C 16.57608,91.10034 16.1904,91.45507 15.76188,91.67885 15.33334,91.89788 14.81196,92.00739 14.19774,92.00739 13.36925,92.00739 12.6955,91.76694 12.17651,91.28603 11.66227,90.80037 11.40515,90.17186 11.40515,89.4005 11.40515,88.4625 11.72655,87.77447 12.36934,87.33641 13.0169,86.89837 14.03109,86.67934 15.41191,86.67933 L 16.91891,86.67933 16.91891,86.47935 C 16.9189,86.07464 16.75939,85.77943 16.44038,85.59372 16.12136,85.40327 15.62379,85.30804 14.94767,85.30804 14.4001,85.30804 13.89062,85.3628 13.41924,85.47231 12.94786,85.58183 12.50981,85.7461 12.10508,85.96512 L 12.10508,84.01531 C 12.65265,83.88199 13.2026,83.782 13.75493,83.71533 14.30725,83.64392 14.85958,83.60821 15.41191,83.6082 16.85462,83.60821 17.895,83.8939 18.53304,84.46526 19.17582,85.03188 19.49722,85.9556 19.49723,87.23642"
+ id="text5563"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(-1,0,0,1,1113.181,14.06347)"
+ id="align-vertical-baseline"
+ inkscape:label="#al_baselines_hor">
+ <use
+ xlink:href="#use5843"
+ height="1250"
+ width="1250"
+ id="use5850"
+ y="0"
+ x="0"
+ transform="matrix(-1,0,0,1,1079.687,-98.5528)" />
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="-33.803"
+ x="79.96361"
+ height="24"
+ width="24"
+ id="rect2784"
+ style="fill:none" />
+ <use
+ xlink:href="#text5563"
+ height="1250"
+ width="1250"
+ id="use5253"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997921,-12.75291,5.405751)" />
+ <use
+ xlink:href="#text3357"
+ height="1250"
+ width="1250"
+ id="use5256"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997921,-2.522537,-4.58035)" />
+ </g>
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 1105,339 C 1115.397,339 1117.885,319 1111.421,319 1104.873,319 1094.578,335.0032 1105.037,335.0032 1115.363,335.0032 1105.127,319 1098.605,319 1092.082,319 1094.42,339 1105,339 Z"
+ id="fill-rule-even-odd"
+ sodipodi:nodetypes="ccccs"
+ inkscape:label="#fillrule_evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccs"
+ id="fill-rule-nonzero"
+ d="M 1135,339 C 1145.397,339 1147.885,319 1141.421,319 1134.873,319 1124.578,335.0031 1135.037,335.0031 1145.363,335.0031 1135.127,319 1128.605,319 1122.082,319 1124.42,339 1135,339 Z"
+ style="fill:#000000"
+ inkscape:label="#fillrule_nonzero"
+ inkscape:connector-curvature="0" />
+ <g
+ id="draw-rectangle"
+ inkscape:label="#draw_rect">
+ <rect
+ y="115"
+ x="450"
+ height="24"
+ width="24"
+ id="rect4167"
+ style="color:#000000;fill:none;stroke-width:1.0000001" />
+ <rect
+ y="117.5082"
+ x="452.5083"
+ height="18.99178"
+ width="18.99167"
+ id="draw_rect1"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="118.5"
+ x="453.5"
+ height="17"
+ width="17"
+ id="rect5872"
+ style="color:#000000;fill:url(#linearGradient9254);fill-rule:evenodd;stroke:url(#linearGradient9256);stroke-width:0.9999998;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="draw-spiral"
+ inkscape:label="#draw_arc"
+ transform="translate(365,55.03909)">
+ <path
+ id="path225"
+ d="M 96.15762,162.8596 C 97.13102,162.613 97.57865,164.0572 97.41106,164.9134 97.06058,166.7039 95.2053,167.3265 93.84743,166.7376 91.73055,165.8194 91.04652,162.8327 91.93009,160.5906 93.14639,157.5042 96.51921,156.5472 99.05114,158.0025 102.3022,159.8712 103.283,164.6618 101.6324,168.2427 99.60556,172.6399 94.64474,173.9406 90.95391,171.5947 86.56055,168.8022 85.28012,162.1726 87.70877,157.2612 90.53418,151.5475 97.09916,149.9013 101.9447,153.1454 107.4835,156.8536 109.0646,165.3333 105.8537,171.5721 105.8432,171.5925 105.8326,171.613 105.822,171.6333"
+ style="fill:none;stroke:#000000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="150"
+ x="85"
+ height="24"
+ width="24"
+ id="rect4211"
+ style="color:#000000;fill:none" />
+ </g>
+ <g
+ id="zoom"
+ transform="translate(280,-64.96091)"
+ inkscape:label="#draw_zoom">
+ <circle
+ transform="matrix(1.087654,0,0,1.087684,-16.16957,-14.33312)"
+ id="path4199"
+ style="color:#000000;fill:#c8c8c8;fill-rule:evenodd;stroke:#c8c8c8;stroke-width:0.8704858;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ cx="179"
+ cy="159"
+ r="7" />
+ <rect
+ y="150"
+ x="170"
+ height="24"
+ width="24"
+ id="rect4242"
+ style="color:#000000;fill:none" />
+ <circle
+ transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)"
+ id="path4272"
+ style="color:#000000;fill:url(#linearGradient5536);fill-rule:evenodd;stroke:#000000;stroke-width:0.9301261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ cx="179"
+ cy="159"
+ r="7" />
+ <path
+ style="fill:url(#linearGradient5524);fill-rule:evenodd"
+ d="M 172,160 C 177,159 176,154 181,153 179,151 175.5,151.8333 174,153 172.5,154.1667 171,158 172,160 Z"
+ id="path5507"
+ sodipodi:nodetypes="cczc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(-0.707107,0.707107,-0.732853,-0.732853,338.9611,194.4488)"
+ id="g4696">
+ <path
+ style="fill:url(#linearGradient4723);fill-rule:evenodd"
+ d="M 85.625,124.8009 C 87.29167,123.8009 88.95833,123.8009 90.625,124.8009 L 90.24628,115.9591 C 88.89722,115.3058 87.62782,115.4979 86.07962,115.9591 L 85.625,124.8009 Z"
+ id="path4701"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient5492);fill-rule:evenodd;stroke:url(#linearGradient4728);stroke-width:0.9648682;stroke-linecap:round;stroke-linejoin:round"
+ d="M 90.62502,124.8009 90.58264,115.9811 C 89.73669,114.9811 86.3975,114.9353 85.55156,115.9353 L 85.625,124.8009"
+ id="path4709"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient5476);fill-rule:evenodd;stroke:url(#linearGradient4726);stroke-width:0.9648682;stroke-linecap:round;stroke-linejoin:round"
+ d="M 85.625,124.8009 86.54346,126.5815 C 87.58329,126.3701 88.56338,126.4085 89.54346,126.5815 L 90.625,124.8009 C 89.77906,123.8009 86.47094,123.8009 85.625,124.8009 Z"
+ id="path4705"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path4711"
+ d="M 86.62925,116.947 86.62505,123.1827"
+ style="fill:none;stroke:#ffffff;stroke-width:0.9648682;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="draw-text"
+ transform="translate(425,196.9756)"
+ inkscape:label="#draw_text">
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ id="path604"
+ d="M 41.91177,127.0244 41.91177,130.0244 43.91177,130.0244 43.91177,148.0244 41.91177,148.0244 41.91177,151.0244 48.91177,151.0244 48.91177,148.0244 46.91177,148.0244 46.91177,130.0244 48.91177,130.0244 48.91177,127.0244 41.91177,127.0244 Z"
+ style="fill:#ffffff;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path598"
+ d="M 45.41177,129.5 45.41177,148.5369"
+ style="fill:none;stroke:#000000;stroke-width:0.9999999;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path599"
+ d="M 46.38747,128.5244 47.6956,128.5133"
+ style="fill:none;stroke:#000000;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path600"
+ d="M 46.39879,149.5244 47.52504,149.5244"
+ style="fill:none;stroke:#000000;stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path601"
+ d="M 44.5,149.5244 43.32353,149.5244"
+ style="fill:none;stroke:#000000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path602"
+ d="M 44.46788,128.5244 43.31153,128.5244"
+ style="fill:none;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="127"
+ x="25"
+ height="24"
+ width="24"
+ id="rect5171"
+ style="color:#000000;fill:none" />
+ <g
+ id="g3805">
+ <path
+ style="fill:url(#linearGradient5857);stroke:#000000"
+ d="M 33,129.5 38,129.5 44.5,147.5 40.5,147.5 39.5,145 31.5,145 30.5,147.5 26.5,147.5 33,129.5 Z M 38.5,141.5 35.5,133 32.5,141.5 38.5,141.5 Z"
+ id="text2410"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5817"
+ d="M 33.5,130.5 28,146"
+ style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#646464;stroke-width:1.0000002px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5828"
+ d="M 38,142.5244 32.5,142.5244"
+ style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5859);stroke-width:1.0000002px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="color-gradient"
+ transform="translate(470,295)"
+ inkscape:label="#draw_gradient">
+ <rect
+ y="90"
+ x="-20"
+ height="24"
+ width="24"
+ id="rect2808"
+ style="color:#000000;fill:none;stroke-width:0.4532662" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient4246);fill-rule:evenodd;stroke-width:0.453266"
+ id="rect4244"
+ width="22.1569"
+ height="22.1569"
+ x="-3.07859"
+ y="-113.076"
+ transform="scale(-1)" />
+ <rect
+ y="92.1239"
+ x="-17.876"
+ height="19.7519"
+ width="19.7519"
+ id="rect3548"
+ style="color:#000000;fill:url(#linearGradient10520);fill-rule:evenodd;stroke-width:0.453266" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path3570"
+ d="M -15.3527,96.3045 -0.647354,107.695"
+ style="fill:none;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="94.8769"
+ x="-16.184"
+ height="4.01786"
+ width="4.0099"
+ id="rect3568"
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <use
+ xlink:href="#rect3568"
+ height="1250"
+ width="1250"
+ transform="matrix(1,0,0,0.99644,12.2265,10.564)"
+ id="use4906"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="color-picker"
+ transform="translate(439,260)"
+ inkscape:label="#draw_dropper">
+ <path
+ style="fill:url(#linearGradient3628);fill-rule:evenodd;stroke:url(#linearGradient5670);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 28.8634,163 21,171 18,173 17,172 19,169 26.8634,161 28.8634,163 Z"
+ id="path3620"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="155"
+ x="11"
+ height="24"
+ width="24"
+ id="rect3581"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:url(#linearGradient4369);fill-rule:evenodd;stroke:url(#linearGradient4360);stroke-width:1.0000001px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 17.15103,173.5 C 17.15103,173.5 15,175.1058 15,177.0529 15,179 18,179 18,177.0529 18,175.1058 17.15103,173.5 17.15103,173.5 Z"
+ id="path4352"
+ sodipodi:nodetypes="czzc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:0.6;stroke-linecap:round"
+ d="M 20,169 27,162"
+ id="path4372"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccsccc"
+ id="path3583"
+ d="M 25,160 30,165 31,164 29.5,162.5 C 33,162 35.8634,158.2404 33.8634,156.2404 31.8634,154.2404 28,157 27.5,160.5 L 26,159 25,160 Z"
+ style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient4349);fill-rule:evenodd"
+ d="M 28,160 C 27.59361,159.7968 28.15657,158.2324 29.5,157 31.33949,155.3154 32.83144,155.8288 32.8634,156.2404 33,158 30,161 28,160 Z"
+ id="path4341"
+ sodipodi:nodetypes="csss"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="node-join"
+ transform="translate(586.9575,-119.9707)"
+ inkscape:label="#node_join">
+ <use
+ xlink:href="#path4385"
+ height="1250"
+ width="1250"
+ transform="translate(12)"
+ id="use5652"
+ y="0"
+ x="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect3630"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:#646464;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.4762,177.4465 -42.4762,177.4465"
+ id="path4385"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175.5"
+ x="-43.51186"
+ height="3.989636"
+ width="3.035695"
+ id="rect3632"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.47804,188.5 C -30.50259,188.5 -30.50259,188.5 -30.50259,188.5"
+ id="path4389"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="186.5"
+ x="-39.45749"
+ height="3.970665"
+ width="3.957493"
+ id="rect4374"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ id="path4376"
+ d="M -38,180 -37,180 -37,182 -35,182 -37.5,185 -40,182 -38,182 -38,180 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#rect3632"
+ height="1250"
+ width="1250"
+ transform="translate(9.035664,-0.0534999)"
+ id="use16129"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="node-join-segment"
+ transform="translate(608.9585,-119.9172)"
+ inkscape:label="#node_join_segment">
+ <use
+ xlink:href="#path4385"
+ height="1250"
+ width="1250"
+ id="use5657"
+ y="0"
+ x="0"
+ transform="translate(12)" />
+ <use
+ xlink:href="#path4385"
+ height="1250"
+ width="1250"
+ id="use5654"
+ y="0"
+ x="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4393"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#path4389"
+ height="1250"
+ width="1250"
+ id="use5727"
+ y="0"
+ x="0"
+ transform="translate(0.0018391,-0.0534999)" />
+ <rect
+ y="186.4465"
+ x="-43.45848"
+ height="3.970665"
+ width="2.982275"
+ id="rect4411"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <use
+ xlink:href="#rect3632"
+ height="1250"
+ width="1250"
+ id="use17004"
+ y="0"
+ x="0"
+ transform="translate(0.0356638,-0.0534999)" />
+ <use
+ xlink:href="#rect3632"
+ height="1250"
+ width="1250"
+ id="use17007"
+ y="0"
+ x="0"
+ transform="translate(9.035664,-0.0431358)" />
+ <use
+ xlink:href="#rect4411"
+ style="fill:#e30000"
+ height="1250"
+ width="1250"
+ transform="translate(9.000001,0.0293315)"
+ id="use17887"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path4376"
+ height="1250"
+ width="1250"
+ id="use5749"
+ y="0"
+ x="0"
+ transform="translate(0.0238,-0.0535)" />
+ </g>
+ <g
+ id="node-delete-segment"
+ transform="translate(629.9585,-119.9465)"
+ inkscape:label="#node_delete_segment">
+ <use
+ xlink:href="#path4385"
+ height="1250"
+ width="1250"
+ id="use5662"
+ y="0"
+ x="0"
+ transform="translate(12,11)" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4415"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#path4389"
+ height="1250"
+ width="1250"
+ id="use5730"
+ y="0"
+ x="0"
+ transform="translate(0.0018391,-11.0535)" />
+ <use
+ xlink:href="#rect3632"
+ height="1250"
+ width="1250"
+ id="use17882"
+ y="0"
+ x="0"
+ transform="translate(0.0356638,-0.0431358)" />
+ <use
+ xlink:href="#rect3632"
+ height="1250"
+ width="1250"
+ id="use17885"
+ y="0"
+ x="0"
+ transform="translate(8.999968,-0.0534999)" />
+ <use
+ xlink:href="#path4385"
+ height="1250"
+ width="1250"
+ id="use5660"
+ y="0"
+ x="0"
+ transform="translate(0,11)" />
+ <use
+ xlink:href="#use17887"
+ height="1250"
+ width="1250"
+ id="use17891"
+ y="0"
+ x="0"
+ transform="translate(-9.000001,2.498039e-6)" />
+ <use
+ xlink:href="#use17887"
+ height="1250"
+ width="1250"
+ id="use17894"
+ y="0"
+ x="0"
+ transform="translate(-0.0177254,2.498039e-6)" />
+ <use
+ xlink:href="#path4376"
+ height="1250"
+ width="1250"
+ id="use5752"
+ y="0"
+ x="0"
+ transform="translate(0.0238,0.9465)" />
+ </g>
+ <g
+ id="tool-pointer"
+ transform="translate(560,-109.961)"
+ inkscape:label="#draw_select">
+ <rect
+ y="135"
+ x="-110"
+ height="24"
+ width="24"
+ id="rect10522"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="csssssss"
+ id="path730"
+ d="M -104.4426,154.8912 C -104.4426,154.8912 -104.5001,136.625 -104.5001,136.625 -104.5001,136.625 -92.45996,149.5002 -92.45996,149.5002 -92.45996,149.5002 -97.66194,149.382 -97.66194,149.382 -97.66194,149.382 -94.23654,155.0591 -94.23654,155.0591 -94.23654,155.0591 -98.70961,157.1774 -98.70961,157.1774 -98.70961,157.1774 -100.7184,150.7187 -100.7184,150.7187 -100.7184,150.7187 -104.4426,154.8912 -104.4426,154.8912 Z"
+ style="fill-rule:evenodd;stroke:#ffffff;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="tool-node-editor"
+ transform="translate(560,-124.961)"
+ inkscape:label="#draw_node">
+ <rect
+ y="180"
+ x="-110"
+ height="24"
+ width="24"
+ id="rect10524"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="csc"
+ id="path10536"
+ d="M -107.5,202 C -108,194 -106.8635,189.643 -103.5351,186.5978 -100.5976,183.9103 -96,182 -88,182.5"
+ style="fill:none;stroke:#646464;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:#0000ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9999996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect10534"
+ width="6.117705"
+ height="5.996136"
+ x="-106.5"
+ y="183.5039" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect10541"
+ width="3.998032"
+ height="3.999682"
+ x="-109.5"
+ y="199.5" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path10543"
+ d="M -103,187 -94,203 -88,197 -103,187 Z"
+ style="fill:#000000;fill-rule:evenodd;stroke:#ffffff;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#rect10541"
+ height="1250"
+ width="1250"
+ transform="translate(19.00197,-19.03868)"
+ id="use5791"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="node-break"
+ transform="translate(650.9823,-119.9172)"
+ inkscape:label="#node_break">
+ <use
+ xlink:href="#path4385"
+ height="1250"
+ width="1250"
+ id="use5666"
+ y="0"
+ x="0"
+ transform="translate(11.9762,11)" />
+ <use
+ xlink:href="#path4385"
+ height="1250"
+ width="1250"
+ id="use5664"
+ y="0"
+ x="0"
+ transform="translate(-0.0238,11)" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect10555"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#path4389"
+ height="1250"
+ width="1250"
+ id="use5732"
+ y="0"
+ x="0"
+ transform="translate(0.0025879,-11.0535)" />
+ <use
+ xlink:href="#rect4411"
+ height="1250"
+ width="1250"
+ id="use5737"
+ y="0"
+ x="0"
+ transform="translate(-0.0237986,-2.327919e-6)" />
+ <use
+ xlink:href="#use5737"
+ height="1250"
+ width="1250"
+ transform="translate(9)"
+ id="use5740"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path4376"
+ height="1250"
+ width="1250"
+ id="use5754"
+ y="0"
+ x="0"
+ transform="translate(0,0.9465)" />
+ <use
+ xlink:href="#use5791"
+ height="1250"
+ width="1250"
+ id="use5793"
+ y="0"
+ x="0"
+ transform="translate(51,-5.014501)" />
+ </g>
+ <g
+ id="node-add"
+ transform="translate(545,-120.0164)"
+ inkscape:label="#node_insert">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect10573"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.41109,187.5 C -29.5,187.5 -29.5,187.5 -29.5,187.5"
+ id="path10583"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="184.5076"
+ x="-39.506"
+ height="5.968238"
+ width="5.006888"
+ id="rect10585"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ id="path10587"
+ d="M -38,175 -36,175 -36,178 -33,178 -33,180 -36,180 -36,183 -38,183 -38,180 -41,180 -41,178 -38,178 -38,175 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(1,0,0,-1,566,421.9836)"
+ id="node_insert_max_y">
+ <rect
+ width="16"
+ height="16"
+ x="-45"
+ y="175"
+ id="rect6085"
+ style="color:#000000;fill:none" />
+ <path
+ d="M -44.5,175.4836 C -44.5,175.4836 -42.5,178.9836 -37,178.9836 -31.5,178.9836 -29.5,175.4836 -29.5,175.4836"
+ id="path6087"
+ style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ width="5.006001"
+ height="4.975991"
+ x="-39.506"
+ y="176.5076"
+ id="rect6089"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ d="M -38,183 -36,183 -36,186 -33,186 -33,188 -36,188 -36,191 -38,191 -38,188 -41,188 -41,186 -38,186 -38,183 Z"
+ id="path6091"
+ style="fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(547,56)"
+ id="node_insert_min_y">
+ <rect
+ width="16"
+ height="16"
+ x="-45"
+ y="175"
+ id="rect6115"
+ style="color:#000000;fill:none" />
+ <path
+ d="M -44.5,175.4836 C -44.5,175.4836 -42.5,179 -37,179 -31.5,179 -29.5,175.4836 -29.5,175.4836"
+ id="path6117"
+ style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ width="5.006001"
+ height="4.975991"
+ x="-39.506"
+ y="176.5"
+ id="rect6119"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ d="M -38,183 -36,183 -36,186 -33,186 -33,188 -36,188 -36,191 -38,191 -38,188 -41,188 -41,186 -38,186 -38,183 Z"
+ id="path6121"
+ style="fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0,-1,-1,0,730.9918,201.9918)"
+ id="node_insert_min_x">
+ <rect
+ width="16"
+ height="16"
+ x="-45"
+ y="175"
+ id="rect6125"
+ style="color:#000000;fill:none" />
+ <path
+ d="M -44.5,175.4836 C -44.5,175.4836 -42.5082,178.9918 -37.0082,178.9918 -31.5082,178.9918 -29.5,175.4836 -29.5,175.4836"
+ id="path6128"
+ style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ width="5.006001"
+ height="4.975991"
+ x="-39.5142"
+ y="176.5158"
+ id="rect6130"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ d="M -38,183 -36,183 -36,186 -33,186 -33,188 -36,188 -36,191 -38,191 -38,188 -41,188 -41,186 -38,186 -38,183 Z"
+ id="path6132"
+ style="fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0,1,1,0,384.0082,275.9918)"
+ id="node_insert_max_x">
+ <rect
+ width="16"
+ height="16"
+ x="-45"
+ y="175"
+ id="rect6137"
+ style="color:#000000;fill:none" />
+ <path
+ d="M -44.5,175.4836 C -44.5,175.4836 -42.4918,178.9918 -36.9918,178.9918 -31.4918,178.9918 -29.5,175.4836 -29.5,175.4836"
+ id="path6139"
+ style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ width="5.006001"
+ height="4.975991"
+ x="-39.4918"
+ y="176.5158"
+ id="rect6141"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ d="M -38,183 -36,183 -36,186 -33,186 -33,188 -36,188 -36,191 -38,191 -38,188 -41,188 -41,186 -38,186 -38,183 Z"
+ id="path6143"
+ style="fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="node-delete"
+ transform="translate(566.006,-119.9758)"
+ inkscape:label="#node_delete">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect10591"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#path10583"
+ height="1250"
+ width="1250"
+ transform="translate(-0.0651068,-0.0534998)"
+ id="use15253"
+ y="0"
+ x="0" />
+ <rect
+ y="184.5076"
+ x="-39.506"
+ height="5.968238"
+ width="5.006888"
+ id="rect10595"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#8686e5;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ id="path10597"
+ d="M -33,178 -33,180 -41,180 -41,178 -33,178 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="zoom-in"
+ transform="matrix(1,0,0,0.997925,495,-162.4833)"
+ inkscape:label="#zoom_in">
+ <g
+ id="g5796">
+ <circle
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.9403349;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.2651297"
+ id="path4220"
+ transform="matrix(1.00786,0,0,1.007983,-167.1731,96.0569)"
+ cx="179"
+ cy="159"
+ r="7" />
+ <rect
+ style="color:#000000;fill:none"
+ id="rect10601"
+ width="16"
+ height="16"
+ x="5.0273"
+ y="248.029" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 18.03125,259 16,261.0312 19,264.0312 21.03125,262 18.03125,259 Z"
+ id="path10605"
+ inkscape:connector-curvature="0" />
+ <circle
+ style="color:#000000;fill:url(#radialGradient5855);fill-rule:evenodd;stroke:#000000;stroke-width:0.9931717;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path10607"
+ transform="matrix(1.00786,0,0,1.007983,-167.8785,95.25998)"
+ cx="179"
+ cy="159"
+ r="7" />
+ </g>
+ <path
+ sodipodi:nodetypes="ccccccccccccc"
+ id="path10609"
+ d="M 11,251.0208 13,251.0208 13.0273,254.0208 16.0273,254.0498 16,256.0436 13,256.0145 13.0273,259.0208 11.0273,259.0208 11,256.0145 7.9727,256.0145 8,254.0208 11.0273,254.0208 11,251.0208 Z"
+ style="fill:url(#linearGradient4088);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="zoom-out"
+ transform="translate(515.0312,-162.961)"
+ inkscape:label="#zoom_out">
+ <use
+ xlink:href="#g5796"
+ height="1250"
+ width="1250"
+ id="use5803"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997925,-0.06245,0.476586)" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path10652"
+ d="M 16.03125,253.971 16.02735,256 8.0313,256 8.03525,253.971 16.0313,253.971 Z"
+ style="color:#000000;fill:url(#linearGradient3208);fill-rule:evenodd;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="zoom-half-size"
+ inkscape:label="#g6895">
+ <use
+ xlink:href="#g5796"
+ height="1250"
+ width="1250"
+ id="use5818"
+ y="0"
+ x="0"
+ transform="matrix(0.996399,0,0,0.997925,95.04449,-202.4578)" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:round"
+ d="M 108.5366,50.5646 C 109.0348,49.0646 111.5258,49.0646 111.5258,51.0646 111.5258,53.0646 108.5366,53.5646 108.5366,55.5646 L 111.5258,55.5646"
+ id="path10692"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 103,49.5 104.5,49.5 104.5,56 M 106,52.5 107,52.5 M 106,55.5 107,55.5"
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ id="path3806"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="zoom-fit-width"
+ transform="matrix(0.996399,0,0,0.998403,95.11635,-102.5393)"
+ inkscape:label="#zoom_pagewidth">
+ <use
+ xlink:href="#g5796"
+ height="1250"
+ width="1250"
+ id="use5834"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" />
+ <path
+ transform="translate(-49.99998,18)"
+ style="color:#000000;fill:url(#linearGradient4013);fill-rule:evenodd;stroke:url(#linearGradient4072);stroke-width:1.0026066;stroke-linecap:round;stroke-linejoin:round"
+ d="M 57.5,236.5 67.5,236.5 67.53137,242.5314 C 65.02942,245.251 59.78235,245.1882 57.5,242.4373 L 57.5,236.5 Z"
+ id="rect3056"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="zoom-fit-page"
+ transform="matrix(0.996399,0,0,1,95.11635,-122.961)"
+ inkscape:label="#zoom_page">
+ <use
+ xlink:href="#g5796"
+ height="1250"
+ width="1250"
+ id="use5826"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" />
+ <path
+ transform="translate(-49.99998,18)"
+ style="color:#000000;fill:url(#linearGradient4005);fill-rule:evenodd;stroke:url(#linearGradient4080);stroke-width:1.0018055"
+ d="M 59.5,233.5312 65.5,233.5312 65.5,241.5312 59.5,241.5312 59.5,233.5312 Z"
+ id="path3805"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="zoom-fit-selection"
+ transform="matrix(0.996399,0,0,0.998404,95.11635,-162.5398)"
+ inkscape:label="#zoom_select">
+ <use
+ xlink:href="#g5796"
+ height="1250"
+ width="1250"
+ id="use5822"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" />
+ <rect
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd"
+ id="rect3901"
+ width="9"
+ height="7"
+ x="18"
+ y="232"
+ transform="translate(-9.99998,20)" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ id="rect3873"
+ width="1"
+ height="1"
+ x="18"
+ y="232"
+ transform="translate(-9.99998,20)" />
+ <rect
+ y="252"
+ x="10.00002"
+ height="1"
+ width="1"
+ id="rect3875"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ id="rect3877"
+ width="1"
+ height="1"
+ x="12.00002"
+ y="252" />
+ <rect
+ y="252"
+ x="14.00002"
+ height="1"
+ width="1"
+ id="rect3879"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ id="rect3881"
+ width="1"
+ height="1"
+ x="16.00002"
+ y="252" />
+ <rect
+ y="254"
+ x="16.00002"
+ height="1"
+ width="1"
+ id="rect3883"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ id="rect3885"
+ width="1"
+ height="1"
+ x="16.00002"
+ y="256" />
+ <rect
+ y="258"
+ x="16.00002"
+ height="1"
+ width="1"
+ id="rect3887"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ id="rect3889"
+ width="1"
+ height="1"
+ x="14.00002"
+ y="258" />
+ <rect
+ y="258"
+ x="12.00002"
+ height="1"
+ width="1"
+ id="rect3891"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ id="rect3893"
+ width="1"
+ height="1"
+ x="10.00002"
+ y="258" />
+ <rect
+ y="258"
+ x="8.00002"
+ height="1"
+ width="1"
+ id="rect3895"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ id="rect3897"
+ width="1"
+ height="1"
+ x="8.00002"
+ y="256" />
+ <rect
+ y="254"
+ x="8.00002"
+ height="1"
+ width="1"
+ id="rect3899"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ </g>
+ <g
+ id="zoom-fit-drawing"
+ transform="matrix(0.996399,0,0,0.998403,95.11635,-142.5705)"
+ inkscape:label="#zoom_draw">
+ <use
+ xlink:href="#g5796"
+ height="1250"
+ width="1250"
+ id="use5824"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997925,-0.07212,0.508815)" />
+ <path
+ style="fill:#ffffff;fill-rule:evenodd"
+ d="M 74,282 75,282 75,280 77,280 77,279 74,279 74,282 Z"
+ id="path4192"
+ sodipodi:nodetypes="ccccccc"
+ transform="translate(-64.99998,-27)"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g5984">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5849);stroke-width:1.002607;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4828"
+ width="5.000394"
+ height="5.040684"
+ x="8.45872"
+ y="251.4922" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5851);fill-rule:evenodd;stroke:url(#linearGradient5853);stroke-width:1.0026073;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4830"
+ width="3.008755"
+ height="3.010303"
+ x="9.44998"
+ y="252.4818" />
+ </g>
+ <use
+ xlink:href="#g5984"
+ height="1250"
+ width="1250"
+ transform="translate(3.000016,2.959313)"
+ id="use5989"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="zoom-previous"
+ transform="matrix(0.996399,0,0,0.998404,95.11635,-82.57091)"
+ inkscape:label="#zoom_previous">
+ <use
+ xlink:href="#g5796"
+ height="1250"
+ width="1250"
+ id="use5836"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997925,-0.07212,0.508745)" />
+ <g
+ id="g6036">
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path3974"
+ d="M 9.53125,251.5312 9.53125,251.5312 9.53125,255.5312 15.45913,251.4921 15.45913,259.4921 9.53125,255.5312 9.53125,259.5312 9.53125,259.5312 9.53125,251.5312 Z"
+ style="color:#000000;fill:#ffd400;fill-rule:evenodd;stroke:url(#linearGradient5847);stroke-width:1.0026059;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path4188"
+ d="M 11.33756,255.4455 14.58336,253.2228"
+ style="fill:none;stroke:#ffffff;stroke-width:1.0026058px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="zoom-next"
+ transform="matrix(0.996399,0,0,0.998404,95.08516,-62.56986)"
+ inkscape:label="#zoom_next">
+ <use
+ xlink:href="#g5796"
+ height="1250"
+ width="1250"
+ id="use5838"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997925,-0.04082,0.507716)" />
+ <g
+ id="g6043">
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path3990"
+ d="M 15.50002,251.5 15.50002,251.5 15.50002,259.5 15.50002,259.5 15.50002,255.5 9.50002,259.5 9.50002,251.5 15.50002,255.5 15.50002,251.5 Z"
+ style="color:#000000;fill:#ffd400;fill-rule:evenodd;stroke:url(#linearGradient5845);stroke-width:1.0026059;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path4191"
+ d="M 10.43978,257.6603 13.68558,255.4375"
+ style="fill:none;stroke:#ffffff;stroke-width:1.0026058px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="node-type-cusp"
+ transform="translate(673.0098,-120.0032)"
+ inkscape:label="#node_cusp">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect3216"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.50979,175.5032 C -37.52207,175.5032 -37.53892,184.6391 -37.53892,186.6391 -33.0238,184.1199 -30.0238,181 -29.5041,175.5032"
+ id="path3226"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="103.5115"
+ x="-160.3997"
+ height="3.831147"
+ width="3.791844"
+ id="rect3224"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9051018;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ transform="rotate(-44.99984)" />
+ </g>
+ <g
+ id="node-type-smooth"
+ transform="translate(693.9435,-119.9172)"
+ inkscape:label="#node_smooth">
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.41296,176.5635 C -44.94008,180.0159 -43.54193,185.457 -37.54193,185.457 -31.54193,185.457 -29.98307,179.8869 -30.45595,176.4345"
+ id="path3254"
+ sodipodi:nodetypes="csc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect3252"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#rect4374"
+ height="1250"
+ width="1250"
+ id="use5742"
+ y="0"
+ x="0"
+ transform="translate(0.0140001,-3.0535)" />
+ </g>
+ <g
+ id="node-type-symmetric"
+ transform="translate(714.9799,-119.9832)"
+ inkscape:label="#node_symmetric">
+ <path
+ id="path10667"
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.41296,176.5635 C -44.94008,180.0159 -43.02606,186.0936 -37.02606,186.0936 -31.02606,186.0936 -29.0373,180.0159 -29.51018,176.5635 M -42.44776,186.1975 -31.55518,186.1975"
+ sodipodi:nodetypes="csccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect10669"
+ style="color:#000000;fill:none" />
+ <rect
+ y="-39.47938"
+ x="-188.4831"
+ height="4.950177"
+ width="4.966394"
+ id="rect10671"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ transform="rotate(-89.99984)" />
+ <rect
+ style="color:#000000;fill:#ffffff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect10673"
+ width="2.067648"
+ height="2.017743"
+ x="-44.54361"
+ y="185.2228"
+ ry="1.008872"
+ rx="1.008872" />
+ <rect
+ style="color:#000000;fill:#ffffff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect10675"
+ width="2.022052"
+ height="2.026662"
+ x="-31.53185"
+ y="185.1983"
+ ry="1.011026"
+ rx="1.011026" />
+ </g>
+ <g
+ id="node-segment-curve"
+ transform="translate(757.9337,-119.9172)"
+ inkscape:label="#node_curve">
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -42.38772,188.4395 C -42.38772,181.4395 -38.41209,177.6123 -31.41209,177.6123"
+ id="path10679"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect10681"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#rect4374"
+ height="1250"
+ width="1250"
+ id="use5745"
+ y="0"
+ x="0"
+ transform="translate(-4.9762,-0.0534998)" />
+ <use
+ xlink:href="#rect4374"
+ height="1250"
+ width="1250"
+ id="use5747"
+ y="0"
+ x="0"
+ transform="translate(5.981293,-11.02417)" />
+ </g>
+ <g
+ id="node-segment-line"
+ transform="translate(778.9762,-119.9465)"
+ inkscape:label="#node_line">
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -42.5,188.5 -31.5,177.5"
+ id="path4418"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4420"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#rect4374"
+ height="1250"
+ width="1250"
+ id="use5756"
+ y="0"
+ x="0"
+ transform="translate(-5.018707,-0.0241656)" />
+ <use
+ xlink:href="#rect4374"
+ height="1250"
+ width="1250"
+ id="use5758"
+ y="0"
+ x="0"
+ transform="translate(6.0238,-11.02417)" />
+ </g>
+ <g
+ id="object-to-path"
+ transform="translate(280.041,-149.9465)"
+ inkscape:label="#object_tocurve">
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -37.0131,188.9855 C -35.0131,192.9855 -27.81159,188.3079 -29.81159,185.3079 -31.10674,183.3652 -39.24159,185.6729 -42.56979,183.4541 -45.56979,181.4541 -45.12074,174.9746 -40.0534,175.5422 -35.41611,176.0661 -38.62555,185.7606 -37.0131,188.9855 Z"
+ id="path4438"
+ sodipodi:nodetypes="cssss"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4440"
+ style="color:#000000;fill:none" />
+ <rect
+ y="-39.5126"
+ x="-178.495"
+ height="3.023564"
+ width="3.009614"
+ id="rect4442"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ transform="rotate(-89.99984)" />
+ <use
+ xlink:href="#rect4442"
+ height="1250"
+ width="1250"
+ transform="translate(-4.027901,6.951345)"
+ id="use6691"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect4442"
+ height="1250"
+ width="1250"
+ transform="translate(6.948524,11.95135)"
+ id="use6693"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="stroke-to-path"
+ transform="translate(280.0489,-129.9566)"
+ inkscape:label="#stroke_tocurve">
+ <path
+ id="path4464"
+ style="color:#000000;fill:#8ab3df;fill-opacity:0.5882353;fill-rule:evenodd;stroke-width:1.0000024"
+ d="M -39.52195,190.3973 -44.44321,188.4481 C -44.98225,180.8178 -38.98225,174.937 -31.48225,175.437 L -29.52195,180.3973 C -36.52195,180.3973 -39.52195,183.3973 -39.52195,190.3973 Z"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.43436,188.5363 C -44.97339,180.9061 -38.97339,175.0252 -31.47339,175.5252"
+ id="path4450"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4452"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -39.5131,190.4855 C -39.5131,183.4855 -36.5131,180.4855 -29.5131,180.4855"
+ id="path4458"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use6693"
+ height="1250"
+ width="1250"
+ transform="translate(-7.0079,-11.98028)"
+ id="use6695"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use6693"
+ height="1250"
+ width="1250"
+ transform="translate(-11.98432,-6.989905)"
+ id="use6698"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use6693"
+ height="1250"
+ width="1250"
+ transform="translate(-8.0079,-2.989905)"
+ id="use6700"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use6693"
+ height="1250"
+ width="1250"
+ transform="translate(-3.0079,-7.98028)"
+ id="use6702"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="selection-bottom"
+ transform="translate(235.0423,10.04822)"
+ inkscape:label="#selection_bot">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect6698"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7653"
+ y="0"
+ x="0"
+ transform="translate(8.934884,-0.0391259)" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7655"
+ y="0"
+ x="0"
+ transform="translate(8.9612,2.960874)" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7657"
+ y="0"
+ x="0"
+ transform="translate(8.9612,5.960874)" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7659"
+ y="0"
+ x="0"
+ transform="translate(8.934884,8.960874)" />
+ <use
+ xlink:href="#rect8574"
+ height="1250"
+ width="1250"
+ id="use8586"
+ y="0"
+ x="0"
+ transform="translate(0,2.999993)" />
+ <use
+ xlink:href="#path10449"
+ height="1250"
+ width="1250"
+ transform="matrix(1,0,0,-1,-10,364.9817)"
+ id="use4704"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="selection-top"
+ transform="translate(235.0423,-9.96096)"
+ inkscape:label="#selection_top">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect10445"
+ style="color:#000000;fill:none" />
+ <path
+ id="path10449"
+ d="M -31,189.9908 -32,189.9908 -32,181.9908 -34,181.9908 -31.5,178.9908 -29,181.9908 -31,181.9908 -31,189.9908 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7645"
+ y="0"
+ x="0"
+ transform="translate(-0.0387999,3.97005)" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7647"
+ y="0"
+ x="0"
+ transform="translate(-0.0387999,6.97005)" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7649"
+ y="0"
+ x="0"
+ transform="translate(-0.0387999,9.97005)" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7651"
+ y="0"
+ x="0"
+ transform="translate(-0.0387999,12.97005)" />
+ <use
+ xlink:href="#rect10479"
+ height="1250"
+ width="1250"
+ id="use8534"
+ y="0"
+ x="0"
+ transform="translate(-0.0384184,-3.002595)" />
+ </g>
+ <g
+ id="selection-raise"
+ transform="translate(235.0423,-49.96096)"
+ inkscape:label="#selection_up">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect10473"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:url(#linearGradient5835);stroke-width:1.9999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -43.97588,175.9908 C -39.0022,175.9908 -39.0022,175.9908 -39.0022,175.9908"
+ id="path10475"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="178.4609"
+ x="-44.50185"
+ height="2.002599"
+ width="14.99927"
+ id="rect10479"
+ style="color:#000000;fill:url(#linearGradient5837);fill-rule:evenodd;stroke:url(#linearGradient5839);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient5842);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.00221,185.9908 C -36.06173,185.9908 -36.06173,185.9908 -36.06173,185.9908"
+ id="path10483"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ transform="translate(-0.0387999,6.97005)"
+ id="use7634"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use7634"
+ height="1250"
+ width="1250"
+ transform="translate(0,6)"
+ id="use7636"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path10505"
+ height="1250"
+ width="1250"
+ id="use5413"
+ y="0"
+ x="0"
+ transform="rotate(180,-37.00135,182.4977)" />
+ </g>
+ <g
+ id="selection-lower"
+ transform="translate(235.0423,-29.95179)"
+ inkscape:label="#selection_down">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect10501"
+ style="color:#000000;fill:none" />
+ <path
+ id="path10505"
+ d="M -42,177.9908 -41,177.9908 -41,178.9908 -42,178.9908 -42,179.9908 -40,179.9908 -42.5,182.9908 -45,179.9908 -43,179.9908 -43,178.9908 -42,177.9908 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="ccccccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7638"
+ y="0"
+ x="0"
+ transform="translate(8.934884,-0.0391201)" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7641"
+ y="0"
+ x="0"
+ transform="translate(8.9612,5.96088)" />
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7643"
+ y="0"
+ x="0"
+ transform="translate(8.934884,12.96088)" />
+ <rect
+ y="184.4491"
+ x="-44.54027"
+ height="2.002599"
+ width="14.99927"
+ id="rect8574"
+ style="color:#000000;fill:url(#linearGradient5831);fill-rule:evenodd;stroke:url(#linearGradient5833);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <use
+ xlink:href="#path10483"
+ height="1250"
+ width="1250"
+ id="use8589"
+ y="0"
+ x="0"
+ transform="translate(5.961212,-7.03912)" />
+ </g>
+ <g
+ id="object-flip-vertical"
+ transform="translate(235.0013,89.99992)"
+ inkscape:label="#object_flip_ver">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4332"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.9999998;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -43.5,182.5 -42.5,182.5"
+ id="path4335"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient7544);fill-rule:evenodd;stroke:url(#linearGradient6743);stroke-width:0.9;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -43.49833,184.5 -30.45006,184.5 -30.45006,189.5 -43.49833,184.5 Z"
+ id="rect4339"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient6727);fill-rule:evenodd;stroke:url(#linearGradient6745);stroke-width:0.8999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -43.49838,180.5 -30.45162,180.5 -30.45162,175.5 -43.49838,180.5 Z"
+ id="path5098"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path4335"
+ height="1250"
+ width="1250"
+ transform="translate(2.959,-0.0391199)"
+ id="use7626"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use7626"
+ height="1250"
+ width="1250"
+ transform="translate(3)"
+ id="use7628"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use7628"
+ height="1250"
+ width="1250"
+ transform="translate(3)"
+ id="use7630"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use7630"
+ height="1250"
+ width="1250"
+ transform="translate(3)"
+ id="use7632"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="object-flip-horizontal"
+ transform="translate(235.0423,70.03904)"
+ inkscape:label="#object_flip_hor">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect6649"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:0.9999998;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -37.49238,176.4968 -37.49238,177.4968"
+ id="path6651"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient6665);fill-rule:evenodd;stroke:url(#linearGradient6667);stroke-width:0.8999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -39.45,176.45 -39.45,189.5435 -44.53475,189.5435 -39.45,176.45 Z"
+ id="path6653"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient6737);fill-rule:evenodd;stroke:url(#linearGradient6739);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -35.49238,176.4968 -35.49238,189.4968 -30.49238,189.4968 -35.49238,176.4968 Z"
+ id="path6655"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6651"
+ height="1250"
+ width="1250"
+ transform="translate(-0.0486211,2.96407)"
+ id="use7618"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use7618"
+ height="1250"
+ width="1250"
+ transform="translate(0,3)"
+ id="use7620"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use7620"
+ height="1250"
+ width="1250"
+ transform="translate(0,3)"
+ id="use7622"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use7622"
+ height="1250"
+ width="1250"
+ transform="translate(0,3)"
+ id="use7624"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="object-rotate-left"
+ transform="matrix(-1,0,0,1,161.0423,50.03904)"
+ inkscape:label="#object_rotate_90_CCW">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect7457"
+ style="color:#000000;fill:none" />
+ <path
+ style="color:#000000;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -37.5,175.5 -37.5,190.5 -43.5,190.5 -37.5,175.5 Z"
+ id="path7459"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient6690);fill-rule:evenodd;stroke:url(#linearGradient6731);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -29.5,188.5 -44.5,188.5 -44.5,182.5 -29.5,188.5 Z"
+ id="path7461"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="use7610"
+ d="M -36.03125,176.9687 -36.03125,177.9687 -33.03125,177.9687 -32.01635,178.9609 -31.01635,178.9609 -33.03125,176.9687 -36.03125,176.9687 -36.03125,176.9688 Z"
+ style="color:#000000;-inkscape-font-specification:'Bitstream Vera Sans';fill:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path7514"
+ height="1250"
+ width="1250"
+ id="use5439"
+ y="0"
+ x="0"
+ transform="translate(0.070634,3.868655e-4)" />
+ </g>
+ <g
+ id="object-rotate-right"
+ transform="translate(235.0423,30.03905)"
+ inkscape:label="#object_rotate_90_CW">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect7508"
+ style="color:#000000;fill:none" />
+ <path
+ style="color:#000000;fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -37.5,175.5 -37.5,190.5 -43.5,190.5 -37.5,175.5 Z"
+ id="path7510"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient6672);fill-rule:evenodd;stroke:url(#linearGradient7548);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -29.5,188.5 -44.5,188.5 -44.5,182.5 -29.5,188.5 Z"
+ id="path7512"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 199,207 199,208 202,208 203.0312,209 203.0312,212.0312 201.0312,212.0312 203.5312,215.0312 206.0312,212.0312 204.0312,212.0312 204.0312,209 202,207 199,207 Z"
+ transform="translate(-235.0423,-30.03905)"
+ id="path7514"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="dialog-fill-and-stroke"
+ transform="translate(235,-150.0546)"
+ inkscape:label="#fill_and_stroke">
+ <path
+ style="fill:none;stroke:url(#linearGradient10473);stroke-width:2;stroke-linecap:square"
+ d="M 191,40 191,26 205,26"
+ id="path10465"
+ sodipodi:nodetypes="ccc"
+ transform="translate(-235,150.0546)"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:1px"
+ d="M -42.96863,177.0546 -28.96863,177.0546 -42.96863,191.0546 -42.96863,177.0546 Z"
+ id="rect10562"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect9766"
+ style="color:#000000;fill:none" />
+ <g
+ id="g10509">
+ <path
+ transform="translate(-235,150.0546)"
+ sodipodi:nodetypes="ccc"
+ id="path10491"
+ d="M 191.5,40.5 C 197,40.5 200,40 200.5,37 L 205.5,34"
+ style="opacity:0.3;fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path10571"
+ d="M -33.36912,180.455 -30.36912,183.455 -28.96863,183.0546 -28.96863,176.0546"
+ style="fill:url(#linearGradient10579);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path10544"
+ d="M -44.46863,190.5546 C -41.00737,188.4475 -41,185 -37.23477,184.4001 -36.73477,184.9001 -35.57922,186.2324 -34.97774,186.4538 -35.19915,189.2324 -39,190.6431 -44.46863,190.5546 Z"
+ style="fill:url(#radialGradient10597);fill-rule:evenodd;stroke:url(#linearGradient10481);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path10558"
+ d="M -37.0151,184.4115 -33.17019,180.3227 C -32.10366,180.99 -30.97059,182.3227 -30.43634,183.5888 L -35.2365,186.5 -37.0151,184.4115 Z"
+ style="color:#000000;fill:url(#linearGradient10560);fill-rule:evenodd;stroke:url(#linearGradient10489);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path10568"
+ d="M -29.65866,176.2759 C -31.05011,177.5139 -32.22155,178.9303 -33.30327,180.3892 -31.88187,181.2561 -31.19237,182.3892 -30.56941,183.6553 -29.79942,183.3663 -30.0043,183.4764 -29.5,183.1874"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="dialog-text-and-font"
+ transform="translate(140.041,-179.961)"
+ inkscape:label="#object_font">
+ <path
+ sodipodi:nodetypes="ccccccccccccccccc"
+ d="M 144,220 146,218 146,207 143,207 141,209 140,209 140,205 156,205 156,209 155,209 153,207 150,207 150,218 152,220 152,221 144,221 144,220 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ id="path10616"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:label="#object_font"
+ id="asda"
+ d="M 146,220 147,219 147,207 149,207 149,219 150,220 146,220 Z"
+ style="fill:url(#linearGradient10641);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-163.3209,-147.1542)"
+ id="object-ungroup"
+ inkscape:label="#selection_ungroup">
+ <g
+ id="g6068">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5825);stroke-width:1.0000005;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect9496"
+ width="8.996735"
+ height="6.999161"
+ x="355.8274"
+ y="258.6541" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5827);fill-rule:evenodd;stroke:url(#linearGradient5829);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect9498"
+ width="6.994853"
+ height="4.972945"
+ x="356.8273"
+ y="259.6532" />
+ </g>
+ <use
+ xlink:href="#rect10765"
+ height="1250"
+ width="1250"
+ id="use8598"
+ y="0"
+ x="0"
+ transform="translate(4.959,-0.03898)" />
+ <use
+ xlink:href="#rect10765"
+ height="1250"
+ width="1250"
+ id="use8601"
+ y="0"
+ x="0"
+ transform="translate(13.959,-0.0389847)" />
+ <use
+ xlink:href="#rect10765"
+ height="1250"
+ width="1250"
+ id="use8603"
+ y="0"
+ x="0"
+ transform="translate(-0.0409897,3.96102)" />
+ <use
+ xlink:href="#use8603"
+ height="1250"
+ width="1250"
+ transform="translate(13.99999,4.999995)"
+ id="use8605"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use8605"
+ height="1250"
+ width="1250"
+ transform="translate(-1.99999,5.000005)"
+ id="use8607"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use8607"
+ height="1250"
+ width="1250"
+ transform="translate(-12.00001)"
+ id="use8609"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use8598"
+ height="1250"
+ width="1250"
+ transform="translate(5.073548e-8,9)"
+ id="use9484"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#g10421"
+ height="1250"
+ width="1250"
+ id="use10425"
+ y="0"
+ x="0"
+ transform="translate(-0.0348992,-0.0284392)" />
+ </g>
+ <g
+ transform="translate(-163.3209,-167.1542)"
+ id="object-group"
+ inkscape:label="#selection_group">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient10394);stroke-width:0.9999999;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect10382"
+ width="8.996808"
+ height="7.003806"
+ x="355.8222"
+ y="258.6503" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient10396);fill-rule:evenodd;stroke:url(#linearGradient10398);stroke-width:1.0000007;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect10384"
+ width="6.994814"
+ height="4.999979"
+ x="356.8222"
+ y="259.6496" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:1.0000006"
+ id="rect10765"
+ width="2.00001"
+ height="1.999995"
+ x="353.3632"
+ y="252.1931" />
+ <use
+ xlink:href="#rect10765"
+ height="1250"
+ width="1250"
+ transform="translate(13.959,-0.03898)"
+ id="use8592"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use8592"
+ height="1250"
+ width="1250"
+ transform="translate(-14,14)"
+ id="use8594"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use8594"
+ height="1250"
+ width="1250"
+ transform="translate(14,-5.001575e-6)"
+ id="use8596"
+ y="0"
+ x="0" />
+ <g
+ transform="matrix(1,0,0,1.008019,335.3152,51.42912)"
+ id="g10379" />
+ <g
+ id="g10421">
+ <circle
+ style="color:#000000;fill:none;stroke:url(#linearGradient5819);stroke-width:1.3730356;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path10763"
+ transform="matrix(0.727881,0,0,0.728748,287.069,104.2892)"
+ cx="105.5"
+ cy="210.5"
+ r="5.5" />
+ <circle
+ style="color:#000000;fill:url(#linearGradient5821);fill-rule:evenodd;stroke:url(#linearGradient5823);stroke-width:1.8262242;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path10409"
+ transform="matrix(0.547085,0,0,0.548073,306.1137,142.2991)"
+ cx="105.5"
+ cy="210.5"
+ r="5.5" />
+ </g>
+ </g>
+ <g
+ id="edit-duplicate"
+ transform="translate(50.0399,-119.9404)"
+ inkscape:label="#edit_duplicate">
+ <g
+ id="g6144">
+ <rect
+ y="205.4404"
+ x="5.4601"
+ height="7.996297"
+ width="8.996808"
+ id="rect6120"
+ style="color:#000000;fill:none;stroke:url(#linearGradient6124);stroke-width:0.9999996;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="206.4404"
+ x="6.46013"
+ height="5.993324"
+ width="6.994814"
+ id="rect6122"
+ style="color:#000000;fill:url(#linearGradient6126);fill-rule:evenodd;stroke:url(#linearGradient6128);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="208.4686"
+ x="8.477812"
+ height="11.99031"
+ width="11.99355"
+ id="rect6134"
+ style="color:#000000;fill:none;stroke:url(#linearGradient6138);stroke-width:0.9999994;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="209.4688"
+ x="9.477811"
+ height="9.971587"
+ width="9.982319"
+ id="rect6136"
+ style="color:#000000;fill:url(#linearGradient6140);fill-rule:evenodd;stroke:url(#linearGradient6142);stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ </g>
+ <g
+ transform="translate(-298.3567,-147.1852)"
+ id="edit-clone"
+ inkscape:label="#edit_clone">
+ <g
+ id="use6150"
+ transform="translate(348.3966,47.24474)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5807);stroke-width:0.9999996;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5607"
+ width="8.996808"
+ height="7.996297"
+ x="5.4601"
+ y="205.4404" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5809);fill-rule:evenodd;stroke:url(#linearGradient5811);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5609"
+ width="6.994814"
+ height="5.993324"
+ x="6.46013"
+ y="206.4404" />
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5813);stroke-width:0.9999994;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5611"
+ width="11.99355"
+ height="11.99031"
+ x="8.477812"
+ y="208.4686" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5815);fill-rule:evenodd;stroke:url(#linearGradient5817);stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5613"
+ width="9.982319"
+ height="9.971587"
+ x="9.477811"
+ y="209.4688" />
+ </g>
+ <rect
+ y="260.7473"
+ x="359.909"
+ height="4.001433"
+ width="5.979028"
+ id="rect10978"
+ style="color:#000000;fill:url(#linearGradient11815);fill-rule:evenodd;stroke:url(#linearGradient6573);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 62.5,131.5 C 62.5,132.5 62.5,132.5 62.5,132.5"
+ id="path6162"
+ transform="translate(298.368,127.2036)"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6162"
+ height="1250"
+ width="1250"
+ transform="translate(4)"
+ id="use6164"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 63.5,130.5 65.5,130.5"
+ id="path6167"
+ transform="translate(298.368,127.2036)"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1px"
+ d="M 360.8567,263.6852 360.8567,261.6852 364.8567,261.6852"
+ id="path5069"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-298.3836,-127.1851)"
+ id="edit-clone-unlink"
+ inkscape:label="#edit_unlink_clone">
+ <use
+ xlink:href="#use6150"
+ height="1250"
+ width="1250"
+ id="use5649"
+ y="0"
+ x="0"
+ transform="translate(0.0269001,-4.867687e-6)" />
+ <rect
+ y="260.7562"
+ x="359.9373"
+ height="4.001433"
+ width="5.979028"
+ id="rect6638"
+ style="color:#000000;fill:url(#linearGradient6662);fill-rule:evenodd;stroke:url(#linearGradient6664);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <use
+ xlink:href="#path6167"
+ height="1250"
+ width="1250"
+ id="use6169"
+ y="0"
+ x="0"
+ transform="translate(0.0156)" />
+ <use
+ xlink:href="#use6164"
+ height="1250"
+ width="1250"
+ id="use6172"
+ y="0"
+ x="0"
+ transform="translate(0.0156)" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1px"
+ d="M 360.8836,263.6851 360.8836,261.6851 364.8836,261.6851"
+ id="path6005"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="dialog-align-and-distribute"
+ transform="matrix(0.997443,0,0,0.995359,234.9271,130.8863)"
+ inkscape:label="#object_align">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect11819"
+ style="color:#000000;fill:none" />
+ <g
+ id="g6628"
+ transform="matrix(1.249506,0,0,1.001998,-55.66558,-19.47412)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient6666);stroke-width:0.8969406;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6630"
+ width="7.99868"
+ height="3.995016"
+ x="10.5083"
+ y="205.5581" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient6668);fill-rule:evenodd;stroke:url(#linearGradient6670);stroke-width:0.8969405;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6632"
+ width="6.40038"
+ height="1.965379"
+ x="11.30936"
+ y="206.5531" />
+ </g>
+ <g
+ id="g6675"
+ transform="matrix(1.000856,0,0,1.001998,-53.05186,-30.53742)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5801);stroke-width:1.0021828;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6677"
+ width="5.4917"
+ height="3.995016"
+ x="10.5083"
+ y="205.5581" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5803);fill-rule:evenodd;stroke:url(#linearGradient5805);stroke-width:1.0021827;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6679"
+ width="3.492565"
+ height="1.965379"
+ x="11.50743"
+ y="206.5582" />
+ </g>
+ <g
+ id="g6690"
+ transform="matrix(1.249506,0,0,0.994331,-55.62604,-22.92368)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient6696);stroke-width:0.9003923;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6692"
+ width="10.39982"
+ height="3.02699"
+ x="10.50829"
+ y="205.5446" />
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient6700);stroke-width:0.9003921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6694"
+ width="8.7972"
+ height="1.002073"
+ x="11.30861"
+ y="206.5581" />
+ </g>
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1.0036128px;stroke-linecap:round"
+ d="M -44.541,175.4264 -44.541,190.4564"
+ id="path5730"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="dialog-xml-editor"
+ inkscape:label="#xml_editor">
+ <g
+ transform="matrix(1,0,0,0.996869,-60.05772,-144.2098)"
+ id="g5620">
+ <rect
+ y="338.8083"
+ x="115.5577"
+ height="11.99987"
+ width="14.99917"
+ id="rect5622"
+ style="color:#000000;fill:url(#linearGradient5684);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="335.7579"
+ x="115.5588"
+ height="3.011261"
+ width="14.99819"
+ id="rect5624"
+ style="color:#000000;fill:url(#linearGradient5686);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" />
+ </g>
+ <path
+ id="path14887"
+ d="M 62,196 58,199 62,202"
+ style="fill:none;stroke:url(#linearGradient5696);stroke-width:1px"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path14889"
+ d="M 64,196 68,199 64,202"
+ style="fill:none;stroke:url(#linearGradient5692);stroke-width:1px"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="document-import"
+ transform="translate(4.95909,-151.05)"
+ inkscape:label="#file_import">
+ <g
+ id="g5577">
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path4679"
+ d="M 9.54091,196.55 16.54091,196.55 20.54091,200.55 20.54091,211.55 9.54091,211.55 9.54091,196.55 Z"
+ style="color:#000000;fill:url(#linearGradient5795);fill-rule:evenodd;stroke:url(#linearGradient5797);stroke-width:1.0000011;stroke-linecap:square;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path4681"
+ d="M 16.54091,196.55 20.54091,200.55 16.54091,200.55 16.54091,196.55 Z"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient5799);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5602"
+ d="M 10.54091,210.55 19.54091,210.55 19.54091,201.55"
+ style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ id="path4685"
+ d="M 5.04091,204.05 12.04091,204.05 12.04091,202.05 15.04091,204.55 12.04091,207.05 12.04091,205.05 5.04091,205.05 5.04091,204.05 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="document-export"
+ inkscape:label="#file_export">
+ <use
+ xlink:href="#g5577"
+ height="1250"
+ width="1250"
+ id="use5582"
+ y="0"
+ x="0"
+ transform="translate(0.959089,-131.05)" />
+ <use
+ xlink:href="#path4685"
+ height="1250"
+ width="1250"
+ id="use5585"
+ y="0"
+ x="0"
+ transform="translate(10.95909,-131.05)" />
+ </g>
+ <g
+ transform="translate(-54.95913,110.0391)"
+ id="path-outset"
+ inkscape:label="#outset_path">
+ <path
+ style="color:#000000;fill:#99b6d4;fill-opacity:0.59;fill-rule:evenodd;stroke-width:1px"
+ d="M 290.5,170.5 290.5,162.5 C 294.5,162.5 298.5,166.5 298.5,170.5 L 290.5,170.5 Z"
+ id="path10754"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#99b7d4;fill-rule:evenodd"
+ d="M 290.5,155.5 290.5,162.5 C 294.5,162.5 298.5,166.5 298.5,170.5 L 305.5,170.5 C 305.5,162.5 298.5,155.5 290.5,155.5 Z"
+ id="path10752"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path10741"
+ d="M 290.5,155.5 C 298.5,155.5 305.5,162.5 305.5,170.5"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path10743"
+ d="M 290.5,162.5 C 294.5,162.5 298.5,166.5 298.5,170.5"
+ style="fill:none;stroke:#000000;stroke-linecap:round;stroke-dasharray:1, 2"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path10745"
+ d="M 299.5,161.5 295.5,161.5 299.5,165.5 299.5,161.5 Z"
+ style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-54.95913,130.039)"
+ id="path-inset"
+ inkscape:label="#inset_path">
+ <use
+ xlink:href="#path10752"
+ height="1250"
+ width="1250"
+ id="use5684"
+ y="0"
+ x="0"
+ transform="translate(-0.04087,-0.039)" />
+ <use
+ xlink:href="#path10754"
+ height="1250"
+ width="1250"
+ id="use5692"
+ y="0"
+ x="0"
+ transform="translate(-0.04087,-0.039)" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path10769"
+ d="M 290.5,155.5 C 298.5,155.5 305.5,162.5 305.5,170.5"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linecap:round;stroke-dasharray:1, 2"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path10771"
+ d="M 290.5,162.5 C 294.5,162.5 298.5,166.5 298.5,170.5"
+ style="fill:none;stroke:#000000;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path10773"
+ d="M 297.5,163.5 301.5,163.5 297.5,159.5 297.5,163.5 Z"
+ style="fill:#000000;fill-rule:evenodd;stroke:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-54.95913,150.039)"
+ id="path-offset-dynamic"
+ inkscape:label="#dynamic_offset">
+ <path
+ style="fill:#8ab3de;fill-rule:evenodd"
+ d="M 290.5,155.5 290.5,163.5 C 293.5,163.5 297.5,167.5 297.5,170.5 L 305.5,170.5 C 305.5,162.5 298.5,155.5 290.5,155.5 Z"
+ id="path10779"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path10783"
+ d="M 290.7799,163.2201 C 293.7799,163.2201 297.7799,167.2201 297.7799,170.2201"
+ style="fill:none;stroke:#000000;stroke-linecap:round;stroke-dasharray:1, 2"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path10787"
+ d="M 290.5,159.5 C 295.5,159.5 301.5,164.5 301.5,170.5"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#rect4442"
+ height="1250"
+ width="1250"
+ id="use5699"
+ y="0"
+ x="0"
+ transform="translate(335.9487,-14.03415)" />
+ <use
+ xlink:href="#path10769"
+ height="1250"
+ width="1250"
+ transform="translate(-0.04087,-0.039)"
+ id="use5710"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path10754"
+ height="1250"
+ width="1250"
+ id="use5695"
+ y="0"
+ x="0"
+ transform="translate(-0.04087,-0.039)" />
+ </g>
+ <g
+ id="path-offset-linked"
+ inkscape:label="#linked_offset"
+ transform="translate(-109.959,175.039)">
+ <use
+ xlink:href="#path10754"
+ height="1250"
+ width="1250"
+ id="use5697"
+ y="0"
+ x="0"
+ transform="translate(54.959,-5.039)" />
+ <use
+ xlink:href="#path10752"
+ height="1250"
+ width="1250"
+ id="use5690"
+ y="0"
+ x="0"
+ transform="translate(54.959,-5.039)" />
+ <use
+ xlink:href="#path10741"
+ height="1250"
+ width="1250"
+ id="use5714"
+ y="0"
+ x="0"
+ transform="translate(54.959,-5.039)" />
+ <use
+ xlink:href="#rect4442"
+ height="1250"
+ width="1250"
+ id="use5702"
+ y="0"
+ x="0"
+ transform="translate(393.9721,-22.02453)" />
+ <use
+ xlink:href="#path10771"
+ height="1250"
+ width="1250"
+ transform="translate(54.959,-5.039)"
+ id="use5717"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="path-reverse"
+ transform="translate(-149.459,215.539)"
+ inkscape:label="#selection_reverse">
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round"
+ d="M 385,165 C 385,160 387.5,157.5 392.5,157.5 396.5,157.5 400,155 400,150"
+ id="path10967"
+ sodipodi:nodetypes="csc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 386.5,151.5 393.5,151.5 393.5,149.5 396.5,152 393.5,154.5 393.5,152.5 386.5,152.5 386.5,151.5 Z"
+ id="path10971"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#rect4442"
+ height="1250"
+ width="1250"
+ id="use5704"
+ y="0"
+ x="0"
+ transform="translate(430.4721,-19.53415)" />
+ <use
+ xlink:href="#path10971"
+ height="1250"
+ width="1250"
+ transform="rotate(180,392.4795,157.4805)"
+ id="use3760"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="path-break-apart"
+ transform="translate(-79.87527,35.9917)"
+ style="fill:#8ab3df;fill-opacity:0.5882353;stroke:#0000ff"
+ inkscape:label="#selection_break">
+ <path
+ style="color:#000000;fill:#99b6d4;fill-opacity:0.7;fill-rule:evenodd;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 235.5312,230.5312 235.5312,240.5 245.625,240.5 245.625,236.5312 C 245.4547,236.5472 245.2994,236.5625 245.125,236.5625 242.0805,236.5625 239.5937,234.0852 239.5937,231.0312 239.5937,230.8642 239.6105,230.6945 239.625,230.5312 L 235.5312,230.5312 Z"
+ transform="translate(79.87527,-15.9917)"
+ id="rect10834"
+ inkscape:connector-curvature="0" />
+ <circle
+ transform="matrix(1.103062,0,0,1.10649,-36.96118,-22.90202)"
+ id="path5724"
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ cx="328"
+ cy="215"
+ r="5" />
+ </g>
+ <g
+ id="path-combine"
+ transform="translate(-79.87527,16.04128)"
+ inkscape:label="#selection_combine">
+ <path
+ id="rect10868"
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 315.4161,214.5498 325.5,214.5498 325.5,224.4978 315.4161,224.4978 315.4161,214.5498 Z M 330.5,215.0325 C 330.5,218.0864 328.0291,220.5649 324.9847,220.5649 321.9402,220.5649 319.4694,218.0864 319.4694,215.0325 319.4694,211.9785 321.9402,209.5 324.9847,209.5 328.0291,209.5 330.5,211.9785 330.5,215.0325 Z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="path-union"
+ transform="translate(-79.87527,-103.961)"
+ style="fill:#8ea7c4"
+ inkscape:label="#union">
+ <path
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 225.0625,150.5 C 222.1834,150.5 219.9048,152.7389 219.6562,155.5625 L 215.5,155.5625 215.5,165.5 225.5937,165.5 225.5937,161.4687 C 228.379,161.1903 230.5937,158.898 230.5937,156.0312 230.5937,152.9773 228.107,150.5 225.0625,150.5 Z"
+ transform="translate(99.91614,59)"
+ id="rect10877"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="path-difference"
+ transform="translate(-79.87527,-83.961)"
+ inkscape:label="#difference">
+ <circle
+ style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1"
+ id="path10888"
+ transform="translate(95.41614,59.5)"
+ cx="229.5"
+ cy="155.5"
+ r="5.5" />
+ <path
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 220.5,155.5625 220.5,165.5 230.5937,165.5 230.5937,161.375 C 230.3877,161.3984 230.2123,161.5 230,161.5 226.964,161.5 224.5,159.036 224.5,156 224.5,155.8435 224.5809,155.7157 224.5937,155.5625 L 220.5,155.5625 Z"
+ transform="translate(94.91614,59)"
+ id="rect10884"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="draw-eraser-delete-objects"
+ transform="translate(167.1461,270.5955)"
+ inkscape:label="#delete_object">
+ <rect
+ style="fill:none"
+ id="rect10920"
+ width="16"
+ height="16"
+ x="314"
+ y="210" />
+ <path
+ style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1"
+ d="M 220.5,155.5625 220.5,165.5 230.5937,165.5 230.5937,161.375 C 230.3877,161.3984 230.2123,161.5 230,161.5 226.964,161.5 224.5,159.036 224.5,156 224.5,155.8435 224.5809,155.7157 224.5937,155.5625 L 220.5,155.5625 Z"
+ transform="translate(94.91614,59)"
+ id="path6882"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g5771"
+ height="12"
+ width="12"
+ id="use5777"
+ y="0"
+ x="0"
+ transform="translate(-652,41)" />
+ </g>
+ <g
+ id="path-cut"
+ transform="translate(-79.87527,-3.96088)"
+ inkscape:label="#cut_path">
+ <path
+ transform="translate(95.41614,59.5)"
+ style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1"
+ d="M 224,155.5 C 224,152.464 226.464,150 229.5,150 232.536,150 235,152.464 235,155.5 235,158.536 232.536,161 229.5,161"
+ id="path10897"
+ sodipodi:nodetypes="cscs"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 220.5,155.5625 220.5,165.5 230.5937,165.5 230.5937,161.375 C 230.3877,161.3984 230.2123,161.5 230,161.5 226.964,161.5 224.5,159.036 224.5,156 224.5,155.8435 224.5809,155.7157 224.5937,155.5625 L 220.5,155.5625 Z"
+ transform="translate(94.91614,59)"
+ id="path10899"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="path-intersection"
+ transform="translate(-79.87523,-63.96088)"
+ inkscape:label="#intersection">
+ <rect
+ style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1;stroke-dashoffset:0.5"
+ id="rect6889"
+ width="10"
+ height="10"
+ x="315.4161"
+ y="214.5" />
+ <path
+ transform="translate(95.4161,59.5)"
+ style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1"
+ d="M 224,155.5 C 224,152.464 226.464,150 229.5,150 232.536,150 235,152.464 235,155.5 235,158.536 232.536,161 229.5,161"
+ id="path10903"
+ sodipodi:nodetypes="cscs"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 204.5937,175.5 C 204.5772,175.6736 204.5,175.8221 204.5,176 204.5,179.036 206.964,181.5 210,181.5 210.1779,181.5 210.3264,181.4228 210.5,181.4062 L 210.5,175.5 204.5937,175.5 Z"
+ transform="translate(114.9161,39)"
+ id="rect10907"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="path-division"
+ transform="translate(-79.87523,-23.96088)"
+ inkscape:label="#division">
+ <path
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 235.5312,170.5312 235.5312,180.5 245.625,180.5 245.5312,176.4375 C 245.3576,176.454 245.2092,176.5312 245.0312,176.5312 241.9952,176.5312 239.5313,174.0673 239.5312,171.0312 239.5312,170.8533 239.6085,170.7049 239.625,170.5312 L 235.5312,170.5312 Z"
+ transform="translate(79.87523,43.96088)"
+ id="rect10930"
+ sodipodi:nodetypes="ccccsscc"
+ inkscape:connector-curvature="0" />
+ <path
+ transform="translate(95.4161,59.5)"
+ style="color:#000000;fill:none;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1"
+ d="M 224,155.5 C 224,152.464 226.464,150 229.5,150 232.536,150 235,152.464 235,155.5 235,158.536 232.536,161 229.5,161"
+ id="path10924"
+ sodipodi:nodetypes="cscs"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 319.469,214.4609 C 319.4524,214.6345 319.3752,214.7829 319.3752,214.9609 319.3752,217.9969 321.8392,220.4609 324.8752,220.4609 325.0532,220.4609 325.2016,220.3837 325.3752,220.3671 L 325.3752,214.4609 319.469,214.4609 Z"
+ id="path5727"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="path-exclusion"
+ transform="translate(-79.87527,-43.95873)"
+ inkscape:label="#exclusion">
+ <path
+ id="path10934"
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 315.4161,214.5498 325.5,214.5498 325.5,224.4978 315.4161,224.4978 315.4161,214.5498 Z M 330.5,215.0325 C 330.5,218.0864 328.0291,220.5649 324.9847,220.5649 321.9402,220.5649 319.4694,218.0864 319.4694,215.0325 319.4694,211.9785 321.9402,209.5 324.9847,209.5 328.0291,209.5 330.5,211.9785 330.5,215.0325 Z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="dialog-object-properties"
+ inkscape:label="#dialog_item_properties"
+ transform="translate(-139.9577,-49.99929)">
+ <rect
+ y="120.5063"
+ x="330.4642"
+ height="8.992967"
+ width="8.996735"
+ id="rect10430"
+ style="color:#000000;fill:none;stroke:url(#linearGradient10434);stroke-width:1.0000006;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="121.5137"
+ x="331.4641"
+ height="6.985559"
+ width="6.994853"
+ id="rect10432"
+ style="color:#000000;fill:url(#linearGradient10436);fill-rule:evenodd;stroke:url(#linearGradient10438);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ sodipodi:nodetypes="cccccccccccccsccccccccscc"
+ id="path11005"
+ d="M 343.459,125.4992 C 344.959,125.4992 345.459,126.4992 345.459,127.4992 L 345.459,129.9992 344.459,130.4992 343.459,130.4992 343.459,128.4992 339.459,128.4992 339.459,130.4992 338.459,130.4992 337.459,129.9992 337.459,127.4992 C 337.459,126.4992 337.959,125.4992 339.459,125.4992 L 339.459,120.4992 C 337.959,120.4992 337.459,119.4992 337.459,118.4992 L 337.459,115.9992 338.459,115.4992 339.459,115.4992 339.459,117.4992 343.459,117.4992 343.459,115.4992 344.459,115.4992 345.459,115.9992 345.459,118.4992 C 345.459,118.9992 344.959,120.4992 343.459,120.4992 L 343.459,125.4992 Z"
+ style="fill:url(#linearGradient11021);fill-rule:evenodd;stroke:url(#linearGradient10450);stroke-width:1.0000004px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round"
+ d="M 340.459,120.4992 340.459,124.4992"
+ id="path10442"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#646464;fill-opacity:0.75;fill-rule:evenodd;stroke:#646464;stroke-width:1px"
+ d="M 342.959,120.4992 341.959,120.4992"
+ id="path10455"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path10455"
+ style="stroke:#646464"
+ height="1250"
+ width="1250"
+ transform="translate(0,5)"
+ id="use10459"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round"
+ d="M 340.459,126.4992 C 338.459,126.4992 338.459,126.4992 338.459,129.4992"
+ id="path10463"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="bitmap-trace"
+ style="stroke:#000000;stroke-width:0.7"
+ inkscape:label="#selection_trace"
+ transform="translate(-70.10913,-49.13897)">
+ <path
+ id="rect11025"
+ style="color:#000000;fill:none;stroke-linecap:round;stroke-linejoin:round"
+ d="M 308.4986,119.5635 305.5,119.5268 305.5,129.5012 315.5,129.5012 315.5,126.731 M 308.4348,121.3144 307.5,121.3144 307.5,127.5261 313.6875,127.5261 313.6875,126.586 M 318.4395,120.5036 C 318.4395,122.6793 316.6746,124.4452 314.5,124.4452 312.3255,124.4452 310.5606,122.6793 310.5606,120.5036 310.5606,118.3277 312.3255,116.5619 314.5,116.5619 316.6746,116.5619 318.4395,118.3277 318.4395,120.5036 Z M 320.4719,120.4996 C 320.4719,123.796 317.7965,126.4715 314.5,126.4715 311.2035,126.4715 308.5281,123.796 308.5281,120.4996 308.5281,117.2031 311.2035,114.5277 314.5,114.5277 317.7965,114.5277 320.4719,117.2031 320.4719,120.4996 Z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="dialog-transform"
+ transform="matrix(0.997361,0,0,0.997566,-193.9405,170.3188)"
+ inkscape:label="#object_trans">
+ <path
+ sodipodi:nodetypes="cscs"
+ id="path11132"
+ d="M 394.9,119.4 C 397.936,119.4 400.4,121.864 400.4,124.9 400.4,127.936 397.936,130.4 394.9,130.4 391.864,130.4 389.4,127.936 389.4,124.9"
+ style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.2030518;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1.2030517, 1.2030517;stroke-dashoffset:0.2406103"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path11140"
+ d="M 394,119.5 397,122 397,117 394,119.5 Z"
+ style="fill:#c80000;fill-rule:evenodd"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(1,0,0,1.008019,374.9507,-91.76403)"
+ id="g7590">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient7596);stroke-width:0.9985474;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7592"
+ width="7.99868"
+ height="7.932448"
+ x="10.5083"
+ y="205.5765" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient7598);fill-rule:evenodd;stroke:url(#linearGradient7600);stroke-width:0.9985487;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7594"
+ width="6.00072"
+ height="5.947848"
+ x="11.50669"
+ y="206.5649" />
+ </g>
+ </g>
+ <g
+ id="show-grid"
+ inkscape:label="#grid"
+ transform="translate(-304.959,5.068269)">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.7"
+ id="rect13175"
+ width="16"
+ height="16"
+ x="405"
+ y="220" />
+ <rect
+ y="220"
+ x="405"
+ height="1"
+ width="1"
+ id="rect13046"
+ style="color:#000000;fill:#000000;fill-rule:evenodd;stroke-width:0.7" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(2.959,-0.039128)"
+ id="use5896"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(5.959,-0.039128)"
+ id="use5898"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(8.959,-0.039128)"
+ id="use5900"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(11.959,-0.039128)"
+ id="use5902"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(14.959,-0.039128)"
+ id="use5904"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(-0.041,2.960872)"
+ id="use5906"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(2.959,2.960872)"
+ id="use5908"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(5.959,2.960872)"
+ id="use5910"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(8.959,2.960872)"
+ id="use5912"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(11.959,2.960872)"
+ id="use5914"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(14.959,2.960872)"
+ id="use5916"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(-0.041,5.960872)"
+ id="use5918"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(2.959,5.960872)"
+ id="use5920"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(5.959,5.960872)"
+ id="use5922"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(8.959,5.960872)"
+ id="use5924"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(11.959,5.960872)"
+ id="use5926"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(14.959,5.960872)"
+ id="use5928"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(-0.041,8.960872)"
+ id="use5930"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(2.959,8.960872)"
+ id="use5932"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(5.959,8.960872)"
+ id="use5934"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(8.959,8.960872)"
+ id="use5936"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(11.959,8.960872)"
+ id="use5938"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(14.959,8.960872)"
+ id="use5940"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(-0.041,11.96087)"
+ id="use5942"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(2.959,11.96087)"
+ id="use5944"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(5.959,11.96087)"
+ id="use5946"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(8.959,11.96087)"
+ id="use5948"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(11.959,11.96087)"
+ id="use5950"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(14.959,11.96087)"
+ id="use5952"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(-0.041,14.96087)"
+ id="use5954"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(2.959,14.96087)"
+ id="use5956"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(5.959,14.96087)"
+ id="use5958"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(8.959,14.96087)"
+ id="use5960"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(11.959,14.96087)"
+ id="use5962"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect13046"
+ height="1250"
+ width="1250"
+ transform="translate(14.959,14.96087)"
+ id="use5964"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="show-guides"
+ transform="translate(-304.959,25.03912)"
+ inkscape:label="#guides">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.7"
+ id="rect13315"
+ width="16"
+ height="16"
+ x="405"
+ y="220" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 105.5,258.5 106.5,258.5"
+ id="path5974"
+ transform="translate(304.959,-25.03912)"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5974"
+ height="1250"
+ width="1250"
+ transform="translate(3)"
+ id="use5976"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5974"
+ transform="translate(6)"
+ height="1250"
+ width="1250"
+ id="use5978"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5974"
+ height="1250"
+ width="1250"
+ transform="translate(9)"
+ id="use5980"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 407.459,230.4609 407.459,229.4609"
+ id="path5982"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5982"
+ height="1250"
+ width="1250"
+ transform="translate(0,-3)"
+ id="use5984"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5982"
+ height="1250"
+ width="1250"
+ transform="translate(0,-6)"
+ id="use5986"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5982"
+ height="1250"
+ width="1250"
+ transform="translate(0,-9)"
+ id="use5988"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 405.459,233.4609 408.459,233.4609"
+ id="path5990"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 407.459,235.4609 407.459,232.4609"
+ id="path5992"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="window-next"
+ transform="translate(-15.01687,-30.21803)"
+ inkscape:label="#window_next">
+ <use
+ xlink:href="#g6011"
+ height="1250"
+ width="1250"
+ id="use6015"
+ y="0"
+ x="0"
+ transform="translate(-0.0408664,-0.0391171)" />
+ <use
+ xlink:href="#g6043"
+ height="1250"
+ width="1250"
+ id="use6047"
+ y="0"
+ x="0"
+ transform="translate(113.0168,89.22898)" />
+ </g>
+ <g
+ id="window-previous"
+ transform="matrix(1,0,0,0.996869,-15.05696,-49.20811)"
+ inkscape:label="#window_previous">
+ <g
+ id="g6011">
+ <rect
+ style="color:#000000;fill:url(#linearGradient5791);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round"
+ id="rect13417"
+ width="14.99917"
+ height="11.99987"
+ x="115.5577"
+ y="338.8083" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5793);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round"
+ id="rect13419"
+ width="14.99819"
+ height="3.011261"
+ x="115.5588"
+ y="335.7579" />
+ </g>
+ <use
+ xlink:href="#g6036"
+ height="1250"
+ width="1250"
+ transform="translate(108.0577,89.23782)"
+ id="use6040"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="window-new"
+ transform="translate(-10.00246,25.01596)"
+ inkscape:label="#view_new">
+ <rect
+ y="303.4572"
+ x="112.4954"
+ height="10.03091"
+ width="13.00704"
+ id="rect13445"
+ style="color:#000000;fill:url(#linearGradient6026);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999999;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="300.484"
+ x="112.4954"
+ height="2.976774"
+ width="13.00705"
+ id="rect13447"
+ style="color:#000000;fill:url(#linearGradient13477);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="309.329"
+ x="110.5057"
+ height="6.170955"
+ width="9.983619"
+ id="rect13433"
+ style="color:#000000;fill:url(#linearGradient6034);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999998;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="306.4879"
+ x="110.5053"
+ height="2.977982"
+ width="9.984552"
+ id="rect13435"
+ style="color:#000000;fill:url(#linearGradient13473);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round" />
+ </g>
+ <g
+ id="view-fullscreen"
+ transform="translate(10.04088,-34.96084)"
+ inkscape:label="#fullscreen">
+ <rect
+ y="306.4892"
+ x="93.45912"
+ height="5.971639"
+ width="8.082604"
+ id="rect13459"
+ style="color:#000000;fill:url(#linearGradient6001);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="303.5228"
+ x="93.45915"
+ height="2.934225"
+ width="8.084316"
+ id="rect13461"
+ style="color:#000000;fill:url(#linearGradient13469);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000008;stroke-linecap:round;stroke-linejoin:round" />
+ <path
+ id="path13486"
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 90,307.5 92,306 92,309 90,307.5 Z M 99,302 96,302 97.5,300 99,302 Z M 105,307.5 103,306 103,309 105,307.5 Z M 99,314 96,314 97.5,316 99,314 Z"
+ sodipodi:nodetypes="cccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="show-dialogs"
+ transform="translate(-10.00246,-95)"
+ inkscape:label="#dialog_toggle">
+ <g
+ id="g14258">
+ <path
+ style="color:#000000;fill:none;stroke:#bebebe;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.9942363"
+ d="M 117.5025,304.5 120.5025,304.5 120.5178,301.4713"
+ id="rect14289"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#bebebe;stroke-width:0.999999;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.9942363"
+ d="M 111.5178,310.5154 120.5025,310.5 120.5025,304.5 117.5025,304.5"
+ id="rect14287"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999991;stroke-linecap:round;stroke-linejoin:round"
+ d="M 117.5025,304.5 111.5025,304.5 111.5025,310.5"
+ id="path14327"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient14343);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999996;stroke-linecap:round;stroke-linejoin:round"
+ d="M 120.5025,301.5 111.5025,301.5 111.5025,304.5 117.5025,304.5"
+ id="path14331"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="translate(40.00246)"
+ y="300"
+ x="70"
+ height="16"
+ width="16"
+ id="rect14256"
+ style="color:#000000;fill:none" />
+ <circle
+ style="color:#000000;fill:url(#linearGradient14389);fill-rule:evenodd;stroke:url(#linearGradient5632);stroke-width:0.9999996;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:0.9942363"
+ id="path14381"
+ transform="translate(39.50246,0.5)"
+ cx="82.5"
+ cy="309.5"
+ r="3.5" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ d="M 116.5025,315.5 119.5025,312.5"
+ id="path14391"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ sodipodi:nodetypes="cc"
+ id="path14405"
+ d="M 121.5025,300.5 110.5025,311.5"
+ style="fill:none;stroke:#c80000;stroke-width:0.9;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="paint-solid"
+ transform="translate(304.9555,253.9798)"
+ inkscape:label="#fill_solid">
+ <rect
+ inkscape:label="#ccc"
+ y="66"
+ x="671"
+ height="17.9991"
+ width="18.0244"
+ id="ccc"
+ style="color:#000000;fill:#99b6d4;fill-rule:evenodd;stroke-width:1.0000004" />
+ <use
+ xlink:href="#rect4381"
+ height="1250"
+ width="1250"
+ id="use5847"
+ y="0"
+ x="0"
+ transform="translate(0.045091,0.0202183)" />
+ </g>
+ <g
+ id="paint-gradient-linear"
+ inkscape:label="#fill_gradient"
+ transform="translate(314.9555,254.0117)">
+ <rect
+ y="65.9991"
+ x="691.0244"
+ height="18"
+ width="17.99999"
+ id="aaa"
+ style="color:#000000;fill:url(#linearGradient18352);fill-rule:evenodd;stroke-width:1.0000004" />
+ <use
+ xlink:href="#rect4381"
+ height="1250"
+ width="1250"
+ id="use5844"
+ y="0"
+ x="0"
+ transform="translate(20.04509,-0.0117415)" />
+ </g>
+ <g
+ id="paint-gradient-radial"
+ transform="translate(324.9555,253.9798)"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true"
+ inkscape:label="#fill_radial">
+ <rect
+ y="65.9991"
+ x="711"
+ height="18"
+ width="18.0244"
+ id="sss"
+ style="color:#000000;fill:url(#radialGradient4374);fill-rule:evenodd;stroke-width:1.0000004"
+ inkscape:r_cx="true"
+ inkscape:r_cy="true" />
+ <use
+ xlink:href="#rect4381"
+ height="1250"
+ width="1250"
+ id="use5840"
+ y="0"
+ x="0"
+ transform="translate(40.04509,0.0202183)" />
+ </g>
+ <g
+ transform="translate(44.5,189.75)"
+ id="stroke-join-miter"
+ inkscape:label="#join_miter">
+ <path
+ style="fill:#99b6d4;fill-rule:evenodd"
+ d="M 900.04,181.75 900,158.75 923,158.75 923,176.25 917,176.25 917,181.75"
+ id="path4023"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:9"
+ id="rect4025"
+ width="24"
+ height="24"
+ x="899.5"
+ y="158.25" />
+ <path
+ id="path4027"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 900.04,181.75 900,158.75 923,158.75 M 917,181.75 917,175.75 923,175.75"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:9"
+ id="use5673"
+ width="2"
+ height="2"
+ x="920.5246"
+ y="167.2491" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-3.999997)"
+ id="use5689"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-7.999997)"
+ id="use5691"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12)"
+ id="use5693"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,4)"
+ id="use5696"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,8)"
+ id="use5698"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5673"
+ height="1250"
+ width="1250"
+ transform="translate(-12,12)"
+ id="use5700"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="layer-new"
+ transform="translate(-820,-145)"
+ inkscape:label="#new_layer">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="rect4045"
+ d="M 969.5,185.5 980.5,185.5 976.5,180.5 965.5,180.5 969.5,185.5 Z"
+ style="color:#000000;opacity:0.4809384;fill:url(#linearGradient5693);fill-rule:evenodd;stroke:url(#linearGradient5695);stroke-width:0.9999474;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path4802"
+ d="M 969.5,182.5 980.5,182.5 976.5,177.5 965.5,177.5 969.5,182.5 Z"
+ style="color:#000000;fill:url(#linearGradient5787);fill-rule:evenodd;stroke:url(#linearGradient5789);stroke-width:0.9999474;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path4048"
+ d="M 967,172 967,170 969,170 969,172 971,172 971,174 969,174 969,176 967,176 967,174 965,174 965,172 967,172 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="ccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="layer-rename"
+ transform="matrix(1,0,0,0.994505,-839.959,-133.8815)"
+ inkscape:label="#rename_layer">
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5771"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.004834,19.959,12.07373)" />
+ <g
+ transform="rotate(-90,994,185)"
+ id="g5621">
+ <path
+ transform="translate(20,8)"
+ style="fill:#ffffff;fill-rule:evenodd"
+ d="M 965.5,174.5 969.5,176.5 969.5,172.5 965.5,174.5 Z"
+ id="path5597"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient5644);fill-rule:evenodd"
+ d="M 989.5731,180.459 997.1093,180.459 997.1093,184.459 989.5731,184.459 C 990.0731,183.459 990.0731,181.459 989.5731,180.459 Z"
+ id="path5599"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient5658);stroke-width:1.002759px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 998.0682,180.459 988.5682,180.459 985.5,182.5 988.5,184.5 998.1142,184.459 C 998.811,183.357 998.8014,181.4989 998.0682,180.459 Z"
+ id="path5591"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient5669);stroke-width:1.0027586px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 989.0707,184.459 C 989.5707,183.7698 989.5707,181.459 989.0707,180.459"
+ id="path5593"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#c80000;fill-rule:evenodd"
+ d="M 996.6069,180.459 998.1142,180.459 C 998.6166,181.459 998.6166,183.459 998.1142,184.459 L 996.6069,184.459 996.6069,180.459 Z"
+ id="path5611"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd"
+ id="rect6047"
+ width="1"
+ height="1.004834"
+ x="989.959"
+ y="180.8858" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1.0027589px;stroke-linecap:round"
+ d="M 990.459,183.3979 990.459,188.4221"
+ id="path6049"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="layer-raise"
+ transform="translate(-819.959,-24.96088)"
+ inkscape:label="#raise_layer">
+ <rect
+ style="color:#000000;fill:none;stroke-width:1.4"
+ id="rect12856"
+ width="16.00002"
+ height="16"
+ x="964.959"
+ y="168.9609" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5780"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,0.96088)" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path5705"
+ d="M 969.5,180.5 980.5,180.5 976.5,175.5 965.5,175.5 969.5,180.5 Z"
+ style="color:#000000;fill:url(#linearGradient5782);fill-rule:evenodd;stroke:url(#linearGradient5784);stroke-width:1.0000004;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 973.5,176 976,179 974,179 974,182 973,183 973,179 971,179 973.5,176 Z"
+ id="path7204"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5778"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,-7.03912)" />
+ </g>
+ <g
+ id="layer-bottom"
+ transform="translate(-819.959,35.03912)"
+ inkscape:label="#layer_to_bottom">
+ <use
+ xlink:href="#rect12856"
+ height="1250"
+ width="1250"
+ id="use13605"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5705"
+ height="1250"
+ width="1250"
+ id="use5769"
+ y="0"
+ x="0"
+ transform="translate(-0.0409998,2.96088)" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5798"
+ y="0"
+ x="0"
+ transform="translate(-0.0409998,-4.03912)" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5796"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,-7.03912)" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 973.5,183 976,180 974,180 974,173 973,172 973,180 971,180 973.5,183 Z"
+ id="path7975"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="layer-top"
+ transform="translate(-819.959,15.03912)"
+ inkscape:label="#layer_to_top">
+ <use
+ xlink:href="#rect12856"
+ height="1250"
+ width="1250"
+ id="use13602"
+ y="0"
+ x="0"
+ transform="translate(1.5625e-5,3.535156e-6)" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5794"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,0.96088)" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5792"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,-2.03912)" />
+ <use
+ xlink:href="#path5705"
+ height="1250"
+ width="1250"
+ id="use5767"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,-5.03912)" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 973.5,171 976,174 974,174 974,182 973,183 973,174 971,174 973.5,171 Z"
+ id="path7995"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="layer-delete"
+ transform="translate(-819.959,55.03912)"
+ inkscape:label="#delete_layer">
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5800"
+ y="0"
+ x="0"
+ transform="translate(-0.0409998,2.96088)" />
+ <use
+ xlink:href="#path11129"
+ height="1250"
+ width="1250"
+ id="use5864"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,-3.03912)" />
+ <g
+ id="g5771"
+ transform="translate(-0.541,0.46088)">
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ style="fill:#aa0000;fill-rule:evenodd;stroke:#aa0000;stroke-width:1px"
+ d="M 972,171 973,170 980,170 981,171 981,178 980,179 973,179 972,178 972,171 Z"
+ id="path8011"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path8023"
+ d="M 974,171.85 979,176.85"
+ style="fill:none;stroke:#ffffff;stroke-width:1.7"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path8025"
+ d="M 979,171.85 974,176.85"
+ style="fill:none;stroke:#ffffff;stroke-width:1.8;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="layer-duplicate"
+ transform="translate(-819.96,95.039)"
+ inkscape:label="#duplicate_layer">
+ <rect
+ id="rect6972"
+ height="16"
+ width="16"
+ y="171.96"
+ x="964.96"
+ style="fill:none" />
+ <use
+ id="use6122"
+ transform="translate(-0.041,2.9609)"
+ height="1250"
+ width="1250"
+ xlink:href="#path4802"
+ y="0"
+ x="0" />
+ <use
+ id="use6123"
+ transform="translate(-0.041,1.961)"
+ height="1250"
+ width="1250"
+ xlink:href="#path5705"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="selection-move-to-layer-above"
+ transform="matrix(0.997444,0,0,1,-817.4926,-59)"
+ inkscape:label="#move_selection_above">
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5774"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,-11.03912)" />
+ <rect
+ style="color:#000000;fill:none"
+ id="rect9602"
+ width="16"
+ height="16"
+ x="965"
+ y="164" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 973.5,167 976,170 974,170 974,175 973,176 973,170 971,170 973.5,167 Z"
+ id="path9533"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g5834">
+ <path
+ id="path9593"
+ d="M 965.5,173.5 975.5,173.5 979.5,177.5 969.5,177.5 965.5,173.5 Z"
+ style="fill:none;stroke:#ffffff;stroke-width:1.0012804px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="173"
+ x="965"
+ height="1"
+ width="1"
+ id="rect9565"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <use
+ xlink:href="#rect9565"
+ x="0"
+ y="0"
+ id="use5802"
+ transform="translate(1.959,1.96088)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5802"
+ x="0"
+ y="0"
+ id="use5804"
+ transform="translate(2,2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5804"
+ x="0"
+ y="0"
+ id="use5806"
+ transform="translate(2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5806"
+ x="0"
+ y="0"
+ id="use5808"
+ transform="translate(2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5808"
+ x="0"
+ y="0"
+ id="use5810"
+ transform="translate(2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5810"
+ x="0"
+ y="0"
+ id="use5812"
+ transform="translate(2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5812"
+ x="0"
+ y="0"
+ id="use5815"
+ transform="translate(2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5815"
+ x="0"
+ y="0"
+ id="use5817"
+ transform="translate(-2,-2)"
+ width="1250"
+ height="1250" />
+ <rect
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ id="use5821"
+ width="1"
+ height="1"
+ x="970.959"
+ y="172.9609" />
+ <use
+ xlink:href="#use5821"
+ x="0"
+ y="0"
+ id="use5823"
+ transform="translate(-2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5823"
+ x="0"
+ y="0"
+ id="use5825"
+ transform="translate(-2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5817"
+ x="0"
+ y="0"
+ id="use5829"
+ transform="translate(-2,-2)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5829"
+ x="0"
+ y="0"
+ id="use5832"
+ transform="translate(-2)"
+ width="1250"
+ height="1250" />
+ </g>
+ </g>
+ <g
+ id="selection-move-to-layer-below"
+ transform="matrix(0.997444,0,0,1,-817.4926,-39)"
+ inkscape:label="#move_selection_below">
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5776"
+ y="0"
+ x="0"
+ transform="translate(-0.0409998,-5.03912)" />
+ <rect
+ style="color:#000000;fill:none"
+ id="rect10345"
+ width="16"
+ height="16"
+ x="965"
+ y="164" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 973.5,177 971,174 973,174 973,169 974,168 974,174 976,174 973.5,177 Z"
+ id="path10353"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g5834"
+ height="1250"
+ width="1250"
+ id="use5851"
+ y="0"
+ x="0"
+ transform="translate(-0.041,-6.999996)" />
+ </g>
+ <g
+ id="layer-previous"
+ transform="matrix(0.999888,0,0,0.999919,-819.8907,-104.985)"
+ inkscape:label="#switch_to_layer_above">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path11129"
+ d="M 969.5,185.5 980.5,185.5 976.5,180.5 965.5,180.5 969.5,185.5 Z"
+ style="color:#000000;opacity:0.4809384;fill:url(#linearGradient5770);fill-rule:evenodd;stroke:url(#linearGradient5772);stroke-width:1.0000962;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path11131"
+ d="M 969.5,175.5 980.5,175.5 976.5,170.5 965.5,170.5 969.5,175.5 Z"
+ style="color:#000000;fill:url(#linearGradient5775);fill-rule:evenodd;stroke:url(#linearGradient5780);stroke-width:1.0000962;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 973.5,176 971,179 973,179 973,184 974,183 974,179 976,179 973.5,176 Z"
+ id="path11143"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="layer-next"
+ transform="translate(-819.959,-84.96088)"
+ inkscape:label="#switch_to_layer_below">
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 973.5,180 976,177 974,177 974,172 973,173 973,177 971,177 973.5,180 Z"
+ id="path11158"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path11131"
+ height="1250"
+ width="1250"
+ id="use5858"
+ y="0"
+ x="0"
+ transform="translate(-0.0410002,9.96088)" />
+ <use
+ xlink:href="#path11129"
+ height="1250"
+ width="1250"
+ id="use5861"
+ y="0"
+ x="0"
+ transform="translate(-0.0409998,-10.03912)" />
+ </g>
+ <g
+ id="selection-make-bitmap-copy"
+ transform="matrix(-1,0,0,1,321.0144,75.92699)"
+ inkscape:label="#selection_bitmap">
+ <path
+ style="color:#000000;fill:url(#linearGradient11197);fill-rule:evenodd;stroke:url(#linearGradient11286);stroke-linecap:round;stroke-linejoin:round"
+ d="M 250.4841,75.57301 C 255.0144,74.05375 254.0144,72.55375 254.5144,71.55375 L 258.5144,71.55375 C 258.7644,72.29084 259.8455,74.26817 261.0144,74.52793 L 265.5144,75.52793 265.5144,84.57301 251.5144,84.55375 250.5144,83.55375 250.4841,75.57301 Z"
+ id="rect11168"
+ sodipodi:nodetypes="cccsccccc"
+ inkscape:connector-curvature="0" />
+ <circle
+ transform="matrix(0.938759,0,0,0.938488,13.33429,5.86879)"
+ id="path11178"
+ style="color:#000000;fill:url(#linearGradient6187);fill-rule:evenodd;stroke:#000000;stroke-width:1.3620667;stroke-linecap:round;stroke-linejoin:round"
+ cx="258.5"
+ cy="78.5"
+ r="3.5" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient11210);fill-rule:evenodd;stroke:url(#linearGradient11294);stroke-linecap:round;stroke-linejoin:round"
+ id="rect11199"
+ width="4"
+ height="9"
+ x="261.5144"
+ y="75.57301" />
+ <path
+ style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient11302);stroke-width:0.9999997px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 254.4841,71.58841 254.4841,69.57299 258.4841,69.57299 258.4841,71.58841 254.4841,71.58841 Z"
+ id="path11225"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#b1b1b1;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 258.9841,75.32301 C 257.9841,74.32301 254.4841,74.32301 253.4841,75.32301"
+ id="path11254"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <circle
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:0.747"
+ id="path3614"
+ transform="matrix(-1,0,0,1,321.0144,-55.92699)"
+ cx="64"
+ cy="135"
+ r="1" />
+ <circle
+ style="color:#000000;fill:#ffffff;fill-opacity:0.4472574;fill-rule:evenodd;stroke-width:0.747"
+ id="path4498"
+ transform="matrix(-1.5,0,0,1.5,351.5144,-122.927)"
+ cx="64"
+ cy="135"
+ r="1" />
+ </g>
+ <g
+ id="document-cleanup"
+ transform="translate(-254.959,-4.930791)"
+ inkscape:label="#file_vacuum">
+ <path
+ sodipodi:nodetypes="cssc"
+ id="path11319"
+ d="M 268.5,100 C 267.5,100 265.5,100.3049 265.5,98 265.5,95 269.1283,95.5 271.5,95.5 274.5,95.5 274.5,93 274.5,93"
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <ellipse
+ transform="matrix(0.119829,0,0,0.105878,237.4457,94.48869)"
+ id="path11327"
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:8.8780499;stroke-linecap:round;stroke-linejoin:round"
+ cx="273.75"
+ cy="97.5"
+ rx="6.25"
+ ry="6.5" />
+ <path
+ sodipodi:nodetypes="ccccs"
+ id="rect11314"
+ d="M 270,98.98237 C 277.036,95.04595 279.5,99.48237 279.5,99.48237 L 279.5,104.4824 268.5,104.5 C 268.5,104.5 265.5,101.5 270,98.98237 Z"
+ style="color:#000000;fill:url(#linearGradient11335);fill-rule:evenodd;stroke:url(#linearGradient11359);stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <ellipse
+ transform="matrix(0.401393,0,0,0.385965,168.1187,65.35082)"
+ id="path11312"
+ style="color:#000000;fill:url(#radialGradient11343);fill-rule:evenodd;stroke:#000000;stroke-width:2.5406296;stroke-linecap:round;stroke-linejoin:round"
+ cx="273.75"
+ cy="97.5"
+ rx="6.25"
+ ry="6.5" />
+ <rect
+ y="90.46992"
+ x="270.455"
+ height="2.034293"
+ width="8.089884"
+ id="rect11317"
+ style="color:#000000;fill:#646464;fill-rule:evenodd;stroke:url(#linearGradient11367);stroke-width:0.9999993;stroke-linecap:round;stroke-linejoin:round" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 273.459,91.43079 275.459,91.43079"
+ id="path5624"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-298.3149,-87.1388)"
+ id="edit-select-all"
+ inkscape:label="#selection_select_all">
+ <use
+ xlink:href="#g6068"
+ height="1250"
+ width="1250"
+ transform="translate(-0.0124923,-0.0145053)"
+ id="use6072"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#g10421"
+ height="1250"
+ width="1250"
+ transform="translate(-1.042199,0.956231)"
+ id="use6075"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 55.5,185.5 56.5,185.5"
+ id="path6078"
+ transform="translate(298.3149,67.13877)"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(3)"
+ id="use6080"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(6)"
+ id="use6082"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(9)"
+ id="use6084"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(12)"
+ id="use6086"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(2,15)"
+ id="use6088"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(5,15)"
+ id="use6090"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(8,15)"
+ id="use6092"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(11,15)"
+ id="use6094"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(14,15)"
+ id="use6096"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 55.5,187.5 55.5,188.5"
+ id="path6100"
+ transform="translate(298.3149,67.13877)"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(0,3)"
+ id="use6102"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(0,6)"
+ id="use6104"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(0,9)"
+ id="use6106"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(0,12)"
+ id="use6108"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(15,10)"
+ id="use6110"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(15,7)"
+ id="use6112"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(15,4)"
+ id="use6114"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(15,1)"
+ id="use6116"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(15,-2)"
+ id="use6118"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="document-open-recent"
+ transform="translate(-260,4.914011)"
+ inkscape:label="#file_open_recent">
+ <use
+ xlink:href="#rect6425"
+ height="1250"
+ width="1250"
+ transform="translate(4,4)"
+ id="use5610"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect6425"
+ height="1250"
+ width="1250"
+ transform="translate(2,2)"
+ id="use5608"
+ y="0"
+ x="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient5766);fill-rule:evenodd;stroke:url(#linearGradient5768);stroke-linecap:round;stroke-linejoin:round"
+ d="M 273.5,21.543 278.5,21.543 278.5,31.543 270.5,31.543 270.5,24.543 273.5,21.543 Z"
+ id="rect6425"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <circle
+ style="color:#000000;fill:url(#linearGradient5612);fill-rule:evenodd;stroke:url(#linearGradient5620);stroke-width:0.7119799;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path6398"
+ transform="matrix(1.331759,0,0,1.327869,-92.69296,-5.997991)"
+ cx="281"
+ cy="23"
+ r="3" />
+ <path
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ d="M 281,22 282,21 282,25 281,25 281,22 Z"
+ id="rect4108"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ d="M 280,23.9955 282,23.9955 282,24.9955 279,24.9955 280,23.9955 Z"
+ id="rect4110"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 270.5,24.543 273.5,24.543 273.5,21.543 270.5,24.543 Z"
+ id="path4704"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="format-text-direction-horizontal"
+ inkscape:label="#writing_mode_lr"
+ transform="translate(-225.5246,375.0009)">
+ <g
+ id="use5602"
+ transform="translate(-0.4754,-9e-4)">
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path3731"
+ d="M 841,26 863,26 864,27 864,47 862,49 842,49 841,48 841,26 Z"
+ style="color:#000000;fill:#000000;fill-opacity:0.0666667;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ d="M 840,26 841,26 841,46 840,46 840,26 Z"
+ id="path3733"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="26"
+ x="861"
+ height="20"
+ width="1"
+ id="rect3735"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ transform="rotate(-90)"
+ y="841"
+ x="-26"
+ height="20"
+ width="1"
+ id="rect3737"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ transform="rotate(-90)"
+ y="841"
+ x="-47"
+ height="20"
+ width="1"
+ id="rect3739"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ y="26"
+ x="841"
+ height="20"
+ width="20"
+ id="rect3741"
+ style="color:#000000;fill:url(#linearGradient3749);fill-rule:evenodd" />
+ <path
+ style="fill:#ffffff;fill-rule:evenodd"
+ d="M 842,46 841,46 841,26 861,26 861,27 842,27 842,46 Z"
+ id="path3743"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#383838;stroke-width:1.0000001px;stroke-linecap:round"
+ d="M 843.5,34.75 843.5,30.75 C 843.5,27.75 848.5,27.75 848.5,30.75 L 848.5,34.75"
+ id="path3745"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#383838;stroke-width:1.0000001px"
+ d="M 843.5,32 848.6429,32"
+ id="path3747"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:#5a5a5a;fill-rule:evenodd"
+ d="M 859.5492,30.4982 856.5246,27.9991 856.5246,29.9991 849.5246,29.9991 849.5246,30.9991 856.5246,30.9991 856.5246,32.9991 859.5492,30.4982 Z"
+ id="path6495"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5a5a5a;fill-rule:evenodd"
+ d="M 859.5492,36.4982 856.5246,33.9991 856.5246,35.9991 841.5246,35.9991 841.5246,36.9991 856.5246,36.9991 856.5246,38.9991 859.5492,36.4982 Z"
+ id="path6497"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6497"
+ height="1250"
+ width="1250"
+ transform="translate(0,6)"
+ id="use5502"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="format-text-direction-vertical"
+ inkscape:label="#writing_mode_tb"
+ transform="translate(-256,375)">
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path6536"
+ d="M 841,26 863,26 864,27 864,47 862,49 842,49 841,48 841,26 Z"
+ style="color:#000000;fill:#000000;fill-opacity:0.0666667;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ d="M 840,26 841,26 841,46 840,46 840,26 Z"
+ id="rect6538"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="26"
+ x="861"
+ height="20"
+ width="1"
+ id="rect6540"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ transform="rotate(-90)"
+ y="841"
+ x="-26"
+ height="20"
+ width="1"
+ id="rect6542"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ transform="rotate(-90)"
+ y="841"
+ x="-47"
+ height="20"
+ width="1"
+ id="rect6544"
+ style="color:#000000;fill:#000000;fill-rule:evenodd" />
+ <rect
+ y="26"
+ x="841"
+ height="20"
+ width="20"
+ id="rect6546"
+ style="color:#000000;fill:url(#linearGradient3755);fill-rule:evenodd" />
+ <path
+ style="fill:#ffffff;fill-rule:evenodd"
+ d="M 842,46 841,46 841,26 861,26 861,27 842,27 842,46 Z"
+ id="path6565"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#383838;stroke-width:1.0000001px;stroke-linecap:round"
+ d="M 859.5246,34.7491 859.5246,30.7491 C 859.5246,27.7491 854.5246,27.7491 854.5246,30.7491 L 854.5246,34.7491"
+ id="path6554"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#383838;stroke-width:1.0000001px"
+ d="M 859.6675,31.9991 854.5246,31.9991"
+ id="path6556"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5a5a5a;fill-rule:evenodd"
+ d="M 857.4754,45.0009 855,42 857,42 857,35 858,35 858,42 860,42 857.4754,45.0009 Z"
+ id="path6548"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#5a5a5a;fill-rule:evenodd"
+ d="M 851.4754,45 849,42 851,42 851,27 852,27 852,42 854,42 851.4754,45 Z"
+ id="path6550"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6550"
+ height="1250"
+ width="1250"
+ transform="translate(-5.9754)"
+ id="use5600"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="align-horizontal-right-to-anchor"
+ transform="matrix(1,0,0,0.998006,1017.995,-110.6741)"
+ inkscape:label="#al_left_out">
+ <g
+ id="g5060">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5531);stroke-width:1.0009987;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5048"
+ width="6.008899"
+ height="5.011291"
+ x="-27.50193"
+ y="175.5202" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5533);fill-rule:evenodd;stroke:url(#linearGradient5535);stroke-width:1.0009992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5050"
+ width="4.016531"
+ height="3.009787"
+ x="-26.50193"
+ y="176.5235" />
+ </g>
+ <g
+ id="g4929"
+ transform="matrix(1.091916,0,0,1,2.542347,0)">
+ <rect
+ y="192.5597"
+ x="-38.48989"
+ height="5.011148"
+ width="10.98825"
+ id="rect4911"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5537);stroke-width:0.9579424;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="193.5608"
+ x="-37.60492"
+ height="3.006435"
+ width="9.227168"
+ id="rect4913"
+ style="color:#000000;fill:url(#linearGradient5539);fill-rule:evenodd;stroke:url(#linearGradient5541);stroke-width:0.9579424;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="g4889">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5543);stroke-width:1.0009986;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4879"
+ width="16.99984"
+ height="7.017632"
+ x="-44.48746"
+ y="180.5436" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5545);fill-rule:evenodd;stroke:url(#linearGradient5547);stroke-width:1.0009992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4881"
+ width="14.99677"
+ height="5.021792"
+ x="-43.4854"
+ y="181.5373" />
+ </g>
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect5118"
+ style="color:#000000;fill:none" />
+ <g
+ id="g4893"
+ transform="matrix(0.414065,0,0,0.857422,-24.08423,33.74415)">
+ <rect
+ y="175.8691"
+ x="-25.11964"
+ height="7.017632"
+ width="16.91182"
+ id="rect4895"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5549);stroke-width:1.6799744;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="177.0416"
+ x="-22.70454"
+ height="4.678422"
+ width="12.16012"
+ id="rect4897"
+ style="color:#000000;fill:url(#linearGradient5551);fill-rule:evenodd;stroke:url(#linearGradient5553);stroke-width:1.6799736;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1.0009989;stroke-linecap:square"
+ d="M -27.45876,175.5271 -27.45876,198.5722"
+ id="path5120"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(0.414065,0,0,0.857422,-17.08423,41.76522)"
+ id="g4909" />
+ </g>
+ <g
+ id="align-horizontal-left"
+ transform="matrix(1,0,0,0.998006,1047.985,-110.6489)"
+ inkscape:label="#al_left_in">
+ <g
+ id="g4936"
+ transform="translate(60.01222,-11.05555)">
+ <rect
+ y="187.554"
+ x="-104.4881"
+ height="7.017632"
+ width="22.00094"
+ id="rect4938"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5525);stroke-width:1.0009984;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="188.5476"
+ x="-103.4882"
+ height="5.021792"
+ width="20.00112"
+ id="rect4940"
+ style="color:#000000;fill:url(#linearGradient5527);fill-rule:evenodd;stroke:url(#linearGradient5529);stroke-width:1.0009996;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <use
+ xlink:href="#g4893"
+ height="1250"
+ width="1250"
+ id="use4957"
+ y="0"
+ x="0"
+ transform="translate(-9.990004,-5.030154)" />
+ <use
+ xlink:href="#g4929"
+ height="1250"
+ width="1250"
+ id="use4933"
+ y="0"
+ x="0"
+ transform="translate(-4.988258,-5.035654)" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect5154"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M -44,196.543 -41,194.038 -41,196.0421 -30,196.042 -30,197.0439 -41,197.0439 -41,199.0479 -44,196.543 Z"
+ id="path6192"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5120"
+ height="1250"
+ width="1250"
+ id="use5039"
+ y="0"
+ x="0"
+ transform="translate(-17.01664,-0.0261695)" />
+ </g>
+ <g
+ id="align-horizontal-center"
+ transform="matrix(1,0,0,0.998006,1078.001,-110.649)"
+ inkscape:label="#al_center_hor">
+ <use
+ xlink:href="#use4933"
+ height="1250"
+ width="1250"
+ id="use4973"
+ y="0"
+ x="0"
+ transform="translate(4.9833,-0.0010592)" />
+ <use
+ xlink:href="#g4936"
+ height="1250"
+ width="1250"
+ id="use4970"
+ y="0"
+ x="0"
+ transform="translate(-0.0162524,0.0037401)" />
+ <rect
+ style="color:#000000;fill:none"
+ id="rect4315"
+ width="24"
+ height="24"
+ x="1080"
+ y="165"
+ transform="matrix(1,0,0,1.001998,-1125,9.670333)" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect5252"
+ style="color:#000000;fill:none" />
+ <rect
+ y="175"
+ x="-44.96902"
+ height="16"
+ width="16"
+ id="rect6200"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M -34,196.511 -37,199.016 -37,197.012 -43,197.0439 -43,196.042 -37,196.01 -37,194.006 -34,196.511 Z"
+ id="path6242"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(0.743616,0,0,1,-8.870407,-12.0507)"
+ id="use4976">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5519);stroke-width:1.1608068;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4980"
+ width="10.77151"
+ height="5.011148"
+ x="-38.50316"
+ y="192.5597" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5521);fill-rule:evenodd;stroke:url(#linearGradient5523);stroke-width:1.1608068;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4982"
+ width="8.120504"
+ height="3.006435"
+ x="-37.19693"
+ y="193.5608" />
+ </g>
+ <use
+ xlink:href="#path5120"
+ height="1250"
+ width="1250"
+ id="use5042"
+ y="0"
+ x="0"
+ transform="translate(-6.033343,-0.0260693)" />
+ <use
+ xlink:href="#path6242"
+ height="1250"
+ width="1250"
+ transform="matrix(-1,0,0,1,-66.9921,0.03112)"
+ id="use5624"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="align-horizontal-right"
+ transform="matrix(1,0,0,0.998006,1110.954,-109.6489)"
+ inkscape:label="#al_right_in">
+ <rect
+ y="173.998"
+ x="-47.96902"
+ height="16"
+ width="16"
+ id="rect4279"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#use4933"
+ height="1250"
+ width="1250"
+ id="use5021"
+ y="0"
+ x="0"
+ transform="translate(8.031,-1.001998)" />
+ <use
+ xlink:href="#g4936"
+ height="1250"
+ width="1250"
+ id="use5025"
+ y="0"
+ x="0"
+ transform="translate(-1.971593,-1.007084)" />
+ <use
+ xlink:href="#use4957"
+ height="1250"
+ width="1250"
+ id="use5023"
+ y="0"
+ x="0"
+ transform="translate(13.031,-1.001998)" />
+ <use
+ xlink:href="#path5120"
+ height="1250"
+ width="1250"
+ id="use5044"
+ y="0"
+ x="0"
+ transform="translate(3.014357,-1.028167)" />
+ <use
+ xlink:href="#path6192"
+ height="1250"
+ width="1250"
+ id="use5621"
+ y="0"
+ x="0"
+ transform="matrix(-1,0,0,1,-68.9444,-1.002948)" />
+ </g>
+ <g
+ id="align-horizontal-left-to-anchor"
+ inkscape:label="#al_right_out"
+ transform="translate(-32.05317,-131.0425)">
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ id="use5064"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1153.055,20.37222)" />
+ <rect
+ y="195.0446"
+ x="1125.038"
+ height="15.9681"
+ width="16"
+ id="rect5073"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#g4889"
+ height="1250"
+ width="1250"
+ id="use5030"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1176.045,20.37348)" />
+ <use
+ xlink:href="#g4893"
+ height="1250"
+ width="1250"
+ id="use5032"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1166.045,20.37348)" />
+ <use
+ xlink:href="#g4929"
+ height="1250"
+ width="1250"
+ id="use5034"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1171.048,20.36799)" />
+ <use
+ xlink:href="#path5120"
+ height="1250"
+ width="1250"
+ id="use5046"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1159.021,20.36748)" />
+ </g>
+ <g
+ transform="matrix(1,0,0,0.998006,1003.058,-78.63403)"
+ id="align-vertical-bottom-to-anchor"
+ inkscape:label="#al_top_out">
+ <use
+ xlink:href="#g4889"
+ height="1250"
+ width="1250"
+ id="use5485"
+ y="0"
+ x="0"
+ transform="matrix(0,1.001998,0.998006,0,-198.7358,218.0576)" />
+ <use
+ xlink:href="#g4893"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,0.998006,0,-205.7188,218.0554)"
+ id="use5503"
+ y="0"
+ x="0" />
+ <rect
+ y="6.048015"
+ x="172.9911"
+ height="15.9681"
+ width="16.03197"
+ id="rect4502"
+ style="color:#000000;fill:none"
+ transform="rotate(90)" />
+ <use
+ xlink:href="#g4929"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,0.998006,0,-220.7255,218.0571)"
+ id="use5559"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,0.998006,0,-186.7188,218.063)"
+ id="use5562"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5120"
+ height="1250"
+ width="1250"
+ id="use5618"
+ y="0"
+ x="0"
+ transform="matrix(0,1.001998,-0.998006,0,168.6276,218.0287)" />
+ </g>
+ <g
+ transform="matrix(1,0,0,0.998006,1095.901,-75.69683)"
+ id="align-vertical-center"
+ inkscape:label="#al_center_ver">
+ <rect
+ y="38.91593"
+ x="170.0548"
+ height="15.9681"
+ width="16.03197"
+ id="rect4582"
+ style="color:#000000;fill:none"
+ transform="rotate(90)" />
+ <rect
+ y="38.91593"
+ x="170.0858"
+ height="15.9681"
+ width="16.03197"
+ id="rect4584"
+ style="color:#000000;fill:none"
+ transform="rotate(90)" />
+ <use
+ xlink:href="#path6242"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,-0.998006,0,135.7278,215.127)"
+ id="use5762"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5762"
+ height="1250"
+ width="1250"
+ transform="matrix(1,0,0,-1,4.205594e-5,363.1201)"
+ id="use5766"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use4970"
+ height="1250"
+ width="1250"
+ id="use5797"
+ y="0"
+ x="0"
+ transform="matrix(0,1.001998,0.998006,0,-223.5451,215.119)" />
+ <use
+ xlink:href="#use4976"
+ height="1250"
+ width="1250"
+ id="use5799"
+ y="0"
+ x="0"
+ transform="matrix(0,1.001998,0.998006,0,-229.5403,215.1289)" />
+ <use
+ xlink:href="#use4973"
+ height="1250"
+ width="1250"
+ id="use5801"
+ y="0"
+ x="0"
+ transform="matrix(0,1.001998,0.998006,0,-243.5403,215.1173)" />
+ <use
+ xlink:href="#use5618"
+ height="1250"
+ width="1250"
+ id="use5725"
+ y="0"
+ x="0"
+ transform="translate(-32.84268,-8.95505)" />
+ </g>
+ <g
+ transform="matrix(1,0,0,0.998006,1142.894,-75.60573)"
+ id="align-vertical-bottom"
+ inkscape:label="#al_bottom_in">
+ <use
+ xlink:href="#use5626"
+ height="1250"
+ width="1250"
+ id="use5807"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,-1.001998,-1109.954,391.4175)" />
+ <use
+ xlink:href="#use5712"
+ height="1250"
+ width="1250"
+ id="use5809"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1108.955,-16.45778)" />
+ <use
+ xlink:href="#use5675"
+ height="1250"
+ width="1250"
+ transform="matrix(1,0,0,1.001998,-1108.95,-26.47689)"
+ id="use5813"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5716"
+ height="1250"
+ width="1250"
+ id="use5811"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1108.949,-11.44863)" />
+ <use
+ xlink:href="#use5719"
+ height="1250"
+ width="1250"
+ id="use5827"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1109.954,-4.43204)" />
+ </g>
+ <g
+ id="align-vertical-top-to-anchor"
+ transform="translate(3.494029,-92.48933)"
+ inkscape:label="#al_bottom_out">
+ <rect
+ y="-1113.49"
+ x="186.5164"
+ height="15.9681"
+ width="16"
+ id="rect4694"
+ style="color:#000000;fill:none"
+ transform="rotate(90)" />
+ <use
+ xlink:href="#use5559"
+ height="1250"
+ width="1250"
+ id="use5835"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1119.564,14.85359)" />
+ <use
+ xlink:href="#use5485"
+ height="1250"
+ width="1250"
+ id="use5837"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1119.567,19.85517)" />
+ <use
+ xlink:href="#use5503"
+ height="1250"
+ width="1250"
+ id="use5839"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1119.559,9.852706)" />
+ <use
+ xlink:href="#use5562"
+ height="1250"
+ width="1250"
+ id="use5841"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1119.563,-3.144651)" />
+ <use
+ xlink:href="#use5618"
+ height="1250"
+ width="1250"
+ id="use5843"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1119.565,2.855306)" />
+ </g>
+ <g
+ id="distribute-horizontal-left"
+ transform="matrix(1,0,0,0.998006,1014.97,-40.61113)"
+ inkscape:label="#distribute_left">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect5678"
+ style="color:#000000;fill:none" />
+ <g
+ id="g5853">
+ <use
+ xlink:href="#path5265"
+ x="0"
+ y="0"
+ id="use5269"
+ transform="translate(9,-8.462612e-4)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5265"
+ x="0"
+ y="0"
+ id="use5274"
+ transform="translate(18,-8.462612e-4)"
+ width="1250"
+ height="1250" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5265"
+ d="M -44.4626,175.469 -44.4626,187.4922"
+ style="fill:none;stroke:#c80000;stroke-width:1.0009989;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccccccc"
+ id="path5722"
+ d="M -41.9626,178.0051 -43.9626,176.4702 -41.9626,174.9992 -41.9626,175.9692 -38,175.97 -38,174.968 -36,176.471 -38,177.974 -38,176.972 -41.9626,176.9712 -41.9626,178.0051 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5722"
+ x="0"
+ y="0"
+ id="use5276"
+ transform="translate(9,-5.433975e-6)"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ transform="matrix(0,0.745102,0.998006,0,-218.6383,211.1611)"
+ id="use5317">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5774);stroke-width:1.1608068;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5770"
+ width="10.77151"
+ height="5.011148"
+ x="-38.50316"
+ y="192.5597" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5776);fill-rule:evenodd;stroke:url(#linearGradient5778);stroke-width:1.1608068;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5772"
+ width="8.120504"
+ height="3.006435"
+ x="-37.19693"
+ y="193.5608" />
+ </g>
+ <g
+ transform="matrix(0,1.576101,0.998006,0,-236.6395,242.165)"
+ id="use5322">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5579);stroke-width:0.798134;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5326"
+ width="10.77151"
+ height="5.011148"
+ x="-38.50316"
+ y="192.5597" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5581);fill-rule:evenodd;stroke:url(#linearGradient5583);stroke-width:0.7981339;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5328"
+ width="9.534461"
+ height="3.006026"
+ x="-37.87537"
+ y="193.5616" />
+ </g>
+ <g
+ id="g5427"
+ transform="matrix(0.974035,0,0,1,-0.895642,0)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5585);stroke-width:1.0142547;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5724"
+ width="3.084933"
+ height="9.035772"
+ x="-35.48843"
+ y="183.485" />
+ <path
+ sodipodi:nodetypes="ccc"
+ id="path5415"
+ d="M -33.4626,185.4882 -33.4626,191.5001 -34.4626,191.5001"
+ style="fill:none;stroke:#a4b8d2;stroke-width:1.0142525px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccc"
+ id="path5417"
+ d="M -34.4626,190.4982 -34.4626,184.4862 -33.4626,184.4862"
+ style="fill:none;stroke:#e2e8f0;stroke-width:1.0142525px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="distribute-horizontal-center"
+ transform="matrix(1,0,0,0.998006,1048.936,-40.6396)"
+ inkscape:label="#distribute_hcentre">
+ <g
+ id="use5367"
+ transform="matrix(0,1.094098,0.818085,0,-177.9701,226.5979)">
+ <rect
+ y="186.3897"
+ x="-38.49158"
+ height="5.002912"
+ width="11.03482"
+ id="rect5376"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5561);stroke-width:1.0580499;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="187.5994"
+ x="-37.6174"
+ height="2.583389"
+ width="9.242819"
+ id="rect5378"
+ style="color:#000000;fill:url(#linearGradient5563);fill-rule:evenodd;stroke:url(#linearGradient5565);stroke-width:0.9579428;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="g5355"
+ transform="matrix(0,1.001998,0.998006,0,-217.691,227.0587)">
+ <rect
+ y="173.5676"
+ x="-44.48312"
+ height="6.021734"
+ width="9.022814"
+ id="rect5357"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5567);stroke-width:1.0009983;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="174.5696"
+ x="-43.48764"
+ height="4.045835"
+ width="7.031883"
+ id="rect5359"
+ style="color:#000000;fill:url(#linearGradient5569);fill-rule:evenodd;stroke:url(#linearGradient5571);stroke-width:1.0009997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ transform="matrix(0,1.001998,0.998006,0,-215.6813,226.0567)"
+ id="use5339">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5573);stroke-width:1.0009985;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5345"
+ width="16.99984"
+ height="6.021734"
+ x="-44.48746"
+ y="180.6097" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5575);fill-rule:evenodd;stroke:url(#linearGradient5577);stroke-width:1.0009995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5347"
+ width="14.99677"
+ height="4.045835"
+ x="-43.4854"
+ y="181.6118" />
+ </g>
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect5736"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#g5853"
+ height="1250"
+ width="1250"
+ id="use5860"
+ y="0"
+ x="0"
+ transform="translate(3.0309)" />
+ </g>
+ <g
+ id="distribute-horizontal-right"
+ transform="matrix(1,0,0,0.998006,1082.973,-40.64896)"
+ inkscape:label="#distribute_right">
+ <use
+ xlink:href="#g5853"
+ height="1250"
+ width="1250"
+ id="use5863"
+ y="0"
+ x="0"
+ transform="translate(4.9936,0.0378755)" />
+ <rect
+ y="175.006"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect5180"
+ style="color:#000000;fill:none" />
+ <g
+ transform="matrix(0,0.745102,0.998006,0,-218.6447,211.1989)"
+ id="use5320">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5786);stroke-width:1.1608068;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5782"
+ width="10.77151"
+ height="5.011148"
+ x="-38.50316"
+ y="192.5597" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5788);fill-rule:evenodd;stroke:url(#linearGradient5790);stroke-width:1.1608068;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5784"
+ width="8.120504"
+ height="3.006435"
+ x="-37.19693"
+ y="193.5608" />
+ </g>
+ <use
+ xlink:href="#use5322"
+ height="1250"
+ width="1250"
+ id="use5336"
+ y="0"
+ x="0"
+ transform="translate(-0.005212,0.0379148)" />
+ <use
+ xlink:href="#g5427"
+ height="1250"
+ width="1250"
+ id="use5432"
+ y="0"
+ x="0"
+ transform="translate(1.993612,0.0370281)" />
+ </g>
+ <g
+ id="distribute-horizontal-gaps"
+ transform="matrix(1,0,0,0.998006,1116.97,-40.59264)"
+ inkscape:label="#distribute_hdist">
+ <g
+ id="g5885">
+ <use
+ xlink:href="#use5274"
+ transform="translate(-15,-0.0213989)"
+ x="0"
+ y="0"
+ id="use5475"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5274"
+ transform="translate(-8,-0.0222444)"
+ x="0"
+ y="0"
+ id="use5479"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5274"
+ transform="translate(-5,-0.0213989)"
+ x="0"
+ y="0"
+ id="use5481"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5274"
+ transform="translate(2,-0.0222444)"
+ x="0"
+ y="0"
+ id="use5483"
+ width="1250"
+ height="1250" />
+ <path
+ sodipodi:nodetypes="ccccccccccc"
+ id="path5816"
+ d="M -39,177.974 -41,176.4213 -39,174.968 -39.015,175.9203 -37.015,175.9203 -37.015,174.9183 -35.015,176.4213 -37.015,177.9243 -37.015,176.9222 -39.015,176.9222 -39,177.974 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5816"
+ x="0"
+ y="0"
+ id="use5473"
+ transform="translate(10.0524,-0.0230858)"
+ width="1250"
+ height="1250" />
+ </g>
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect5806"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#g5427"
+ height="1250"
+ width="1250"
+ id="use5435"
+ y="0"
+ x="0"
+ transform="translate(1.000012,-0.0230918)" />
+ <g
+ id="use5437"
+ transform="matrix(1,0,0,1.662154,-8.963779,-123.5118)">
+ <rect
+ y="183.485"
+ x="-35.49882"
+ height="9.036107"
+ width="3.020791"
+ id="rect5452"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5557);stroke-width:0.7764218;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ style="fill:none;stroke:#a4b8d2;stroke-width:0.7764219;stroke-linecap:square"
+ d="M -33.48843,184.6843 -33.48843,191.9183 -34.48843,191.9183"
+ id="path5454"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#e2e8f0;stroke-width:0.7764219;stroke-linecap:square"
+ d="M -34.48843,191.3155 -34.48843,184.0815 -33.48843,184.0815"
+ id="path5456"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g5462"
+ transform="matrix(0.994095,0,0,1.884852,10.82365,-164.3818)">
+ <rect
+ y="183.485"
+ x="-35.49882"
+ height="9.036107"
+ width="3.020791"
+ id="rect5464"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5559);stroke-width:0.7312751;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ style="fill:none;stroke:#a4b8d2;stroke-width:0.7312753;stroke-linecap:square"
+ d="M -33.48693,184.5482 -33.49283,191.9907 -34.49283,191.9907"
+ id="path5467"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#e2e8f0;stroke-width:0.7312753;stroke-linecap:square"
+ d="M -34.49287,191.4591 -34.49287,184.0166 -33.49287,184.0166"
+ id="path5469"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="distribute-vertical-bottom"
+ inkscape:label="#distribute_bottom"
+ transform="translate(-36.99845,-60.95418)">
+ <use
+ xlink:href="#g5853"
+ height="1250"
+ width="1250"
+ id="use5865"
+ y="0"
+ x="0"
+ transform="matrix(0,-1,0.998006,0,832.369,202.0097)" />
+ <rect
+ y="1007.11"
+ x="-247.0512"
+ height="15.9681"
+ width="16"
+ id="rect4248"
+ style="color:#000000;fill:none"
+ transform="rotate(-90)" />
+ <use
+ xlink:href="#use4976"
+ height="1250"
+ width="1250"
+ id="use5909"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1051.989,43.32326)" />
+ <use
+ xlink:href="#g5427"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1,0.998006,0,832.3504,269.9301)"
+ id="use5913"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5322"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1,0.998006,0,832.4259,285.9361)"
+ id="use5917"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="matrix(1,0,0,0.998006,1032.544,-16.5724)"
+ id="distribute-vertical-center"
+ inkscape:label="#distribute_vcentre">
+ <use
+ xlink:href="#g5355"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,0.998006,0,-203.1702,241.0142)"
+ id="use5921"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5339"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,-0.998006,0,176.0711,222.9501)"
+ id="use5925"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5367"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,0.998006,0,-203.1639,204.97)"
+ id="use5929"
+ y="0"
+ x="0" />
+ <rect
+ y="-28.51869"
+ x="-203.0105"
+ height="15.9681"
+ width="16.03197"
+ id="rect4296"
+ style="color:#000000;fill:none"
+ transform="rotate(-90)" />
+ <use
+ xlink:href="#use5865"
+ height="1250"
+ width="1250"
+ id="use5880"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1035.535,-47.49321)" />
+ </g>
+ <g
+ transform="matrix(1,0,0,0.998006,1100.968,-5.588642)"
+ id="distribute-vertical-top"
+ inkscape:label="#distribute_top">
+ <use
+ xlink:href="#use5865"
+ height="1250"
+ width="1250"
+ id="use5883"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1069.956,-60.49864)" />
+ <rect
+ y="-62.95354"
+ x="-191.9844"
+ height="15.9681"
+ width="16.03197"
+ id="rect4341"
+ style="color:#000000;fill:none"
+ transform="rotate(-90)" />
+ <use
+ xlink:href="#use5909"
+ height="1250"
+ width="1250"
+ id="use5933"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1069.978,-55.48746)" />
+ <use
+ xlink:href="#use5913"
+ height="1250"
+ width="1250"
+ id="use5935"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1069.96,-57.49265)" />
+ <use
+ xlink:href="#use5917"
+ height="1250"
+ width="1250"
+ id="use5937"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1069.978,-55.48865)" />
+ </g>
+ <g
+ transform="matrix(1,0,0,0.998006,1120.02,-5.569538)"
+ id="distribute-vertical-gaps"
+ inkscape:label="#distribute_vdist">
+ <use
+ xlink:href="#g5885"
+ height="1250"
+ width="1250"
+ id="use5893"
+ y="0"
+ x="0"
+ transform="matrix(0,-1.001998,0.998006,0,-222.5775,146.9011)" />
+ <rect
+ y="-47.92442"
+ x="-191.9414"
+ height="15.9681"
+ width="16.03197"
+ id="rect4388"
+ style="color:#000000;fill:none"
+ transform="rotate(-90)" />
+ <use
+ xlink:href="#use5913"
+ height="1250"
+ width="1250"
+ id="use5943"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,1.001998,-1055.001,-56.51422)" />
+ <use
+ xlink:href="#g5462"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,0.998006,0,-222.6272,192.921)"
+ id="use5947"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5437"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1.001998,0.998006,0,-222.6377,232.9772)"
+ id="use5951"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="align-vertical-top"
+ transform="translate(-27.06037,-103.0289)"
+ inkscape:label="#al_top_in">
+ <rect
+ transform="rotate(90)"
+ style="color:#000000;fill:none"
+ id="rect4546"
+ width="16"
+ height="15.9681"
+ x="197.031"
+ y="-1054.045" />
+ <use
+ xlink:href="#path6192"
+ height="1250"
+ width="1250"
+ id="use5626"
+ y="0"
+ x="0"
+ transform="matrix(0,1,-0.998006,0,1228.721,242.0301)" />
+ <use
+ xlink:href="#g4936"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1,0.998006,0,869.4195,242.0059)"
+ id="use5675"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5559"
+ height="1250"
+ width="1250"
+ id="use5712"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1065.119,19.39495)" />
+ <use
+ xlink:href="#use5503"
+ height="1250"
+ width="1250"
+ id="use5716"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1065.113,14.3949)" />
+ <use
+ xlink:href="#use5618"
+ height="1250"
+ width="1250"
+ id="use5719"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1060.118,7.394906)" />
+ </g>
+ <g
+ transform="matrix(-1,0,0,1,1096.173,82.03753)"
+ id="distribute-vertical-baseline"
+ inkscape:label="#distribute_baselines_vert">
+ <use
+ xlink:href="#g5896"
+ height="1250"
+ width="1250"
+ id="use5901"
+ y="0"
+ x="0"
+ transform="rotate(90,-21.8276,91.9627)" />
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="-33.803"
+ x="79.96361"
+ height="24"
+ width="24"
+ id="rect4421"
+ style="fill:none" />
+ <use
+ xlink:href="#text5563"
+ height="1250"
+ width="1250"
+ id="use5966"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997921,-10.75241,14.3406)" />
+ <use
+ xlink:href="#text3357"
+ height="1250"
+ width="1250"
+ id="use5968"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997921,-9.52204,-9.516171)" />
+ </g>
+ <g
+ transform="matrix(-1,0,0,1,1096.174,54.03828)"
+ id="distribute-horizontal-baseline"
+ inkscape:label="#distribute_baselines_hor">
+ <rect
+ transform="matrix(0,1,1,0,0,0)"
+ y="-33.803"
+ x="79.96361"
+ height="24"
+ width="24"
+ id="rect4447"
+ style="fill:none" />
+ <g
+ id="g5896">
+ <use
+ xlink:href="#path5120"
+ transform="matrix(-1,0,0,0.998006,-37.78636,-94.71436)"
+ x="0"
+ y="0"
+ id="use5305"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5120"
+ transform="matrix(-1,0,0,0.998006,-51.78636,-94.71352)"
+ x="0"
+ y="0"
+ id="use5308"
+ width="1250"
+ height="1250" />
+ <path
+ sodipodi:nodetypes="ccccccccccc"
+ id="path4463"
+ d="M -10.803,82.46362 -13.80299,79.96361 -13.80299,81.96362 -20.803,81.96362 -20.803,79.96361 -23.803,82.46362 -20.803,84.96361 -20.803,82.96362 -13.80299,82.96362 -13.80299,84.96361 -10.803,82.46362 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ xlink:href="#text5563"
+ height="1250"
+ width="1250"
+ id="use5955"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.997921,1.24759,8.430751)" />
+ <use
+ xlink:href="#text3357"
+ height="1250"
+ width="1250"
+ transform="matrix(1,0,0,0.997921,-11.02206,-2.05535)"
+ id="use5961"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="align-horizontal-node"
+ inkscape:label="#node_valign"
+ transform="translate(-205,77.99283)">
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1.0000004;stroke-linecap:square"
+ d="M 1186.5,140.5008 1186.5,163.5 1186.5,163.5"
+ id="path5262"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#969696;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 1175.5,140.5 C 1178.5,144 1194.475,142.0988 1193,148 1192,152 1176,149 1175.5,156.5 1175.134,161.9878 1192.5,159 1198.5,163"
+ id="path5249"
+ sodipodi:nodetypes="cssc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="141.5"
+ x="1184.5"
+ height="4.007167"
+ width="4.066208"
+ id="rect5251"
+ style="color:#000000;fill:#8ab3de;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ transform="translate(0.0188999,6.991948)"
+ id="use5438"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ transform="translate(-0.0473082,16.99195)"
+ id="use5440"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="align-vertical-node"
+ transform="translate(-171.0218,77.98375)"
+ inkscape:label="#node_halign">
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1.0000004;stroke-linecap:square"
+ d="M 1175.498,152.4972 1198.497,152.4972 1198.497,152.4972"
+ id="path5318"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="1180.497"
+ x="-163.9971"
+ height="16"
+ width="16"
+ id="rect5320"
+ style="color:#000000;fill:none"
+ transform="rotate(-90)" />
+ <path
+ style="fill:none;stroke:#969696;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 1175.497,163.4972 C 1178.997,160.4972 1177.096,144.5219 1182.997,145.9972 1186.997,146.9972 1183.997,162.9972 1191.497,163.4972 1196.985,163.863 1193.997,146.4972 1197.997,140.4972"
+ id="path5322"
+ sodipodi:nodetypes="cssc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5452"
+ y="0"
+ x="0"
+ transform="translate(-7.9782,9.009087)" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5455"
+ y="0"
+ x="0"
+ transform="translate(-0.9782,9.001915)" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5457"
+ y="0"
+ x="0"
+ transform="translate(8.955592,9.001915)" />
+ </g>
+ <g
+ id="distribute-vertical-node"
+ transform="translate(-137.0231,78.02626)"
+ inkscape:label="#node_vdistribute">
+ <use
+ xlink:href="#path5465"
+ height="1250"
+ width="1250"
+ transform="translate(0,18)"
+ id="use5469"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5465"
+ height="1250"
+ width="1250"
+ transform="translate(0,9)"
+ id="use5467"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square"
+ d="M 643.5,697.5 630.5,697.5"
+ id="path5465"
+ transform="translate(555.0237,-555.0009)"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="145.5"
+ x="1175"
+ height="16"
+ width="16"
+ id="rect5334"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:#969696;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 1178.5,140.5 C 1184,144 1192.213,143.1493 1191,148 1190,152 1179.231,152.0765 1178,157 1177,161 1183,158 1187.5,163.5"
+ id="path5336"
+ sodipodi:nodetypes="cssc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 1195.967,145.0749 1197.499,143.0749 1198.967,145.0749 1197.999,145.0749 1197.999,149.0749 1198.999,149.0749 1197.499,151.0749 1195.999,149.0749 1196.999,149.0749 1196.999,145.0749 1195.967,145.0749 Z"
+ id="path5344"
+ sodipodi:nodetypes="ccccccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5442"
+ y="0"
+ x="0"
+ transform="translate(-2.9763,-1.008052)" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5445"
+ y="0"
+ x="0"
+ transform="translate(0.0236999,7.991948)" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5447"
+ y="0"
+ x="0"
+ transform="translate(-2.9763,16.99195)" />
+ <use
+ xlink:href="#path5344"
+ height="1250"
+ width="1250"
+ transform="translate(0.0246,8.92419)"
+ id="use5471"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="distribute-horizontal-node"
+ transform="translate(-103.0103,77.97419)"
+ inkscape:label="#node_hdistribute">
+ <use
+ xlink:href="#path5476"
+ height="1250"
+ width="1250"
+ transform="translate(9)"
+ id="use5478"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5476"
+ height="1250"
+ width="1250"
+ transform="translate(18)"
+ id="use5482"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square"
+ d="M 1177.523,140.4996 1177.523,153.4996"
+ id="path5476"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="1180.5"
+ x="-163.9996"
+ height="16"
+ width="16"
+ id="rect5356"
+ style="color:#000000;fill:none"
+ transform="rotate(-90)" />
+ <path
+ style="fill:none;stroke:#969696;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 1175.499,160.4995 C 1178.999,154.9995 1178.149,146.7868 1182.999,147.9995 1186.999,148.9995 1187.076,159.7687 1191.999,160.9995 1195.999,161.9995 1192.999,155.9995 1198.499,151.4995"
+ id="path5358"
+ sodipodi:nodetypes="cssc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 1180.074,143.0324 1178.074,141.5005 1180.074,140.0324 1180.074,141.0005 1184.074,141.0005 1184.074,140.0005 1186.074,141.5005 1184.074,143.0005 1184.074,142.0005 1180.074,142.0005 1180.074,143.0324 Z"
+ id="path5366"
+ sodipodi:nodetypes="ccccccccccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5459"
+ y="0"
+ x="0"
+ transform="translate(-8.910592,12.00679)" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5461"
+ y="0"
+ x="0"
+ transform="translate(0.0894077,8.999615)" />
+ <use
+ xlink:href="#rect5251"
+ height="1250"
+ width="1250"
+ id="use5463"
+ y="0"
+ x="0"
+ transform="translate(9.0232,11.99962)" />
+ <use
+ xlink:href="#path5366"
+ height="1250"
+ width="1250"
+ transform="translate(8.9487,-0.03275)"
+ id="use5484"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="distribute-randomize"
+ inkscape:label="#distribute_randomize"
+ transform="translate(-155.0371,-5.042435)">
+ <rect
+ y="195.0446"
+ x="1125.038"
+ height="15.9681"
+ width="16"
+ id="rect5814"
+ style="color:#000000;fill:none" />
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ id="use3660"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1153.039,22.37222)" />
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ id="use3663"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1165.03,20.37352)" />
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ id="use3665"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1170.039,27.37352)" />
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ id="use3668"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1162.03,30.37222)" />
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ id="use3670"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1163.03,37.37222)" />
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ id="use3672"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1153.03,38.37222)" />
+ </g>
+ <g
+ id="distribute-unclump"
+ inkscape:label="#unclump"
+ transform="translate(-121.0369,-5.06691)">
+ <rect
+ y="195.0446"
+ x="1125.038"
+ height="15.9681"
+ width="16"
+ id="rect5912"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1.0000008;stroke-linecap:round"
+ d="M 1141.013,201.0194 1136.013,202.5194"
+ id="path5975"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1.0000008;stroke-linecap:round"
+ d="M 1141.013,213.0194 1136.013,210.0194"
+ id="path5977"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#c80000;stroke-linecap:round"
+ d="M 1145.513,212.0194 1145.513,206.0194"
+ id="path5979"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g5060"
+ height="1250"
+ width="1250"
+ id="use3674"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,1170.03,38.37352)" />
+ <g
+ id="g3698"
+ transform="translate(6.999947,0.0231631)">
+ <rect
+ y="197.5437"
+ x="1135.537"
+ height="6.97679"
+ width="6.008899"
+ id="rect3680"
+ style="color:#000000;fill:none;stroke:url(#linearGradient3702);stroke-width:1.0000005;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="198.5437"
+ x="1136.537"
+ height="4.973844"
+ width="4.016531"
+ id="rect3682"
+ style="color:#000000;fill:url(#linearGradient3704);fill-rule:evenodd;stroke:url(#linearGradient3706);stroke-width:1.000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="g3728"
+ transform="translate(-0.0110398,-7.976791)">
+ <rect
+ y="210.5437"
+ x="1125.548"
+ height="6.97679"
+ width="8.988388"
+ id="rect3710"
+ style="color:#000000;fill:none;stroke:url(#linearGradient3732);stroke-width:1.0000002;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="211.5437"
+ x="1126.557"
+ height="4.973844"
+ width="6.960839"
+ id="rect3712"
+ style="color:#000000;fill:url(#linearGradient3734);fill-rule:evenodd;stroke:url(#linearGradient3736);stroke-width:1.0000008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ </g>
+ <g
+ id="xml-node-delete"
+ inkscape:label="#delete_xml_node"
+ transform="translate(132.0112,21.0313)">
+ <use
+ xlink:href="#g5715"
+ height="1250"
+ width="1250"
+ id="use5729"
+ y="0"
+ x="0"
+ transform="translate(0.0067,-0.0161)" />
+ <use
+ xlink:href="#g5707"
+ height="1250"
+ width="1250"
+ id="use5744"
+ y="0"
+ x="0"
+ transform="translate(0.0067,-0.0161)" />
+ <use
+ xlink:href="#g5719"
+ height="1250"
+ width="1250"
+ id="use5763"
+ y="0"
+ x="0"
+ transform="translate(0.0067,-0.0161)" />
+ <use
+ xlink:href="#g5771"
+ height="1250"
+ width="1250"
+ id="use7401"
+ y="0"
+ x="0"
+ transform="translate(-56.9523,-150.977)" />
+ </g>
+ <g
+ id="xml-element-new"
+ transform="translate(72.01788,21.0152)"
+ inkscape:label="#add_xml_element_node">
+ <g
+ id="g5715">
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path5401"
+ d="M 923,6 924,6 924,27 922,29 901,29 901,28 923,28 923,6 Z"
+ style="fill:#000000;fill-opacity:0.1786744;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5826);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999998;stroke-linecap:round;stroke-linejoin:round"
+ id="rect5403"
+ width="22.03876"
+ height="22.03599"
+ x="900.4821"
+ y="5.484803" />
+ </g>
+ <g
+ id="g5707">
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ d="M 909.5,11 909.5,16"
+ id="path5405"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ d="M 912.5,11.97746 C 913.5,11.47746 915.5,10.97746 915.5,12.97746 915.5,13.97746 915.5,14.97746 915.5,15.97746"
+ id="path5407"
+ sodipodi:nodetypes="csc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ d="M 917.5,7.470786 C 917.5,10.97079 917.5,13.47079 917.5,14.47079 917.5,15.62323 918.5,15.47079 919.5,15.47079"
+ id="path5410"
+ sodipodi:nodetypes="csc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ d="M 909.5,11.97746 C 910.5,11.47746 912.5,10.97746 912.5,12.97746 912.5,13.97746 912.5,14.97746 912.5,15.97746"
+ id="path5412"
+ sodipodi:nodetypes="csc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ d="M 903,10.97079 908,15.97079"
+ id="path5414"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ d="M 908,10.97079 903,15.97079"
+ id="path5416"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g5719">
+ <path
+ id="path5418"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 906.5,24.5 903.5,21.5 906.5,18.5 M 909.5,24.5 912.5,21.5 909.5,18.5"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g5684">
+ <path
+ sodipodi:nodetypes="ccccc"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient5828);stroke-width:0.9999998px"
+ d="M 914.5068,19.4991 923.4477,19.4991 923.4477,28.44092 914.5068,28.44092 914.5068,19.4991 Z"
+ id="path5430"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5424"
+ d="M 919.0067,20.9991 919.0067,26.9991"
+ style="fill:none;stroke:#000000;stroke-width:2"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5426"
+ d="M 922.0067,23.9991 916.0067,23.9991"
+ style="fill:none;stroke:#000000;stroke-width:2;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="xml-text-new"
+ transform="translate(101.9932,21.0009)"
+ inkscape:label="#add_xml_text_node">
+ <use
+ xlink:href="#g5715"
+ height="1250"
+ width="1250"
+ id="use5723"
+ y="0"
+ x="0"
+ transform="translate(0.0246443,0.0142967)" />
+ <path
+ id="path5438"
+ d="M 906.4821,10.47669 C 906.4741,12.49287 906.4821,13.4848 906.4821,13.9848 906.4821,14.49972 906.9821,14.48886 907.4821,14.49292"
+ style="fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:square"
+ sodipodi:nodetypes="csc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="csssssc"
+ id="path5442"
+ d="M 909.4821,7.484803 C 909.4821,10.9848 909.4821,12.4848 909.4821,13.4848 909.4821,13.9848 909.4821,14.4848 909.9821,14.4848 910.8248,14.4848 911.9821,14.4848 912.4821,14.4848 912.9821,14.4848 913.4821,14.4848 913.4821,12.4848 913.4821,10.4848 912.9821,10.4848 912.4821,10.4848 911.9821,10.4848 911.4821,10.4848 909.4821,10.4848"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cssssc"
+ id="path5464"
+ d="M 919.5148,11.45983 C 919.4821,10.4848 918.9821,10.4848 918.4821,10.4848 918.03,10.4848 916.9821,10.4848 916.4821,10.4848 915.9821,10.4848 915.4821,10.4848 915.4821,12.4848 915.4821,14.4848 915.9821,14.4848 916.4821,14.4848 916.9821,14.4848 918.4821,14.4848 919.4821,14.4779"
+ style="fill:none;stroke:#000000;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="csssc"
+ id="path5466"
+ d="M 906.4821,10.4848 C 905.9821,10.4848 903.4821,10.4848 903.4821,10.4848 902.9821,10.4848 902.4821,10.4848 902.4821,12.4848 902.4821,14.4848 902.9705,14.50294 903.4821,14.4848 903.9705,14.46749 905.4821,14.4848 906.4821,14.4946"
+ style="fill:none;stroke:#000000;stroke-width:0.9999998;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g5684"
+ height="1250"
+ width="1250"
+ id="use5694"
+ y="0"
+ x="0"
+ transform="translate(-1.000894e-4)" />
+ <use
+ xlink:href="#g5719"
+ height="1250"
+ width="1250"
+ id="use5760"
+ y="0"
+ x="0"
+ transform="translate(0.0067,-9e-4)" />
+ </g>
+ <g
+ id="xml-node-duplicate"
+ transform="translate(161.5,21.00827)"
+ inkscape:label="#duplicate_xml_node">
+ <path
+ style="fill:#000000;fill-opacity:0.1786744;fill-rule:evenodd"
+ d="M 916.5,5.984803 917.5,5.984803 917.5,19.9848 915.5,21.9848 901.5,21.9848 901.5,20.9848 916.5,20.9848 916.5,5.984803 Z"
+ id="path5508"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="5.491727"
+ x="901"
+ height="14.99308"
+ width="15.03714"
+ id="rect5504"
+ style="color:#000000;opacity:0.5999999;fill:url(#linearGradient5506);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round" />
+ <path
+ style="fill:#000000;fill-opacity:0.1786744;fill-rule:evenodd"
+ d="M 922.5,11.9848 923.5,11.9848 923.5,26.9848 921.5,28.9848 906.5,28.9848 906.5,27.9848 922.5,27.9848 922.5,11.9848 Z"
+ id="path5470"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="11.51622"
+ x="906.0305"
+ height="15.93487"
+ width="15.95595"
+ id="rect5472"
+ style="color:#000000;fill:url(#linearGradient5494);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round" />
+ <use
+ xlink:href="#g5719"
+ height="1250"
+ width="1250"
+ id="use5765"
+ y="0"
+ x="0"
+ transform="translate(4.5246,-5.0161)" />
+ <use
+ xlink:href="#g5684"
+ height="1250"
+ width="1250"
+ id="use5768"
+ y="0"
+ x="0"
+ transform="translate(-0.4822,-0.0151991)" />
+ </g>
+ <g
+ id="xml-attribute-delete"
+ inkscape:label="#delete_xml_attribute"
+ transform="translate(192.0112,21.0313)">
+ <use
+ xlink:href="#g5715"
+ height="1250"
+ width="1250"
+ id="use5739"
+ y="0"
+ x="0"
+ transform="translate(0.0067,-0.0161)" />
+ <rect
+ style="color:#000000;opacity:0.3167155;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999999;stroke-linecap:square"
+ id="rect5560"
+ width="6.985046"
+ height="2.109722"
+ x="910.5713"
+ y="20.50245" />
+ <path
+ style="opacity:0.3167155;fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:square"
+ d="M 904.5,21.50244 909.6429,21.50244"
+ id="path5554"
+ inkscape:connector-curvature="0" />
+ <path
+ style="opacity:0.3167155;fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:square"
+ d="M 904.5,18.43078 904.5,20.57811"
+ id="path5562"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g5771"
+ height="1250"
+ width="1250"
+ id="use5783"
+ y="0"
+ x="0"
+ transform="translate(-56.9523,-150.977)" />
+ <path
+ id="rect5540"
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999982;stroke-linecap:square"
+ d="M 903.4995,7.482439 905.4839,7.482439 905.4839,9.494854 903.4995,9.494854 903.4995,7.482439 Z M 904.5713,9.984805 904.5713,17.39985 M 904.5713,13.50244 910.5713,13.50244 M 910.5862,12.4848 917.5713,12.4848 917.5713,14.52008 910.5862,14.52008 910.5862,12.4848 Z M 904.5067,17.4839 910.5067,17.4839 M 910.5067,16.44862 917.4918,16.44862 917.4918,18.4839 910.5067,18.4839 910.5067,16.44862 Z"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="edit-paste-in-place"
+ inkscape:label="#selection_paste_in_place"
+ transform="translate(-429.9517,-29.93562)">
+ <g
+ transform="translate(-0.0483,-0.054332)"
+ id="g6202">
+ <rect
+ rx="0.8838835"
+ ry="0.8838835"
+ style="color:#000000;fill:url(#linearGradient5687);fill-rule:evenodd;stroke:#000000;stroke-linecap:square;stroke-linejoin:round"
+ id="rect6204"
+ width="12"
+ height="13.99545"
+ x="485.5"
+ y="76.50455" />
+ <path
+ id="path6207"
+ d="M 486.4517,89.43563 486.4517,77.43563 496.4517,77.43563"
+ style="fill:none;stroke:#e6bc00;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="csssc"
+ id="path6209"
+ d="M 495,79 C 495,80.10678 493.3839,79.5 492,79.5 490.6161,79.5 489,80.10678 489,79 489,77.89322 490.6131,75.48996 491.997,75.48996 493.3808,75.48996 495,77.89322 495,79 Z"
+ style="color:#000000;fill:url(#linearGradient5689);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999994;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6211"
+ d="M 494.0715,77.5 491.9286,77.5"
+ style="fill:none;stroke:#000000;stroke-width:1.0000001px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="81.42787"
+ x="490.5"
+ height="9.007737"
+ width="10"
+ id="rect5705"
+ style="color:#000000;fill:url(#linearGradient5761);fill-rule:evenodd;stroke:url(#linearGradient5598);stroke-width:0.9999999;stroke-linecap:square;stroke-linejoin:round"
+ ry="0.9722717"
+ rx="0.9722718" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 495,108 494,108 494,107 493,107 493,106 495,106 494.9517,102.9457 495.9517,102.9457 496,106 498,106 498,107 497,107 497,108 496,108 496,109 495,109 495,108 Z"
+ id="path5745"
+ transform="translate(0,-20.01004)"
+ sodipodi:nodetypes="ccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="edit-paste-style"
+ inkscape:label="#selection_paste_style"
+ transform="translate(-429.9489,-9.94566)">
+ <use
+ xlink:href="#g6202"
+ height="1250"
+ width="1250"
+ id="use6217"
+ y="0"
+ x="0" />
+ <rect
+ y="80.49155"
+ x="490.454"
+ height="9.944057"
+ width="9.994883"
+ id="rect6220"
+ style="color:#000000;fill:none;stroke:url(#linearGradient6224);stroke-width:0.9999999;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="81.43563"
+ x="491.4559"
+ height="7.995686"
+ width="7.995919"
+ id="rect6222"
+ style="color:#000000;fill:url(#linearGradient6226);fill-rule:evenodd;stroke:url(#linearGradient6228);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="help-keyborad-shortcuts"
+ inkscape:label="#help_keys"
+ transform="translate(-209.9825,-0.409827)">
+ <path
+ style="fill:none;stroke:url(#linearGradient4736);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round"
+ d="M 540.4854,35.90983 543.4854,35.90983 543.4854,40.90983 540.4854,40.90983"
+ id="path4652"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square"
+ d="M 546.4854,38.90983 546.4854,36.90983 555.4854,36.90983"
+ id="path4666"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient4738);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round"
+ d="M 555.4854,35.90983 545.4854,35.90983 545.4854,40.90983 555.4854,40.90983"
+ id="path4662"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square"
+ d="M 540.4854,39.90983 542.4854,39.90983 542.4854,37.90983"
+ id="path4654"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g4625"
+ height="1250"
+ width="1250"
+ transform="translate(6.997002,-0.005239)"
+ id="use4630"
+ y="0"
+ x="0" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient4740);fill-rule:evenodd;stroke-width:1.0000006"
+ id="rect5937"
+ width="9"
+ height="2"
+ x="546.9854"
+ y="37.40983" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient4742);fill-rule:evenodd;stroke-width:1.0000006"
+ id="rect5943"
+ width="2"
+ height="2"
+ x="539.9854"
+ y="37.40983" />
+ <g
+ id="g4625"
+ transform="translate(0.005938,0.510486)">
+ <rect
+ y="28.39409"
+ x="540.4766"
+ height="5.010485"
+ width="5.005956"
+ id="rect6038"
+ style="color:#000000;fill:url(#linearGradient5682);fill-rule:evenodd;stroke:url(#linearGradient5685);stroke-width:1.000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ id="path4611"
+ d="M 541.4795,32.39934 544.4795,32.39934 544.4795,30.39934"
+ style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square"
+ d="M 544.4795,29.39934 541.4795,29.39934 541.4795,31.39934"
+ id="path4613"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square"
+ d="M 541.4854,37.90983 549.4854,37.90983 549.4854,31.90983"
+ id="path4632"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round"
+ d="M 540.4854,26.90983 542.4854,26.90983 542.4854,25.90983"
+ id="path4634"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square"
+ d="M 540.4854,25.90983 541.4854,25.90983"
+ id="path4636"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square"
+ d="M 545.4854,25.90983 548.4854,25.90983"
+ id="path4640"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round"
+ d="M 544.4854,25.90983 544.4854,26.90983 549.4854,26.90983 549.4854,25.90983"
+ id="path4642"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round"
+ d="M 551.4854,25.90983 551.4854,26.90983 555.4854,26.90983"
+ id="path4644"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path4640"
+ height="1250"
+ width="1250"
+ transform="translate(7)"
+ id="use4648"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square"
+ d="M 540.4854,36.90983 542.4854,36.90983"
+ id="path4650"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient4748);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round"
+ d="M 555.4854,28.90983 554.4854,28.90983 554.4854,33.90983 555.4854,33.90983"
+ id="path4656"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square"
+ d="M 555.4854,29.90983 555.4854,31.90983"
+ id="path4658"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#aaaaaa;stroke-width:1px"
+ d="M 555.4854,32.40983 555.4854,33.40983"
+ id="path4660"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square"
+ d="M 546.4854,39.90983 555.4854,39.90983"
+ id="path4664"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="help-contents"
+ inkscape:label="#help_tutorials"
+ transform="translate(-234.959,20.03912)">
+ <rect
+ style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.982277"
+ id="rect5530"
+ width="16"
+ height="16"
+ x="385"
+ y="30"
+ transform="translate(180,-5)" />
+ <path
+ style="color:#000000;fill:url(#linearGradient6204);fill-rule:evenodd;stroke:url(#linearGradient6255);stroke-width:1.0000015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 565.5118,28.50002 579.4882,28.50002 579.4882,34.47468 579.4882,40.44935 567.5,40.5 C 566.5,40.5 565.5,39.5 565.5,38.5 L 565.5118,28.50002 Z"
+ id="rect6181"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path6187"
+ d="M 578.5,25.5 567.5,25.5 C 566.5,25.5 565,27 566,28.5 L 579.5,28.5 C 578,27.5 578,26.5 578.5,25.5 Z"
+ style="fill:url(#linearGradient6220);fill-rule:evenodd;stroke:url(#linearGradient6263);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e1ff7d;fill-rule:evenodd;stroke:#e2fda4;stroke-width:1px;stroke-linecap:round"
+ d="M 567.5,30 567.5,39"
+ id="path6200"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#49850a;fill-rule:evenodd"
+ d="M 578,29 579,29 579,40 567,40 567,39 578,39 578,29 Z"
+ id="path6324"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#e1ff7d;fill-rule:evenodd;stroke:#c0e383;stroke-width:1px;stroke-linecap:round"
+ d="M 568.5,29.5 577.5,29.5"
+ id="path6334"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient6330);fill-rule:evenodd"
+ d="M 568,27 568,37 569,37 569,36 571,36 571,37 572,37 572,27 569,27 569,28 571,28 571,35 569,35 569,27 568,27 Z"
+ id="path6265"
+ sodipodi:nodetypes="ccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient6332);fill-rule:evenodd"
+ d="M 569,28 569,35 571,35 571,28 569,28 Z"
+ id="path6267"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="draw-calligraphic"
+ transform="translate(440,196)"
+ inkscape:label="#draw_calligraphic">
+ <rect
+ y="99"
+ x="10"
+ height="24"
+ width="24"
+ id="rect12294"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:url(#linearGradient5856);stroke-width:1pt"
+ d="M 450,295 450,295.5 C 458,297.6875 447.8335,311.1417 454.5,316.5 458.6531,319.8381 465.1496,319.3504 468,316.5 469,315.5 471,314.5 473.7187,315.5625 L 473.7187,315.3437 C 472,312.5 469,313 467.5,315 465.6026,317.5298 460,320.5 457,316 453,310 468.5,295 450,295 Z"
+ transform="translate(-440,-196)"
+ id="path12296"
+ sodipodi:nodetypes="ccssccssc"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g15748">
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path12332"
+ d="M 20.50599,109.5 20.50599,119.5 22.50599,119.5 C 24.50599,116.5 26.50599,114.5 29.50599,112.5 L 29.50599,106.5 23.50599,105.5 20.50599,109.5 Z"
+ style="fill:url(#linearGradient14646);fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path13072"
+ d="M 22,117.8669 24.00599,112 C 24.00599,112 25.00599,112 25.00599,112 L 25.00599,110 23.00599,110 23.00599,112 21.67237,117.8646 22,117.8666 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path13820"
+ d="M 25.29308,99.5 23.50599,105.5 30.5682,107.2811 C 31.27434,106.9578 31.58694,105.9597 31.50599,104.9617 L 33.5,101.6184"
+ style="color:#000000;fill:url(#linearGradient14650);fill-rule:evenodd;stroke:url(#linearGradient14652);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path14610"
+ d="M 31.33134,104.9438 26.33134,103.9438"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path14612"
+ d="M 30.48686,106.7926 C 30.97411,106.5594 31.12403,105.989 31.10529,105.4185 L 25.93298,104.3751 25.25833,105.428 30.48686,106.7926 Z"
+ style="fill:url(#linearGradient14654);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path14622"
+ d="M 24.92101,104.2064 26.2141,99.98988"
+ style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path14656"
+ d="M 33.45251,103.4948 32.48803,105.0419 C 32.53106,106.3794 32.01188,107.9418 30.59318,108.0424 L 30.60148,112.9722 C 27.51211,114.5592 25.20984,117.1582 23.30111,119.9258"
+ style="fill:none;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-opacity:0.2449568"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="path16152"
+ d="M 21.03975,117 21,109.725 23.66352,106.1869 27.55942,107.141 26.8836,108.3336 24.33934,108.2143 22.43114,110.043 21.03975,117 Z"
+ style="fill:#ffffff;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="draw-connector"
+ transform="translate(444.9917,149.9903)"
+ inkscape:label="#draw_connector">
+ <path
+ id="path5856"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 11.5083,213.51 9.5083,220.402 M 19.5083,208.51 24.5083,212.51 24.5083,220.51 M 13.5792,214.508 21.5778,214.508 21.5778,219.51 13.5792,219.51 13.5792,214.508 Z"
+ sodipodi:nodetypes="cccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ce0000;fill-rule:evenodd"
+ d="M 24.0083,221.0097 25.0083,221.0097 24.0083,221.0097 Z"
+ id="path5854"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="215.51"
+ x="14.5775"
+ height="3.00379"
+ width="6.00072"
+ id="rect5677"
+ style="color:#000000;fill:url(#linearGradient5694);fill-rule:evenodd;stroke:url(#linearGradient5679);stroke-width:1.000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <g
+ id="g5746">
+ <rect
+ style="color:#000000;fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5710"
+ width="7.99868"
+ height="6.999122"
+ x="10.5083"
+ y="205.5097" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5677);fill-rule:evenodd;stroke:url(#linearGradient5680);stroke-width:1.0000008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5712"
+ width="6.00072"
+ height="4.995474"
+ x="11.50669"
+ y="206.512" />
+ </g>
+ <use
+ xlink:href="#g5746"
+ height="1250"
+ width="1250"
+ transform="translate(-4.99868,15.99998)"
+ id="use5750"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use5750"
+ height="1250"
+ width="1250"
+ transform="translate(15,8.780086e-4)"
+ id="use5757"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="draw-freehand"
+ transform="matrix(1,0,0,0.995256,377,122.5361)"
+ inkscape:label="#draw_freehand">
+ <path
+ style="fill:url(#linearGradient6168);fill-rule:evenodd"
+ d="M 84.5,130.9858 87.5,131.9858 92.77118,126.1525 C 91.65028,123.3252 88.19087,121.5135 84.63332,123.0426 L 84.5,130.9858 Z"
+ id="path6127"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 84.49792,134.0861 85.58083,134.3642 87.5,132.1144 C 87.22816,131.1709 85.5,130.1144 84.57127,131.0533 L 84.49792,134.0861 Z"
+ id="path6021"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path6019"
+ d="M 84.49115,123.548 C 86.61896,121.555 91.43934,122.5619 92.77095,126.3667 L 95.5,119.1144 C 93,119.1144 95,113.1144 88.5,113.1144 L 84.49115,123.548 Z"
+ style="fill:url(#linearGradient6170);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="113"
+ x="73"
+ height="24"
+ width="24"
+ id="rect6011"
+ style="color:#000000;fill:none" />
+ <path
+ style="fill:none;stroke:url(#linearGradient6189);stroke-width:1.0023805;stroke-linecap:round;stroke-linejoin:round"
+ d="M 74.5,114.5 C 83.2987,113.3638 77.63297,119.6169 76.5058,121.2979 71.15846,129.3315 77.30283,123.5 80.30283,124.5 82.2002,125.1325 81.30855,127.7048 80.80283,129.1144 80.2716,130.5951 80.0713,132.6514 80.80283,134.1144 81.80283,136.1144 84.3785,136.6144 85.80283,136.6144 87.30283,136.6144 89.37464,136.0838 90.80283,134.9006 92.3424,133.6251 93.58861,131.6007 93.80283,130.6723"
+ id="path6013"
+ sodipodi:nodetypes="csssssss"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6023"
+ style="fill:none;stroke:#000000;stroke-width:0.9846153;stroke-linecap:round;stroke-linejoin:round"
+ d="M 95.5,119.6144 92.77094,126.3667 92.77094,126.3667 86.17915,133.3831 C 84.5,135.1144 84.5,134.6144 84.50212,132.7216 L 84.49114,123.548 88.5,113.6144"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient6123);stroke-width:1.0023805px;stroke-linecap:round"
+ d="M 92.77094,126.3667 C 92.22956,125.3573 91.68819,124.3479 91.14682,123.3385 90.09222,122.9526 89.03763,122.5667 87.98303,122.1808 86.78395,122.4736 85.58487,122.7664 84.38578,123.0593"
+ id="path6115"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1.0023805px;stroke-linecap:round"
+ d="M 88.07236,120.9146 90.57236,114.9146"
+ id="path6125"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="draw-path"
+ transform="matrix(1,0,0,0.994286,410,166.5657)"
+ inkscape:label="#draw_pen">
+ <path
+ style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.2034432;stroke-linecap:round;stroke-linejoin:round"
+ d="M 54.74801,112.7209 52.72605,118.073 C 52.30681,119.3047 54.02578,119.963 54.46183,118.6859 L 56.53419,113.4313"
+ id="path6331"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path6315"
+ d="M 53.30533,107.4469 54.09881,108.6349 60.02303,111.0717 61.58413,110.5596 63.5733,105.0256 C 61.0733,105.0256 63.0733,98.99107 56.5733,98.99107 L 53.30533,107.4469 Z"
+ style="fill:url(#linearGradient6325);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient5228);fill-rule:evenodd;stroke:url(#linearGradient5230);stroke-width:1.0028694px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 54.2095,108.7548 53.29841,112.0747 58.29841,113.9848 60.21348,110.893"
+ id="path5211"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6317"
+ style="fill:none;stroke:#000000;stroke-width:0.9850955;stroke-linecap:round;stroke-linejoin:round"
+ d="M 63.5733,105.5284 61.83413,109.8559 C 61.60296,110.611 60.64737,111.2194 60.15484,110.8958 58.34057,109.7039 56.37195,108.8879 54.16917,108.6305 53.74716,108.5812 53.25979,107.4454 53.4502,106.9395 L 56.5733,99.49395"
+ sodipodi:nodetypes="ccsscc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="99"
+ x="40"
+ height="24"
+ width="24"
+ id="rect6268"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="ccc"
+ id="path6270"
+ d="M 44.54642,120.6114 C 57,118.612 42.20822,100.5101 42.20822,100.5101 L 54,100.5101"
+ style="fill:none;stroke:url(#linearGradient5436);stroke-width:1.0057468"
+ inkscape:connector-curvature="0" />
+ <path
+ id="rect6272"
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0028691;stroke-linecap:round;stroke-linejoin:round"
+ d="M 40.5625,118.5995 44.5,118.5995 44.5,122.635 40.5625,122.635 40.5625,118.5995 Z M 45.03846,121.6293 50.5,121.6293 M 50.5,120.599 52.51365,120.599 52.51365,122.635 50.5,122.635 50.5,120.599 Z"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none"
+ d="M 53,112.5776 57.5,114.5891 59,111.5718 54.5,110.0632 53,112.5776 Z"
+ id="path6311"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1.0028694px;stroke-linecap:round"
+ d="M 56,106.5431 58.5,100.5086"
+ id="path6321"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(1,0,0,0.998006,413.9648,170.3817)"
+ id="object-columns"
+ inkscape:label="#clonetiler_per_column">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.531496"
+ id="rect9056"
+ width="15.99999"
+ height="16.03196"
+ x="319.0374"
+ y="103.8253" />
+ <g
+ id="g9227">
+ <g
+ id="g9237">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5764);stroke-width:1.001;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect9070"
+ width="13.03433"
+ height="3.003929"
+ x="105.3283"
+ y="320.5352"
+ transform="matrix(0,1,1,0,0,0)" />
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5767);stroke-width:1.0010008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect9072"
+ width="11.05956"
+ height="1.00681"
+ x="106.2927"
+ y="321.5375"
+ transform="matrix(0,1,1,0,0,0)" />
+ </g>
+ <use
+ xlink:href="#g9237"
+ height="1250"
+ width="1250"
+ transform="translate(4.998223,3.261012e-5)"
+ id="use9241"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#use9241"
+ height="1250"
+ width="1250"
+ transform="translate(5.00393,-0.0083534)"
+ id="use9243"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+ <g
+ id="clonetiler_per_row_shift"
+ inkscape:label="#clonetiler_per_row_shift"
+ transform="translate(-249.1176,-232.0945)">
+ <rect
+ y="528"
+ x="982"
+ height="24"
+ width="24"
+ id="rect5795"
+ style="color:#000000;fill:none;stroke-width:0.531496" />
+ <g
+ transform="translate(-0.999999,-1.000121)"
+ id="g7285">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5816);stroke-width:1.0000023;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7247"
+ width="14.08517"
+ height="5.001156"
+ x="983.5"
+ y="530.5001" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5818);fill-rule:evenodd;stroke:url(#linearGradient5820);stroke-width:1.0000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7249"
+ width="12.00008"
+ height="3.000032"
+ x="984.501"
+ y="531.5" />
+ </g>
+ <use
+ xlink:href="#g7285"
+ x="0"
+ y="0"
+ id="use7289"
+ transform="translate(4,8)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use7289"
+ x="0"
+ y="0"
+ id="use7291"
+ transform="matrix(0.994354,0,0,1,9.567272,8)"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ id="clonetiler_per_row_scale"
+ inkscape:label="#clonetiler_per_row_scale"
+ transform="translate(-249.1176,-232.0945)">
+ <use
+ xlink:href="#rect5795"
+ x="0"
+ y="0"
+ id="use7504"
+ transform="translate(28)"
+ width="1250"
+ height="1250" />
+ <g
+ id="g7512">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5798);stroke-width:1.000002;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7303"
+ width="22.99783"
+ height="5.980974"
+ x="1010.5"
+ y="528.5066" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5800);fill-rule:evenodd;stroke:url(#linearGradient5802);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7305"
+ width="20.96796"
+ height="3.982274"
+ x="1011.52"
+ y="529.5177" />
+ </g>
+ <rect
+ y="537.5071"
+ x="1012.495"
+ height="5.004396"
+ width="19.00926"
+ id="rect7351"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5804);stroke-width:1.0000018;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="538.4794"
+ x="1013.507"
+ height="3.041469"
+ width="16.99882"
+ id="rect7353"
+ style="color:#000000;fill:url(#linearGradient5806);fill-rule:evenodd;stroke:url(#linearGradient5808);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="545.563"
+ x="1014.497"
+ height="3.961664"
+ width="15.00856"
+ id="rect7361"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5810);stroke-width:1.0000019;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="546.4993"
+ x="1015.518"
+ height="2.035122"
+ width="12.98416"
+ id="rect7363"
+ style="color:#000000;fill:url(#linearGradient5812);fill-rule:evenodd;stroke:url(#linearGradient5814);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="clonetiler_per_row_rotation"
+ inkscape:label="#clonetiler_per_row_rotation"
+ transform="translate(-249.1176,-232.0945)">
+ <use
+ xlink:href="#use7504"
+ x="0"
+ y="0"
+ id="use7506"
+ transform="translate(28)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#g7285"
+ x="0"
+ y="0"
+ id="use7397"
+ transform="translate(60,-1.001159)"
+ width="1250"
+ height="1250"
+ inkscape:tile-w="15.085176"
+ inkscape:tile-h="6.0011586"
+ inkscape:tile-cx="1049.4574"
+ inkscape:tile-cy="530.99942" />
+ <use
+ xlink:href="#use7397"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use7397"
+ transform="rotate(30.00001,1038.302,533.84)"
+ id="use7497"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use7397"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#use7397"
+ transform="rotate(59.99999,1039.106,536.9268)"
+ id="use7499"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ id="clonetiler_per_row_opacity"
+ inkscape:label="#clonetiler_per_row_opacity"
+ transform="translate(-249.1176,-232.0945)">
+ <use
+ xlink:href="#use7506"
+ x="0"
+ y="0"
+ id="use7508"
+ transform="translate(28)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#g7512"
+ x="0"
+ y="0"
+ id="use7518"
+ transform="translate(56.00235,0.0124335)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use7518"
+ x="0"
+ y="0"
+ id="use7520"
+ transform="translate(-0.0021659,7.980976)"
+ width="1250"
+ height="1250"
+ style="opacity:0.6" />
+ <use
+ xlink:href="#use7518"
+ x="0"
+ y="0"
+ id="use7524"
+ transform="translate(-0.0021659,15.98098)"
+ width="1250"
+ height="1250"
+ style="opacity:0.4" />
+ </g>
+ <g
+ id="clonetiler_per_row_color"
+ inkscape:label="#clonetiler_per_row_color"
+ transform="translate(-249.1176,-232.0945)">
+ <rect
+ y="528"
+ x="1094.002"
+ height="24"
+ width="24"
+ id="rect7660"
+ style="color:#000000;fill:#000000;fill-opacity:0.0214592;fill-rule:evenodd;stroke-width:0.531496" />
+ <g
+ transform="translate(84.00452,0.0124335)"
+ id="g7663">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5769);stroke-width:1.000002;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7665"
+ width="22.99783"
+ height="5.980974"
+ x="1010.5"
+ y="528.5066" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5771);fill-rule:evenodd;stroke:url(#linearGradient5773);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7667"
+ width="20.96796"
+ height="3.982274"
+ x="1011.52"
+ y="529.5177" />
+ </g>
+ <g
+ transform="translate(84.00235,7.993409)"
+ id="g7675">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5781);stroke-width:1.000002;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7677"
+ width="22.99783"
+ height="5.980974"
+ x="1010.5"
+ y="528.5066" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5783);fill-rule:evenodd;stroke:url(#linearGradient5785);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7679"
+ width="20.96796"
+ height="3.982274"
+ x="1011.52"
+ y="529.5177" />
+ </g>
+ <g
+ transform="translate(84.00235,15.99341)"
+ id="g7687">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5792);stroke-width:1.000002;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7689"
+ width="22.99783"
+ height="5.980974"
+ x="1010.5"
+ y="528.5066" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5794);fill-rule:evenodd;stroke:url(#linearGradient5796);stroke-width:1.000003;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7691"
+ width="20.96796"
+ height="3.982274"
+ x="1011.52"
+ y="529.5177" />
+ </g>
+ </g>
+ <g
+ id="text-remove-from-path"
+ inkscape:label="#remove_from_path">
+ <rect
+ y="44"
+ x="280"
+ height="16"
+ width="16"
+ id="rect8477"
+ style="color:#000000;fill:none;stroke-width:0.531496;stroke-linejoin:round" />
+ <g
+ id="g12114">
+ <g
+ id="g13610">
+ <path
+ id="path9935"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 283.5,49.5 285.2679,47.69344 C 285.7679,47.19344 286.7679,47.19344 287.2679,47.69344 L 288.2679,48.69344 C 288.7679,49.19344 288.7679,50.19344 288.2679,50.69344 L 286.5,52.5 280.5,46.5 M 293.7061,45 C 293.4888,44.63989 292.8847,44.39585 292.4353,44.5 L 290.4382,44.92262 C 289.9234,45.09695 289.6406,45.77423 289.7835,46.21937 L 290.0427,48.13168 C 290.1303,48.60198 290.8589,49.05562 291.4264,48.96131 L 293.0135,48.67809 C 293.6776,48.52897 294.0322,47.99297 294,47.53434 M 285.5,53.5 C 285.3601,53.98808 284.9107,54.39879 284.5,54.5 L 282.5,53.69344 C 281.8066,53.52383 281.1905,53.85716 281,54.5 L 280.5387,56.34525 C 280.3958,57.03869 280.6012,57.8095 281.1934,58 L 283.1905,58.38394 C 283.7946,58.55355 284.4636,57.87095 284.5,57.30656 284.5677,56.25505 284.7321,55.39683 284.5,54.5"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9203"
+ d="M 288.5,53.5 C 290,51.5 292.5,50.5 295.5,50.5"
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:#c80000;fill-rule:evenodd"
+ d="M 287,55 288,55 289.5,56.5 291,55 292,55 292,56 290.5,57.5 292,59 292,60 291,60 289.5,58.5 288,60 287,60 287,59 288.5,57.5 287,56 287,55 Z"
+ id="path13657"
+ sodipodi:nodetypes="ccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="text-put-on-path"
+ inkscape:label="#put_on_path">
+ <use
+ xlink:href="#rect8477"
+ x="0"
+ y="0"
+ id="use13618"
+ transform="translate(0,21)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#g13610"
+ x="0"
+ y="0"
+ id="use13621"
+ transform="translate(0,21)"
+ width="1250"
+ height="1250" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path13655"
+ d="M 286.5,80.5 C 286.5,75.5 290.5,71.5 295.5,71.5"
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ xlink:href="#clonetiler_per_row_shift"
+ inkscape:label="#clonetiler_per_column_shift"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1,1,0,436.9769,-408.9769)"
+ id="clonetiler_per_column_shift"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#clonetiler_per_row_scale"
+ inkscape:label="#clonetiler_per_column_scale"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1,1,0,464.977,-436.9768)"
+ id="clonetiler_per_column_scale"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#clonetiler_per_row_rotation"
+ inkscape:label="#clonetiler_per_column_rotation"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1,1,0,492.9775,-464.9763)"
+ id="clonetiler_per_column_rotation"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#clonetiler_per_row_opacity"
+ inkscape:label="#clonetiler_per_column_opacity"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1,1,0,520.9769,-492.9769)"
+ id="clonetiler_per_column_opacity"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#clonetiler_per_row_color"
+ inkscape:label="#clonetiler_per_column_color"
+ height="1250"
+ width="1250"
+ transform="matrix(0,1,1,0,548.9769,-520.9791)"
+ id="clonetiler_per_column_color"
+ y="0"
+ x="0" />
+ <g
+ id="swatches"
+ transform="rotate(90,184.5174,23.51385)">
+ <rect
+ y="13"
+ x="212"
+ height="4"
+ width="4"
+ id="rect6024"
+ style="color:#000000;fill:#ffbf00;fill-rule:evenodd" />
+ <rect
+ y="8"
+ x="212"
+ height="4"
+ width="4"
+ id="rect6029"
+ style="color:#000000;fill:#ff69bc;fill-rule:evenodd" />
+ <rect
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd"
+ id="rect6033"
+ width="4"
+ height="4"
+ x="207"
+ y="8" />
+ <rect
+ style="color:#000000;fill:#c8c8c8;fill-rule:evenodd"
+ id="rect6035"
+ width="3"
+ height="4"
+ x="217"
+ y="13" />
+ <rect
+ style="color:#000000;fill:#f0fa00;fill-rule:evenodd"
+ id="rect6037"
+ width="4"
+ height="4"
+ x="212"
+ y="3" />
+ <path
+ style="color:#000000;fill:#a4602b;fill-rule:evenodd"
+ d="M 217,8 221,8 220,12 217,12 217,8 Z"
+ id="rect6045"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="3"
+ x="217"
+ height="4"
+ width="4"
+ id="rect6048"
+ style="color:#000000;fill:#00c626;fill-rule:evenodd" />
+ <rect
+ y="13"
+ x="207"
+ height="4"
+ width="4"
+ id="rect6050"
+ style="color:#000000;fill:#8ab3de;fill-rule:evenodd" />
+ <rect
+ y="3"
+ x="207"
+ height="4"
+ width="4"
+ id="rect6009"
+ style="color:#000000;fill:#ff0000;fill-rule:evenodd" />
+ <path
+ id="rect6103"
+ style="color:#000000;fill:none;stroke:url(#linearGradient6160);stroke-width:0.9999999;stroke-linecap:round;stroke-linejoin:round"
+ d="M 206.5035,2.5 206.5035,17.53125 220.1608,17.53125 C 219.6434,16.08209 219.0304,13.23016 220.6014,10.5 222.6154,7 220.6014,2.5 220.6014,2.5 L 206.5035,2.5 Z M 211.5385,2.5 211.5385,17.5 M 216.5734,2.5 216.5734,17.5 M 206.5035,12.5 219.5944,12.5 M 221.1049,7.5 206.5035,7.5"
+ sodipodi:nodetypes="cccscccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#bad2ec;stroke-width:1px"
+ d="M 210.5035,16.5312 207.5035,16.5312 207.5035,13.5312"
+ id="path6163"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ff6565;stroke-width:1px"
+ d="M 210.5035,6.5312 207.5035,6.5312 207.5035,3.5312"
+ id="path6165"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffb5e0;stroke-width:1px"
+ d="M 215.5035,11.5312 212.5035,11.5312 212.5035,8.5312"
+ id="path6168"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffe185;stroke-width:1px"
+ d="M 215.5035,16.5312 212.5035,16.5312 212.5035,13.5312"
+ id="path6170"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6172"
+ d="M 215.5035,6.5312 212.5035,6.5312 212.5035,3.5312"
+ style="fill:none;stroke:#feffcd;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#5cff7c;stroke-width:1px"
+ d="M 220.5035,6.5312 217.5035,6.5312 217.5035,3.5312"
+ id="path6174"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6176"
+ d="M 219.0035,11.5312 217.5035,11.5312 217.5035,8.5312"
+ style="fill:none;stroke:#d28b51;stroke-width:1px"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccc"
+ style="fill:none;stroke:#ffffff;stroke-width:1px"
+ d="M 219.0035,16.5312 217.5035,16.5312 217.5035,13.5312"
+ id="path6178"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="paint-pattern"
+ transform="translate(395.0006,254)"
+ inkscape:label="#fill_pattern">
+ <rect
+ inkscape:label="#ccc"
+ y="66"
+ x="671"
+ height="18"
+ width="18"
+ id="rect4541"
+ style="color:#000000;fill:#99b6d4;fill-rule:evenodd;stroke-width:1.0000004" />
+ <path
+ style="fill:#ffffff;stroke:#000000;stroke-width:0;stroke-linejoin:round"
+ d="M 676.7274,66.00001 673.4547,69.42858 677.5456,73.7143 681.6365,69.42858 678.3638,66.00001 676.7274,66.00001 Z M 681.6365,69.42858 685.7274,73.7143 689.0001,70.28572 689.0001,68.57144 686.5456,66.00001 684.9092,66.00001 681.6365,69.42858 Z M 685.7274,73.7143 681.6365,78.00001 685.7274,82.28573 689.0001,78.85715 689.0001,77.14287 685.7274,73.7143 Z M 685.7274,82.28573 684.091,84.00001 687.3638,84.00001 685.7274,82.28573 Z M 681.6365,78.00001 677.5456,73.7143 673.4547,78.00001 677.5456,82.28573 681.6365,78.00001 Z M 677.5456,82.28573 675.9092,84.00001 679.1819,84.00001 677.5456,82.28573 Z M 673.4547,78.00001 671.0001,75.42858 671.0001,80.57144 673.4547,78.00001 Z M 673.4547,69.42858 671.0001,66.85715 671.0001,72.00001 673.4547,69.42858 Z"
+ id="rect4545"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.9999989;stroke-linecap:round;stroke-linejoin:round"
+ id="rect4381"
+ width="19.00081"
+ height="18.99999"
+ x="670.4994"
+ y="65.5" />
+ </g>
+ <g
+ id="paint-swatch"
+ transform="translate(395.0006,282)"
+ inkscape:label="#fill_swatch">
+ <rect
+ inkscape:label="#ccc"
+ y="66"
+ x="671"
+ height="18"
+ width="18"
+ id="rect11473"
+ style="color:#000000;fill:#99b6d4;fill-rule:evenodd;stroke-width:1.0000004" />
+ <rect
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.9999989;stroke-linecap:round;stroke-linejoin:round"
+ id="rect11475"
+ width="19.00081"
+ height="18.99999"
+ x="670.4994"
+ y="65.5" />
+ <rect
+ style="fill:#000000"
+ id="rect4382"
+ width="13.00081"
+ height="12.99999"
+ x="674.4994"
+ y="69.5" />
+ <rect
+ style="fill:#ffffff"
+ id="rect11478"
+ width="13.00081"
+ height="12.99999"
+ x="673.4994"
+ y="68.5" />
+ </g>
+ <g
+ id="distribute-graph"
+ transform="matrix(0.173978,0,0,0.208504,867.7008,70.05456)"
+ inkscape:label="#graph_layout">
+ <g
+ transform="matrix(4.416533,0,0,3.725389,-3265.91,88.05639)"
+ id="g3559" />
+ <path
+ id="path3569"
+ d="M 1003.929,599.4599 980.8144,612.551"
+ style="fill:none;stroke:#000000;stroke-width:4.125"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3575"
+ d="M 973.761,627.7789 977.3535,658.054"
+ style="fill:none;stroke:#000000;stroke-width:4.0493159"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3577"
+ d="M 989.9269,669.145 1013.996,670.6437"
+ style="fill:none;stroke:#000000;stroke-width:4.125"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3579"
+ d="M 1029.749,663.75 1043.75,637.1262"
+ style="fill:none;stroke:#000000;stroke-width:4.125"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3581"
+ d="M 1041.298,620.8845 1021.547,601.25"
+ style="fill:none;stroke:#000000;stroke-width:4.125"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path14606"
+ d="M 1057.695,626.25 1082.252,623.882"
+ style="fill:none;stroke:#000000;stroke-width:4.125"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3585"
+ d="M 1097.34,615.4889 1113.937,601.5946"
+ style="fill:none;stroke:#000000;stroke-width:4.125"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3587"
+ d="M 1097.34,632.5749 1115.827,654.5025"
+ style="fill:none;stroke:#000000;stroke-width:4.125"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="use15576"
+ transform="matrix(2.158934,0,0,1.807036,304.9623,206.775)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="use15574"
+ transform="matrix(2.158934,0,0,1.807036,270.4753,278.716)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="use15578"
+ transform="matrix(2.158934,0,0,1.807035,316.828,283.148)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="use15580"
+ transform="matrix(2.158934,0,0,1.807035,339.8194,239.9834)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="use15588"
+ transform="matrix(2.158934,0,0,1.807036,385.4323,235.551)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="use15590"
+ transform="matrix(2.158934,0,0,1.807036,414.1713,206.775)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="use15592"
+ transform="matrix(2.158934,0,0,1.807036,414.1713,273.92)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <use
+ xlink:href="#path5724"
+ height="1250"
+ width="1250"
+ id="use15554"
+ y="0"
+ x="0"
+ style="fill:#8ab3df;fill-opacity:0.5882353;stroke:#0000ff"
+ transform="matrix(1.957219,0,0,1.633125,337.4381,267.7929)" />
+ </g>
+ <g
+ id="zoom-original"
+ inkscape:label="#g6809">
+ <g
+ transform="matrix(0.996399,0,0,1,95.08523,-222.9354)"
+ id="zoom_1_to_1">
+ <use
+ xlink:href="#g5796"
+ transform="matrix(1,0,0,0.997925,-0.04089,0.477615)"
+ x="0"
+ y="0"
+ id="use5816"
+ width="1250"
+ height="1250" />
+ </g>
+ <path
+ d="M 103,29.5 104.5,29.5 104.5,36 M 107,32.5 108,32.5 M 109,29.5 110.5,29.5 110.5,36 M 107,35.5 108,35.5"
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ id="path3788"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="zoom-double-size"
+ inkscape:label="#g6890">
+ <use
+ xlink:href="#zoom_1_to_1"
+ x="0"
+ y="0"
+ id="use6852"
+ width="1"
+ height="1"
+ transform="translate(2.45923e-6,40)" />
+ <use
+ xlink:href="#path10692"
+ x="0"
+ y="0"
+ id="use6888"
+ transform="translate(-5.03664,20)"
+ width="1250"
+ height="1250" />
+ <path
+ d="M 110,69.5 111.5,69.5 111.5,76 M 108,72.5 109,72.5 M 108,75.5 109,75.5"
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ id="path3820"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="layer-lower"
+ inkscape:label="#g6925">
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5788"
+ y="0"
+ x="0"
+ transform="translate(-820,-4)" />
+ <use
+ xlink:href="#path5705"
+ height="1250"
+ width="1250"
+ id="use5764"
+ y="0"
+ x="0"
+ transform="translate(-820,-5)" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use5782"
+ y="0"
+ x="0"
+ transform="translate(-820,-12)" />
+ <use
+ xlink:href="#rect12856"
+ style="fill:#000000"
+ height="1250"
+ width="1250"
+ id="use13581"
+ y="0"
+ x="0"
+ transform="translate(-819.959,-4.960871)" />
+ <use
+ xlink:href="#path7204"
+ x="0"
+ y="0"
+ id="use3823"
+ transform="matrix(1,0,0,-1,-819.959,351)"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ transform="translate(86.43619,-187.9707)"
+ id="show-node-handles"
+ inkscape:label="#nodes_show_handles">
+ <rect
+ style="color:#000000;opacity:0;fill:#000000;fill-rule:evenodd;stroke-width:0.8"
+ id="rect3742"
+ width="12"
+ height="12"
+ x="735"
+ y="57"
+ transform="translate(-64.4787,188)" />
+ <path
+ style="color:#000000;fill:none;stroke:#909090;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 682.0213,245.5 C 678.5213,246 673.5213,249.5 673.5213,253.5"
+ id="path4641"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 673.0213,247.5 673.0213,253.5"
+ id="path4638"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#rect10675"
+ height="1250"
+ width="1250"
+ id="use3738"
+ y="0"
+ x="0"
+ transform="translate(703.5311,60.30166)" />
+ <use
+ xlink:href="#use5758"
+ height="1250"
+ width="1250"
+ id="use4635"
+ y="0"
+ x="0"
+ transform="translate(704.4975,77.02417)" />
+ </g>
+ <g
+ id="distribute-remove-overlaps"
+ inkscape:label="#g5622">
+ <rect
+ y="190.0499"
+ x="1071.892"
+ height="24"
+ width="24"
+ id="rect3709"
+ style="opacity:0.1978022;fill:none" />
+ <g
+ id="use3696"
+ transform="matrix(0,1.043478,0.998006,0,894.32,299.5735)">
+ <rect
+ y="187.554"
+ x="-104.4881"
+ height="7.017632"
+ width="22.00094"
+ id="rect4586"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5599);stroke-width:0.9799225;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="188.5476"
+ x="-103.6973"
+ height="5.021792"
+ width="20.21019"
+ id="rect4588"
+ style="color:#000000;fill:url(#linearGradient5601);fill-rule:evenodd;stroke:url(#linearGradient5603);stroke-width:0.9799237;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="use3698"
+ transform="matrix(1.278077,0,0,2.547898,1136.87,-277.0242)">
+ <rect
+ y="183.485"
+ x="-35.49881"
+ height="9.036107"
+ width="3.142212"
+ id="rect4598"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5605);stroke-width:0.554154;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="-34.71634"
+ x="183.8775"
+ height="1.564824"
+ width="8.243282"
+ id="rect4628"
+ style="color:#000000;fill:url(#linearGradient5607);fill-rule:evenodd;stroke:url(#linearGradient5610);stroke-width:0.5541545;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ transform="matrix(0,1,1,0,0,0)" />
+ </g>
+ <use
+ xlink:href="#use5811"
+ transform="matrix(1,0,0,0.998006,1137.885,4.393102)"
+ x="0"
+ y="0"
+ id="use3703"
+ width="1250"
+ height="1250" />
+ <g
+ id="use3706"
+ transform="matrix(0,1.176069,1.157927,0,849.5299,245.8438)">
+ <rect
+ y="192.5597"
+ x="-38.48989"
+ height="5.011148"
+ width="10.98825"
+ id="rect4608"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5614);stroke-width:0.8569264;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="193.3"
+ x="-37.68001"
+ height="3.476375"
+ width="9.363411"
+ id="rect4610"
+ style="color:#000000;fill:url(#linearGradient5616);fill-rule:evenodd;stroke:url(#linearGradient5618);stroke-width:0.8569259;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ </g>
+ <g
+ id="object-locked"
+ transform="matrix(0.75,0,0,0.71955,299.5223,-168.4164)"
+ inkscape:label="#width_height_lock">
+ <rect
+ ry="0"
+ rx="5.33334"
+ y="710.0064"
+ x="50"
+ height="15.99362"
+ width="16"
+ id="rect16900"
+ style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:1px" />
+ <path
+ id="path16896"
+ style="fill:none;stroke:#000000;stroke-width:1.3612533px"
+ d="M 62.5,717.5 62.5,714.8641 C 62.5,711.8641 59.99997,710.5 57.99997,710.5 55.99997,710.5 53.5,711.8641 53.5,714.8641 L 53.5,717.5 62.5,717.5 Z"
+ sodipodi:nodetypes="ccsccc"
+ inkscape:connector-curvature="0" />
+ <g
+ id="use5854"
+ transform="matrix(0.997501,7.43861e-7,-7.10133e-7,0.9975,0.167523,1.817969)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path4841"
+ d="M 51.96282,724.3143 51.96281,715.9463 63.99288,715.9463 63.99288,724.3143 51.96282,724.3143 Z"
+ style="fill:url(#linearGradient4849);fill-rule:evenodd;stroke:#000000;stroke-width:1.0917313;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ xlink:href="#path5841"
+ height="1250"
+ width="1250"
+ transform="matrix(1.034059,0.0786266,-0.0088376,0.931256,4.459467,44.22347)"
+ id="use3754"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="object-unlocked"
+ transform="matrix(0.749124,0,0,0.633637,299.5433,-127.7233)"
+ inkscape:label="#lock_unlocked">
+ <rect
+ ry="0"
+ rx="5.339582"
+ y="710.0064"
+ x="50"
+ height="15.99362"
+ width="16"
+ id="rect8632"
+ style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:1px" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.451453;stroke-linecap:round"
+ d="M 62.5,716.2876 62.5,713.6626 C 61.99759,709.0089 57.03272,708.2545 55.24252,710.4395"
+ id="path8634"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(1.024267,-0.199097,0.200349,1.030708,-144.8304,-9.554702)"
+ id="g5835">
+ <path
+ style="fill:url(#linearGradient4859);fill-rule:evenodd;stroke:#000000;stroke-width:1.109341;stroke-linecap:round;stroke-linejoin:round"
+ d="M 52.4921,725.7923 52.88452,716.0232 63.40194,715.7981 63.03896,725.7159 52.4921,725.7923 Z"
+ id="path5839"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccssccsc"
+ id="path5841"
+ d="M 57.96875,718.4687 C 57.14028,718.4859 56.48264,719.1715 56.5,720 L 57.5,721 C 57.4924,721.5409 56.77656,722.5441 57.24381,722.8168 57.71106,723.0895 58.28894,723.0895 58.75619,722.8168 59.22344,722.5441 58.50765,721.5409 58.5,721 L 59.5,720 C 59.5086,719.5913 59.34999,719.1969 59.06095,718.9078 58.7719,718.6188 58.37743,718.4602 57.96875,718.4687 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="sticky_zoom"
+ transform="matrix(0.483821,0,0,0.485303,274.8823,249.3187)">
+ <circle
+ transform="matrix(1.125571,0,0,1.125565,-22.76161,-20.24985)"
+ id="path5056"
+ style="color:#000000;fill:none;stroke:#9e9e9e;stroke-width:1.7359509;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7081545"
+ cx="179"
+ cy="159"
+ r="7" />
+ <rect
+ y="150"
+ x="170"
+ height="24"
+ width="24"
+ id="rect5058"
+ style="color:#000000;fill:none" />
+ <circle
+ transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)"
+ id="path5060"
+ style="color:#000000;fill:url(#linearGradient8492);fill-rule:evenodd;stroke:url(#linearGradient4819);stroke-width:1.4338813;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ cx="179"
+ cy="159"
+ r="7" />
+ <path
+ style="fill:url(#linearGradient8494);fill-rule:evenodd"
+ d="M 172,160 C 177,159 176,154 181,153 179,151 175.5,151.8333 174,153 172.5,154.1667 171,158 172,160 Z"
+ id="path5062"
+ sodipodi:nodetypes="cczc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(-0.707107,0.707107,-0.732853,-0.732853,338.9611,194.4488)"
+ id="g5066">
+ <path
+ style="fill:url(#linearGradient8496);fill-rule:evenodd"
+ d="M 85.625,124.8009 C 87.29167,123.8009 88.95833,123.8009 90.625,124.8009 L 90.24628,115.9591 C 88.89722,115.3058 87.62782,115.4979 86.07962,115.9591 L 85.625,124.8009 Z"
+ id="path5068"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient8498);fill-rule:evenodd;stroke:url(#linearGradient8500);stroke-width:1.9912179;stroke-linecap:round;stroke-linejoin:round"
+ d="M 90.62502,124.8009 90.58264,115.9811 C 89.73669,114.9811 86.3975,114.9353 85.55156,115.9353 L 85.625,124.8009"
+ id="path5070"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient8502);fill-rule:evenodd;stroke:url(#linearGradient4811);stroke-width:1.9912179;stroke-linecap:round;stroke-linejoin:round"
+ d="M 85.625,124.8009 86.54346,126.5815 C 87.58329,126.3701 88.56338,126.4085 89.54346,126.5815 L 90.625,124.8009 C 89.77906,123.8009 86.47094,123.8009 85.625,124.8009 Z"
+ id="path5072"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.823809,0,0,0.639827,-262.554,171.1256)"
+ id="object-visible"
+ inkscape:label="#visible">
+ <rect
+ style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.83269"
+ id="rect6472"
+ width="14.52438"
+ height="18.61259"
+ x="707.1481"
+ y="235.935" />
+ <g
+ id="g1661"
+ transform="translate(0,-0.9)">
+ <path
+ id="path4926"
+ style="color:#000000;fill:url(#linearGradient12592);fill-rule:evenodd;stroke:#000000;stroke-width:1.1019087;stroke-linecap:round"
+ d="M 718.3596,243.1986 C 719.3773,243.9521 720.2979,245.1034 721.151,246.7745 719.3176,250.3658 717.7991,251.8726 715.049,251.8726 712.299,251.8726 709.4688,249.9998 707.853,246.6911 709.6864,243.0997 713.2961,241.3385 716.1602,242.0819 M 711.7759,242.388 710.7364,238.3101 M 709.2185,244.2435 707.6685,241.7133 M 714.9275,241.9355 715.0423,237.208 M 717.4674,242.559 718.9969,238.7706 M 719.616,244.0748 721.2305,242.135"
+ sodipodi:nodetypes="ccscscccccccccc"
+ inkscape:connector-curvature="0" />
+ <ellipse
+ style="color:#000000;fill:url(#linearGradient12519);fill-rule:evenodd;stroke-width:3.0247481"
+ id="path5671"
+ transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)"
+ cx="63.5"
+ cy="714"
+ rx="3.5"
+ ry="4" />
+ <ellipse
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:3.0247481"
+ id="path12489"
+ transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)"
+ cx="63.5"
+ cy="714"
+ rx="3.5"
+ ry="4" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.823787,0,0,0.645052,-262.5401,190.2713)"
+ id="object-hidden"
+ inkscape:label="#hidden">
+ <rect
+ style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.83269"
+ id="rect12545"
+ width="14.52438"
+ height="18.61259"
+ x="707.1481"
+ y="235.935" />
+ <g
+ id="g12547"
+ transform="translate(1.571853e-4,-2.424845)">
+ <path
+ id="path12549"
+ style="color:#000000;fill:url(#linearGradient12555);fill-rule:evenodd;stroke:#000000;stroke-width:1.0974514;stroke-linecap:round"
+ d="M 719.0955,243.8639 C 719.8265,244.5813 720.5076,245.5349 721.1508,246.7745 719.2872,250.3658 717.7437,251.8726 714.9482,251.8726 712.1528,251.8726 709.9355,249.62 707.6335,246.6911 709.4972,243.0997 711.8328,241.9924 714.3111,241.9924 714.744,241.9924 715.1623,242.021 715.5669,242.0826 715.9527,242.1414 716.3261,242.2302 716.6881,242.353"
+ sodipodi:nodetypes="ccscsss"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path12562"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:1.0974512;stroke-linecap:round"
+ d="M 714.4315,249.1956 714.5074,256.0334 M 716.8989,248.7953 718.1936,254.8548 M 719.3476,247.864 721.0799,252.4594 M 712.0036,249.0005 710.3345,254.8614 M 709.6897,247.3399 707.7171,252.3217"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="object-fill"
+ transform="matrix(1,0,0,0.923129,277.0199,262.075)"
+ inkscape:label="#properties_fill">
+ <g
+ id="g5646"
+ transform="matrix(0.751537,0,0,0.749817,166.4504,10.00731)">
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path11232"
+ d="M 669.9999,39.99979 685.8966,39.99881 685.9212,57.33638 669.9212,57.3354 669.9999,39.99979 Z"
+ style="color:#000000;fill:url(#linearGradient5619);fill-rule:evenodd;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:none"
+ id="rect11240"
+ width="16"
+ height="16"
+ x="669.9212"
+ y="40" />
+ </g>
+ </g>
+ <g
+ id="object-stroke-style"
+ transform="matrix(0.733476,0,0,0.741921,466.3473,269.3232)"
+ inkscape:label="#properties_stroke">
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="rect12874"
+ d="M 709.8429,42.69565 722.1132,42.69565 722.1132,39.99995 726.2033,43.36958 722.1132,46.73921 722.1132,44.0435 709.8429,44.0435 709.8429,42.69565 Z"
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.35559px;stroke-linecap:square"
+ d="M 710.5245,50.10884 711.8879,50.10884"
+ id="path10529"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="use10533"
+ d="M 718.7054,50.10824 720.0688,50.10824"
+ style="fill:none;stroke:#000000;stroke-width:1.35559px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use10533"
+ transform="translate(4.090113)"
+ height="1250"
+ width="1250"
+ id="use10535"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.35559px;stroke-linecap:square"
+ d="M 710.5246,55.4991 725.5246,55.4991"
+ id="path10541"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path10529"
+ height="1250"
+ width="1250"
+ transform="translate(4.090108)"
+ id="use4611"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ style="fill:none;stroke:url(#linearGradient5617);stroke-width:1.0000001"
+ id="object-stroke"
+ width="11.02273"
+ height="10.97917"
+ x="963.5"
+ y="299.5"
+ inkscape:label="#properties_stroke_paint" />
+ <g
+ id="dialog-rows-and-columns"
+ inkscape:label="#grid_arrange"
+ transform="matrix(0.998005,0,0,0.998427,-214.1301,105.3675)">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.7"
+ id="rect14409"
+ width="16"
+ height="16"
+ x="405"
+ y="220" />
+ <rect
+ style="color:#000000;fill:#bf0000;fill-opacity:0.9942363;fill-rule:evenodd;stroke-width:1.0000004"
+ id="use6620"
+ width="1"
+ height="1"
+ x="416.9681"
+ y="231.9748" />
+ <use
+ xlink:href="#g6675"
+ height="1250"
+ width="1250"
+ id="use6687"
+ y="0"
+ x="0"
+ transform="matrix(1,0,0,0.998006,447.9987,45.40201)" />
+ <use
+ xlink:href="#g6675"
+ transform="matrix(1,0,0,0.998006,456.0399,53.45968)"
+ x="0"
+ y="0"
+ id="use3752"
+ width="1250"
+ height="1250" />
+ <g
+ transform="matrix(1.000856,0,0,1,402.9876,14.92548)"
+ id="use3773">
+ <rect
+ y="205.5581"
+ x="10.5083"
+ height="5.941895"
+ width="5.4917"
+ id="rect3777"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5609);stroke-width:1.0021828;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="206.5582"
+ x="11.50743"
+ height="3.941803"
+ width="3.492565"
+ id="rect3779"
+ style="color:#000000;fill:url(#linearGradient5611);fill-rule:evenodd;stroke:url(#linearGradient5613);stroke-width:1.0021827;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <use
+ xlink:href="#use3773"
+ height="1250"
+ width="1250"
+ transform="translate(-8.065729,8.075484)"
+ id="use3787"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="color-management"
+ inkscape:label="#color_management"
+ transform="matrix(0.33,0,0,0.33,190,344)">
+ <rect
+ y="0"
+ x="0"
+ width="48"
+ height="48"
+ style="fill:none"
+ id="rect8860" />
+ <g
+ transform="matrix(1.125,0,0,1.125,4.5,-7.3125)"
+ id="g8862">
+ <image
+ xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAANJWlDQ1BJQ0MgcHJvZmlsZQAAeNqt 12k4lO/bB/DznhnGMmYYO2Fk36LshOyJyr6lZN+GmWypVEgKkSUULQgJoUQiUf3IkpAs2YqKLKUQ yTLPC6me33H8/8+b53x13uf94rqv+zg+3+u4AAhKLlQqGQUA/gHBgZbGeiR7B0cStg+YAQ9EkAGs i1sQVdfc3Az+Yy32AgIA0C3nQqWSE0NOLve+X3rVaX5fAaGkesJ/L3ygvYMjACILABxeG/0uAOBw 3eitAYDjaDA1GADxBgAON28XdwAkHABkA60t9QGQQgDAe2301QCAd93omwEAH+rmFQyA9APQEwPc fQIAsDMA9NruHkFuAHhZAHB3D3LzB8AnAYCZvz/FHQA/BACSbtTAYAACBgDk7B0cSRuffCAOQIkX gMH0z+xoGkBlDoDk3j8zkQcAXC4AuQl/ZvOWgAAAwtUR5Km4AwAAEJweAN0IjTYvDoBNAVhLptFW cmm0tZsA6CGABrJbSGDor/+FIO0A/9fzxp5/FRoBQAEgokgB6jg6HBNOd4o+AhvFcIbRgLGR6Rzz eVwsywV8Fas3WzIxmT2F4xJnGlcadwZPIx+FP2tLlsA1wWZSiHDu1psiHWInxAskuqROSRfL9MpF bbsjP7D93I57im+VL6hUqY6qJ2rUaI5rpWo/1pnSTdd7qv/FMNOoyXjO5MaeVtPFvbn7Xu7vNO+0 6LJctS6y6bHtteuz73fEHLjrNHRw+NCI89vD71xxbg/dP3h89Bz3mvD+5DPpx0l+4v854Atllvr1 yLfAuaCF4IWQ76GLR5fCfhxbPv7zxGr46sm101IRPVHIGVQ0+iwmhu4c/XlsLEMcYzzTBeYEXCLL RXwSIZk1hS2VeIk9jSOdM4PrMvcVnkzeLL6r/Ne2XBe4IZgtlEPKFb65NU8kX7RA7JZEocRtySKp Yuni6RLyHdlSuTL5coW72+9tr9hxX6lSuUqlavFBaLXqQ7UajVrNRzvrdj7Werxef7pB58mup7rP 9P7Rb8Q0RjcZPjdqNm4xaTVpY2qLf2HabvZyXwe+42KneZfFK8tuYnfKa6se616bPq6+jH67N/YD joN8g1lDTsNOIwffCr698c559PCY8Fjue9cPbh/dx8XGCyY8P3lNek9JTRVN+874fSZ/kftSOhvw lfKNOrd97t584ELQ9+BF5cWqpdAfYcvHfh5b0VipXT2xFr6utf6YRgNARFB41Fd0G6aYLpU+HOvF YM2oz6TELIGTYOHBcxN4WHnYOIni7JIcapxmXIe4g3gSecv42vgnBdgFVYS8SJeFn4sgolpiR8Tv SsxKSUqTZWrl0Nt05ZMVRndIKcYo9alIq1LVGjW4NcN2vtDm0qHseqonqn/CoMtI0Dhsd53Jsul2 M4+9afu6zPEWxpZhVvnWr22Z7HbZH3G45th0YPag0KH9zscP57o0uk66c3roeNp7nfLO9mnwHfZb 9mcPkKEYUL2PhAcmBeUGV4Y0hw4enQpbPI4+wRZOOil7Svn0rgjTyP1RB84cjvY4S44JPhd4PiI2 Iu5MfOyFlIT4xMyLV5IykpNTrqamXEpPu5xemHHrcumVwszirLKrj649ut5440V2V053bvfN7rzB /A8FE7fGCj/eni36Vjxb8uXOXOls2XT5zN2Je6MVY/cHKruqWh40VD94WFZztTblUUSd/+MD9aYN O59IPyU+XX727p/WxvtNqc8Dm61aVFr5W2ltAy/ut8e9dOwQ6RjvrOg6+cqwG989/Dq7x7dXsXet r70/9c3BAamB+cGaoahh0xGOkZG3t98FjWqOYcZa31/6cOijxMeZ8ZqJyE97Jjknh6fypskzyjPr n1u+pMwe+Cr6deZbxVz4vPECcaH/e/4iZUn9B/rH8+XknwdWRFY+r1atRayb0LhoNAA4g4ShjqM1 0TWYk3Q6dPX0kdizDEYMjYwxTOeY43B7cG0sCfgEQiLrftYOtiRiCnsqRyqnNedrrnTudJ7LvJl8 WfxZW64KOAkMC94QyiblCOdszRG5KZonli9eIHFLslDqtrSP9JRMkWyJ3J1tpfJlCuXb7+64p1ih dF+5SqVKtUotTO2Heo1GjWbtzkdaddqntNd16nc16D7Re6r/zCDaEGPYaNRk/Hx3s0nLnlbTeDOc 2Yu97fte7u8wT7JgteiyfGXVbf3aptc23Y7Lrs++3+GN48CBLCd+p6GDw4feOr87/M4lx1XYdczt vfsHj4+eBV7iGwniO+VXTJYlz/yvFJn/nSLVx9SOLR//eWIlfPXk2qn107RIiEL9ThLseWwsQ2xL 3J545gu4BFwiy0VCEmsy2+8s4crgvszzK0u2/J0luWM33fJE8kULxG+Jb6ZJiewdudJtf2WJYqVS lfID1WrVh2o16rWajzTrdj7Wrtf+K0cMm4yeGzUbt+xuNWkzfRH6cmvHvk7zLvNXFt0ne6R7bfvs +qMG5Acdh2JGFN/GjiqPXfjgPq45kTzpM+37mTxL+Ra34Lh4cTl+zZJGA9g4+wAA6FUA0mUAbDMB rHIBYmQAJJwBuAoBzFkArNUBRScIKC0qIHu0Ns8PQIAVBGAb6IEDBEESlMMPhISYImFIIfISmUAR UMaoSFQdahWthY5EN6FXMcIYB0wB5judEd1ZujK6WXpj+hz6cSwn1glbx4BlUGeIZphm1GCkMDYw yTFFMFUz45kjmd/gOHABuE8shixnWEbxLvinBDTBkzDDasGazrrGFss2R9Qg5rOrsuezz3I4cyxx +nBWcclwPef25MHyFPGK8R7lXeC7xm/MP78lW0BUIFwQEawU8iUJkwaEL23dujVChCDSIZosZiPO Jz4mUSypL3lbSk+aTXpUpkL2nJzTNkV5nPyEwj/bc3dEKborGSvLqrCrrKqOq2Wo49UbNMo1c3Ze 0jqvfVrn6K4jumQ9H31vA29DP6MA4+DdJ0yi91w0zTK7vbd6X8v+IfNvllgrQWs1Gytbql2ifalD p+O8E89B7UOezkmHa10+uXG7G3sc8yzx4fE194sjNwagKLrUyCPPguiDTUNSwkSPUY4/Cmc66Xiq 5DQt0joaddYp5sF59tgjcV0JaYnLSc7JTanylzIzgi6/z7TKarxemi2Wc+0mdwHrrcTb+KKLdzLK BMrz7slVGlR1Vbs8/FbH/bikQe9ZcCOhqaR5T1tcu9zLrs7Q7qYeah9/f/OQ+HD/27hRnQ8l4+6f hCYHPtvOcn3tm8tccF6aWa5cOU3jodEAAAVMwA1SoAP2EAJpUA0jCBZRQJyRRKQemUdJo5xRmajX aAJ6L/oCuh3DgtmPScMM0pHofOjK6X7Q69NfpH+DFcOGYJ8xEBncGaoZmRmdGEuZMEyHmO4zMzG7 MdfjOHFUXDuLNEsCywzeDF9GYCFQCL2su1jz2PBsoWyDRCPiXXYSewr7OkcQx2dOX84pLjLXHHcw 9yLPcV6E9wIfH18Rvzp/0xbbLZMCEYK8glVCFkJTpBhhceHmrQEi3CKPRd3EcGJPxAMkhCReScZK 6UmtSdfKhMtqyS7J1W87L2+tIKwwu71+R7Kir5KBsqDyikqP6kO1a+qRGl6adju1tOS1hXWIuzC6 aN05vW/6swbThuNG88bTu7/vQZlymHHv3b5Pe/9+c0sLP8tjVlnW92xe2A7arTpwOMof2Od05OCV Q43OEy6Mrgpu3u6ZHvWeX72lfDx8M/x6/PkDbChZ1E+BkkGhwS2hAkeDwlqPi5xIDJ865XC6OVIl Kj+aeDbxHPF8ehxPfFaCcuLLJI/kn6kJaarpHy9fz/S9anNdKpsuZ+bm0/zKW1duxxS73XEqM7qr VqFUue2B3EPJWrE6yXqFJzrPdjdaPCe3HGlLbs/ueNQ10k3rFerXGnAfih+peTfznvej3kTEZOH0 hy98Xz3nri+ML0kuB6xUrSM0GgDQAysIgB44QBKUw6tN+5vuN9RjCBgHzHc6I7rMX97XsU4MQgzR DNOM1owNTHJMV5nxzJHMS7gA3CcWd7wL/j3BkzDDGsS6xhZL5CLms6uyt3I4cyxxJv02vY934Zdn c0FEsPKXZYsNyb8ch0rp/W34j+Bffl+pN2iU/7H7R+5/dvvf1HqN+vD4mv9bbejAv91GFf0t98KO P3LT6TftXlPf1JuXuum3hLgpuKJ603DtmQ3FTwY2HbdMtsW9+Kc9/WVXZ+grge6mHmpveV9Mf/NA 6JD4sN+Iwdu4UZ2xc+9dP5R8XBzv/iQ06TdlMi05g/1s+6VgNuar17fdc9LzzPNfFjq/VyymL1kv zfyIXtb7KfFzfOX0Ks/q9TW2tei1pfU8WjyNBrBxXwIAACZ9CpkSSDLTN4D/3/Inh2yugQIAnEeQ oRUAEAFA0iPAZrPXADPQBwMggRtQgAwUCAT93x1p4+3GPQ4AgJ4V4KodAED9jxMR/14z2CMsGABA n0I9Fujj5R1M0qVSyR4kfYo/NSTYI1CWZBLgtk2WtENBQRkA4H8Aw2wI2gG1XRMAAAOYSURBVDjL pdXPaxxlGMDx7zszOzuTzW72R7KbpjWx/sAeFPVQFGqKiNDWFlvMwYo/wItXxR6q5lQET968iDf/ AUOgVOwlUMREhZRaD2Ldmpgmpmm23ezs7szOr8dDZjfxV03sOzzM8MJ83ofnfV5eHMeRSWdSDvoH 5Zx/TuphXe518GXtoiC6kDyVoCJT7tS9oa/W3xZkSJBUDyZGzrTOSBiH/w99uvGGIAcE2SOIvQUL crJ9Utphe9eodiN2gQJQAgaBLKAAmLanORYcpRk57GZoN/UYGADyQDGBC4AOwJx1ideD52mGGztH U/FAgm6HS0mYpIGq9R1nw+dohnd2htpaEchtQ/PbyjGETYY+FOvWPJ+FR3B3kLFmkU/Q3Da8AAyi UybDMP3kyaHhWd8zEx7FDxt3R/dF5WRzumARGAKGMBM0x17yDDOISb81x23/OFHY/Hd0TJUTsJBg ZaACDGMzQo4R8uxjkDH2MMYoWcru1wQ/nCDs/HPGxibqACHgAwHQATpkcRnApUSTYRqMUmBvM4tW XcT65RLelWOo01+h2/1/RvfHJcBN0G4EGPgM0KGExzAuY7R4wL9DqpqGKrCoY618i1s9jjl5Ad3O bKFPqELS7HESERBhEVIkpELAKD6PxC7ZX6/DTx5c78CSwKqOfXkOd+lFzE/Po9v2JnpAWZjBKL5S INJbLSfCIMKICA+KUFm7CVeb8HMNFtqwEsKawLqOfWUWd/UU5vQ0umVhGMCjqynmPa2XqIqgP4J0 AFoAsQ9SK8KPJaiW4IYDv3uwFkJDINKwL87ivjRBeuoLDKUUh1rC/GKvnBg+2D7oHsQuuC3o1Pvo qxZgoQDLG1BzwQ+SkgHopK4u4H8ziwEwbsIni8nmd8D0IO2C3oa4Cd4GeLUUfb/lYSUP7TxIK+mS kODhEeTsBMZrJ7DSJoaI8GwF9GUhchV4YLXBbIHmQFyHoAbtVUWxkYW4e/IcgicLyHvjpCaeQuna 1u4rpRjK6BzuC5m5ZqDaYLcg1QCtDrIOwQa4EURk0MkSjN+HfPAMqSP7UUr9vfm7H688JsxcAL0J lgPGbVAbIOFmqV0leC/opN5/CPNQ9u5nX5I2evmwzkAjIrUE5iIYNVAhiB5TPh1w/+WQzHnrP0EA HMfpXQMffuRJXok8jsipdCSfv+XLrWvB7u+oLhrHsQRBJO+82ZKP3/Xk1nLQm+++W61W78ft83+d +wOuBu1qqTfJ4wAAAABJRU5ErkJggg=="
+ clip-path="url(#cieClip)"
+ width="36.6"
+ height="41"
+ id="image2428"
+ x="-0.264"
+ y="7.333" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.5px"
+ d="M 8.36,47.76 C 7.751574,47.51528 7.222277,46.90182 6.784324,46.39273 5.608271,45.02566 4.964826,43.30281 4.38,41.63 3.446394,38.95956 2.627115,36.19922 2.114165,33.41042 1.415792,29.6135 0.6129846,25.78424 0.3959804,21.94278 0.2093634,18.63925 -0.036735,15.09899 0.67,11.99 1.021272,10.44473 2.335229,8.406245 3.57,7.98 4.66602,7.601652 6.456945,8.746987 7.698531,9.504755 9.584304,10.65569 11.33779,12.01369 12.9958,13.4917 17.54131,17.54374 21.81301,21.89176 26.1391,26.17398 29.19235,29.19627 32.22777,32.23682 35.27,35.27 26.3,39.43333 17.33,43.59667 8.36,47.76 Z"
+ id="path8865"
+ sodipodi:nodetypes="cssssssssscc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="draw-use-tilt"
+ transform="matrix(1,0,0,1.066667,-203.5002,-21.01625)"
+ inkscape:label="#guse_tilt">
+ <rect
+ style="fill:none"
+ id="use_tilt"
+ width="11"
+ height="10.31249"
+ x="691.5"
+ y="303.75" />
+ <path
+ id="path4036"
+ style="fill:none;stroke:url(#linearGradient4610);stroke-width:0.9682457;stroke-linecap:round;stroke-linejoin:round"
+ d="M 696.7189,305.998 696,305.5938 692,313.5938 702,313.5938 702,312.6563"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:url(#linearGradient4618);stroke-width:0.9682457;stroke-linecap:round"
+ d="M 694.5,309.375 C 696,309.8438 697.5,311.7188 697,313.5938"
+ id="path15733"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="draw-use-pressure"
+ transform="matrix(0.941445,0,0,1.002693,-145.0319,-1.597622)"
+ inkscape:label="#guse_pressure">
+ <rect
+ style="fill:none"
+ id="use_pressure"
+ width="11.684"
+ height="10.9571"
+ x="691.524"
+ y="303.7634" />
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 691.5241,314.2513 691.5301,314.75 703.2083,314.7339 703.2086,310.7607 C 700.3774,312.5369 696.3043,314.2513 691.5244,314.2513 Z"
+ id="path7145"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient4649);fill-rule:evenodd"
+ d="M 696.8349,303.7635 696.8349,308.75 693.6483,308.75 697.366,312.7393 701.0837,308.75 697.8971,308.75 697.8971,303.7635 696.8349,303.7635 Z"
+ id="path4622"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ xlink:href="#properties_fill"
+ height="1250"
+ width="1250"
+ transform="translate(482.0912,-121.9991)"
+ id="controls_fill"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#properties_stroke_paint"
+ height="1250"
+ width="1250"
+ transform="translate(486.0664,-121.9791)"
+ id="controls_stroke"
+ y="0"
+ x="0" />
+ <g
+ id="transform-affect-stroke"
+ transform="matrix(0.695835,0,0,0.741921,35.18012,-150.29)"
+ inkscape:label="#transform_stroke">
+ <path
+ style="fill:none;stroke:#000000;stroke-width:2.7835436;stroke-linecap:square"
+ d="M 670.8773,245.7 685.2485,245.7 685.2485,251.0914"
+ id="path5760"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.391772px;stroke-linecap:square"
+ d="M 670.1587,250.4175 680.2186,250.4175 680.2186,253.1132"
+ id="path5762"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g5772">
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 682.3742,253.7871 682.3742,256.4828 679.5,256.4828 679.5,257.8307 682.3742,257.8307 682.3742,260.5264 686.6856,257.1568 682.3742,253.7871 Z"
+ id="path12910"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ transform="translate(170,219.961)"
+ id="path5764"
+ d="M 505.9072,37.19576 507.3443,37.19576"
+ style="fill:none;stroke:#000000;stroke-width:1.391772px;stroke-linecap:square"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5770"
+ d="M 672.3144,257.1568 673.7515,257.1568"
+ style="fill:none;stroke:#000000;stroke-width:1.391772px"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="transform-affect-rounded-corners"
+ transform="translate(-150,-214)"
+ inkscape:label="#transform_corners">
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 673.5,248.5 677.5,248.5 C 680,248.5 681,249.5 681,251.8"
+ id="path4434"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.0000004px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 673.5,245.5 679,245.5 C 682.5,245.5 684.5,247.5 684.5,250.5"
+ id="path4436"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g5772"
+ height="1250"
+ width="1250"
+ transform="matrix(0.695835,0,0,0.741921,207.1801,63.71)"
+ id="use4586"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="transform-affect-pattern"
+ transform="translate(-109.9999,-213.9612)"
+ inkscape:label="#transform_pattern">
+ <rect
+ style="fill:#000000;stroke:#000000;stroke-width:0;stroke-linejoin:round"
+ id="rect4538"
+ width="11.00024"
+ height="4.999897"
+ x="674.9997"
+ y="245.9612" />
+ <path
+ style="opacity:0.9;fill:#ffffff;stroke:#000000;stroke-width:0;stroke-linejoin:round"
+ d="M 683.8361,245.8988 681.6098,247.592 679.4293,245.9337 677.2029,247.627 679.4063,249.3028 677.2259,250.9612 681.6327,250.9612 679.4523,249.3028 681.6557,247.627 683.8361,249.2853 686.0625,247.592 683.8361,245.8988 Z M 683.8361,249.2853 681.6327,250.9612 686.0395,250.9612 683.8361,249.2853 Z M 674.9995,245.9162 674.9995,249.2679 677.2029,247.592 674.9995,245.9162 Z M 674.9995,249.3028 674.9995,250.9612 677.18,250.9612 674.9995,249.3028 Z"
+ id="rect4540"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path4430"
+ height="1250"
+ width="1250"
+ id="use5102"
+ y="0"
+ x="0"
+ transform="translate(0,-1)" />
+ <use
+ xlink:href="#g5772"
+ height="1250"
+ width="1250"
+ id="use4592"
+ y="0"
+ x="0"
+ transform="matrix(0.695835,0,0,0.741921,209.1801,63.671)" />
+ </g>
+ <g
+ id="transform-affect-gradient"
+ transform="translate(-130,-214.961)"
+ inkscape:label="#transform_gradient">
+ <path
+ style="color:#000000;opacity:0.9;fill:url(#linearGradient8709);fill-rule:evenodd;stroke-width:0.7"
+ d="M 675,245.961 687,245.961 687,251.961 675,251.961 675,245.961 Z"
+ id="path12993"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;opacity:0.9;fill:url(#linearGradient8711);fill-rule:evenodd;stroke-width:0.7"
+ d="M 675,248.961 683,248.961 683,252.961 675,252.961 675,248.961 Z"
+ id="path12995"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 675.5,246.461 686.5,246.461 686.5,251.461"
+ id="path4430"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 675.5,249.461 682.5,249.461 682.5,252.461"
+ id="path4432"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g5772"
+ height="1250"
+ width="1250"
+ id="use4589"
+ y="0"
+ x="0"
+ transform="matrix(0.695835,0,0,0.741921,209.1801,64.671)" />
+ </g>
+ <g
+ id="edit-undo-history"
+ transform="matrix(1.00075,0,0,0.9928055,-0.0412413,0.2497714)"
+ inkscape:label="#edit_undo_history">
+ <g
+ transform="matrix(0.723037,0,0,0.675336,-257.1363,-6.948167)"
+ id="g2661">
+ <path
+ style="fill:#fac32d;fill-rule:evenodd"
+ d="M 432.5759,60.78928 440.0143,53.3847 440.0143,57.08698 C 440.0143,57.08698 448.7829,57.01915 448.7829,57.01915 448.7829,57.01915 448.7829,70.32655 448.7829,70.32655 448.7829,70.32655 445.5535,70.25508 445.5535,70.25508 445.5535,70.25508 445.5535,63.56253 445.5535,63.56253 445.5535,63.56253 438.6118,63.56253 438.6118,63.56253 438.6118,63.56253 438.6118,66.537 438.6118,66.537 438.6118,66.537 432.5759,60.78928 432.5759,60.78928 Z"
+ id="path2640"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#efe4b6;fill-rule:evenodd;stroke:#efe7c1;stroke-width:1.4336616;stroke-linejoin:bevel"
+ d="M 432.558,61.52785 439.1437,54.49225"
+ id="path2645"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ca8f0b;fill-rule:evenodd;stroke-width:1px"
+ d="M 442.9108,70.25823 C 445.632,70.1633 445.5988,70.32655 445.5988,70.32655 445.5988,70.32655 445.5219,63.56253 445.5219,63.56253 445.5219,62.0753 445.5219,62.0753 443.4488,62.0753 443.4488,62.0753 433.6966,61.96534 433.6966,61.96534 L 439.1693,67.94512 439.1693,64.46465 C 439.1693,64.46465 440.3647,64.4945 441.6052,64.4945 444.0861,64.4945 442.9108,67.2805 442.9108,70.25823 Z"
+ id="path2642"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path2647"
+ d="M 432.3932,60.65307 439.3236,53.25005 439.3236,56.89614 C 439.3236,56.89614 446.4899,56.8473 448.9899,56.8473 448.9899,56.8473 449.0231,56.99985 449.0231,70.32655 449.0231,70.32655 444.5537,70.34731 443.4548,70.32655 443.4548,70.32655 443.4578,64.35493 443.4578,64.35493 442.2078,64.35493 439.3086,64.35493 439.3086,64.35493 L 439.3237,68.25005 432.3933,60.65307 Z"
+ style="fill:none;stroke:#000000;stroke-width:1.3971461;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g11177"
+ transform="translate(-254.4684,4.926264)">
+ <path
+ style="color:#000000;fill:url(#linearGradient5391);fill-rule:evenodd;stroke:url(#linearGradient5393);stroke-width:0.7119799;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path14377"
+ d="M 284,23 A 3,3 0 1 1 278,23 3,3 0 1 1 284,23 Z"
+ transform="matrix(1.331759,0,0,1.327869,-53.22381,-6.040984)"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ d="M 320.4594,22.00781 321.4594,21.00781 321.4594,25.00781 320.4594,25.00781 320.4594,22.00781 Z"
+ id="path11169"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#000000;fill-rule:evenodd"
+ d="M 319.4609,24.02096 321.4609,24.02096 321.4609,25.02096 318.4609,25.02096 319.4609,24.02096 Z"
+ id="path11171"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="g3735"
+ transform="matrix(0.76838,0,0,0.776759,4.51551,573.2782)" />
+ <g
+ id="distribute-graph-directed"
+ inkscape:label="#directed_graph"
+ transform="translate(295.9565,-461.8256)">
+ <path
+ id="path3750"
+ d="M 815.4504,655.5878 819.7252,661.5878"
+ style="fill:none;stroke:#000000;stroke-width:0.7856485;marker-end:url(#Arrow1Send)"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3752"
+ d="M 828.2748,655.7252 824.2748,661.4504"
+ style="fill:none;stroke:#000000;stroke-width:0.7856485;marker-end:url(#Arrow1Send)"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path3762"
+ transform="matrix(0.375607,0,0,0.376774,698.833,582.9556)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path3764"
+ transform="matrix(0.375607,0,0,0.376774,690.833,572.9556)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path3766"
+ transform="matrix(0.375607,0,0,0.376774,706.833,572.9556)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <circle
+ style="color:#000000;fill:#99b7d5;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.8193182;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path3787"
+ transform="matrix(0.375607,0,0,0.376774,698.833,592.9556)"
+ cx="328"
+ cy="215"
+ r="5" />
+ <path
+ id="path3789"
+ d="M 822,666 822,670.626"
+ style="fill:none;stroke:#000000;stroke-width:0.7856485;marker-end:url(#Arrow1Send)"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:label="#layers"
+ transform="translate(-819.959,77.03912)"
+ id="dialog-layers">
+ <use
+ xlink:href="#use8059"
+ transform="translate(0,2.999974)"
+ height="1250"
+ width="1250"
+ id="use8977"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect12856"
+ x="0"
+ y="0"
+ id="use8055"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path4802"
+ transform="translate(-0.0409998,-2.993605)"
+ x="0"
+ y="0"
+ id="use8059"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path4802"
+ transform="translate(-0.0410002,-5.993605)"
+ x="0"
+ y="0"
+ id="use8061"
+ width="1250"
+ height="1250" />
+ </g>
+ <use
+ xlink:href="#rect12856"
+ transform="translate(-864.959,177.0391)"
+ x="0"
+ y="0"
+ id="use9075"
+ width="1250"
+ height="1250" />
+ <g
+ id="edit-select-all-layers"
+ inkscape:label="#selection_select_all_in_all_layers">
+ <path
+ id="path9031"
+ d="M 55.5,213.5 56.5,213.5"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9033"
+ transform="translate(-295.3149,-39.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9035"
+ transform="translate(-292.3149,-39.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9037"
+ transform="translate(-289.3149,-39.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9039"
+ transform="translate(-286.3149,-39.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9041"
+ transform="translate(-296.3149,-24.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9043"
+ transform="translate(-293.3149,-24.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9045"
+ transform="translate(-290.3149,-24.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9047"
+ transform="translate(-287.3149,-24.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6078"
+ x="0"
+ y="0"
+ id="use9049"
+ transform="translate(-284.3149,-24.1388)"
+ width="1250"
+ height="1250" />
+ <path
+ id="path9051"
+ d="M 55.5,215.5 55.5,216.5"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9053"
+ transform="translate(-298.3149,-36.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9055"
+ transform="translate(-298.3149,-33.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9057"
+ transform="translate(-298.3149,-30.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9059"
+ transform="translate(-298.3149,-27.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9061"
+ transform="translate(-283.3149,-29.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9063"
+ transform="translate(-283.3149,-32.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9065"
+ transform="translate(-283.3149,-35.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9067"
+ transform="translate(-283.3149,-38.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path6100"
+ x="0"
+ y="0"
+ id="use9069"
+ transform="translate(-283.3149,-41.1388)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use8059"
+ x="0"
+ y="0"
+ id="use9073"
+ width="1250"
+ height="1250"
+ transform="matrix(0.752527,0,0,0.752527,-669.1784,91.05547)" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use9077"
+ y="0"
+ x="0"
+ transform="matrix(0.752527,0,0,0.752527,-669.2092,85.8027)" />
+ <use
+ xlink:href="#path4802"
+ height="1250"
+ width="1250"
+ id="use9079"
+ y="0"
+ x="0"
+ transform="matrix(0.752527,0,0,0.752527,-669.2092,82.8027)" />
+ </g>
+ <g
+ id="dialog-messages"
+ transform="translate(45,111)"
+ inkscape:label="#messages">
+ <g
+ id="g4239"
+ transform="matrix(1,0,0,0.996869,-60.05696,-76.20668)">
+ <rect
+ style="color:#000000;fill:url(#linearGradient4249);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round"
+ id="rect4241"
+ width="14.99917"
+ height="11.99987"
+ x="115.5577"
+ y="338.8083" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient4251);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round"
+ id="rect4243"
+ width="14.99819"
+ height="3.011261"
+ x="115.5588"
+ y="335.7579" />
+ </g>
+ <path
+ sodipodi:nodetypes="cccccccc"
+ id="rect5189"
+ d="M 57.49993,263.4998 68.49997,263.4998 68.5,268.5 66.5,268.5 64.29651,271.4721 64,268.5 57.5,268.5 57.49993,263.4998 Z"
+ style="color:#000000;fill:#d3d7cf;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999992;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="dialog-scripts"
+ inkscape:label="#scripts">
+ <g
+ transform="matrix(1,0,0,0.996869,-15.05696,14.79332)"
+ id="g4209">
+ <rect
+ y="338.8083"
+ x="115.5577"
+ height="11.99987"
+ width="14.99917"
+ id="rect4212"
+ style="color:#000000;fill:url(#linearGradient4218);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="335.7579"
+ x="115.5588"
+ height="3.011261"
+ width="14.99819"
+ id="rect4214"
+ style="color:#000000;fill:url(#linearGradient4220);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" />
+ </g>
+ <path
+ style="fill:#000000"
+ d="M 103,354 103,363 107,363 107,361 105,361 105,356 107,356 107,354 103,354 Z"
+ id="path5166"
+ sodipodi:nodetypes="ccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccccc"
+ id="path5168"
+ d="M 113,354 113,363 109,363 109,361 111,361 111,356 109,356 109,354 113,354 Z"
+ style="fill:#000000"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="dialog-icon-preview"
+ inkscape:label="#view_icon_preview">
+ <g
+ transform="matrix(1,0,0,0.996869,-15.05696,54.79332)"
+ id="g5190">
+ <rect
+ y="338.8083"
+ x="115.5577"
+ height="11.99987"
+ width="14.99917"
+ id="rect5192"
+ style="color:#000000;fill:url(#linearGradient5198);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="335.7579"
+ x="115.5588"
+ height="3.011261"
+ width="14.99819"
+ id="rect5194"
+ style="color:#000000;fill:url(#linearGradient5200);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" />
+ </g>
+ <g
+ inkscape:label="#visible"
+ id="g5206"
+ transform="matrix(0.823809,0,0,0.639827,-480.5562,242.2038)">
+ <rect
+ y="235.935"
+ x="707.1481"
+ height="18.61259"
+ width="14.52438"
+ id="rect5208"
+ style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.83269" />
+ <g
+ transform="translate(0,-0.9)"
+ id="g5210">
+ <path
+ sodipodi:nodetypes="ccscscccccccccc"
+ d="M 718.3596,243.1986 C 719.3773,243.9521 720.2979,245.1034 721.151,246.7745 719.3176,250.3658 717.7991,251.8726 715.049,251.8726 712.299,251.8726 709.4688,249.9998 707.853,246.6911 709.6864,243.0997 713.2961,241.3385 716.1602,242.0819 M 711.7759,242.388 710.7364,238.3101 M 709.2185,244.2435 707.6685,241.7133 M 714.9275,241.9355 715.0423,237.208 M 717.4674,242.559 718.9969,238.7706 M 719.616,244.0748 721.2305,242.135"
+ style="color:#000000;fill:url(#linearGradient5218);fill-rule:evenodd;stroke:#000000;stroke-width:1.1019087;stroke-linecap:round"
+ id="path5212"
+ inkscape:connector-curvature="0" />
+ <ellipse
+ transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)"
+ id="path5214"
+ style="color:#000000;fill:url(#linearGradient5220);fill-rule:evenodd;stroke-width:3.0247481"
+ cx="63.5"
+ cy="714"
+ rx="3.5"
+ ry="4" />
+ <ellipse
+ transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)"
+ id="path5216"
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke-width:3.0247481"
+ cx="63.5"
+ cy="714"
+ rx="3.5"
+ ry="4" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="edit-select-none"
+ inkscape:label="#selection_deselect">
+ <use
+ xlink:href="#g6068"
+ x="0"
+ y="0"
+ id="use5235"
+ transform="translate(-298.3274,-16.15328)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#g10421"
+ x="0"
+ y="0"
+ id="use5237"
+ transform="translate(-299.3571,-15.18254)"
+ width="1250"
+ height="1250" />
+ <path
+ id="path5239"
+ d="M 55.5,236.5 56.5,236.5"
+ style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5261"
+ d="M 55.5,238.5 55.5,239.5"
+ style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5239"
+ x="0"
+ y="0"
+ id="use5306"
+ transform="translate(3)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5239"
+ height="1250"
+ width="1250"
+ transform="translate(6)"
+ id="use5309"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5239"
+ height="1250"
+ width="1250"
+ transform="translate(9)"
+ id="use5313"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5239"
+ x="0"
+ y="0"
+ id="use5311"
+ transform="translate(12)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5261"
+ x="0"
+ y="0"
+ id="use5318"
+ transform="translate(0,3)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5261"
+ height="1250"
+ width="1250"
+ transform="translate(0,6)"
+ id="use5321"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5261"
+ height="1250"
+ width="1250"
+ transform="translate(0,9)"
+ id="use5323"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5261"
+ x="0"
+ y="0"
+ id="use5325"
+ transform="translate(0,12)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5239"
+ height="1250"
+ width="1250"
+ transform="translate(2,15)"
+ id="use5327"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5239"
+ x="0"
+ y="0"
+ id="use5329"
+ transform="translate(5,15)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5239"
+ x="0"
+ y="0"
+ id="use5331"
+ transform="translate(8,15)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5239"
+ height="1250"
+ width="1250"
+ transform="translate(11,15)"
+ id="use5333"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5239"
+ x="0"
+ y="0"
+ id="use5335"
+ transform="translate(14,15)"
+ width="1250"
+ height="1250" />
+ <path
+ style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square"
+ d="M 70.5,236.5 70.5,237.5"
+ id="path5337"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5261"
+ height="1250"
+ width="1250"
+ transform="translate(15,1)"
+ id="use5340"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5261"
+ x="0"
+ y="0"
+ id="use5342"
+ transform="translate(15,4)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5261"
+ x="0"
+ y="0"
+ id="use5344"
+ transform="translate(15,7)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5261"
+ height="1250"
+ width="1250"
+ transform="translate(15,10)"
+ id="use5346"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="edit-select-invert"
+ transform="translate(0,-18)"
+ inkscape:label="#selection_invert">
+ <use
+ xlink:href="#g10421"
+ height="1250"
+ width="1250"
+ transform="matrix(1.112088,0,0,1.110911,-340.6366,-0.279561)"
+ id="use5599"
+ y="0"
+ x="0"
+ style="opacity:0.5" />
+ <path
+ style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square"
+ d="M 59.5,281.5 60.5,281.5"
+ id="path5378"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square"
+ d="M 59.5,283.5 59.5,284.5"
+ id="path5380"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5239"
+ height="1250"
+ width="1250"
+ transform="translate(7,45)"
+ id="use5382"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5239"
+ x="0"
+ y="0"
+ id="use5384"
+ transform="translate(10,45)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5261"
+ height="1250"
+ width="1250"
+ transform="translate(4,48)"
+ id="use5390"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5261"
+ x="0"
+ y="0"
+ id="use5392"
+ transform="translate(4,51)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5239"
+ x="0"
+ y="0"
+ id="use5398"
+ transform="translate(6,54)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5239"
+ height="1250"
+ width="1250"
+ transform="translate(9,54)"
+ id="use5400"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5239"
+ height="1250"
+ width="1250"
+ transform="translate(12,54)"
+ id="use5402"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5261"
+ x="0"
+ y="0"
+ id="use5410"
+ transform="translate(13,43)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5261"
+ height="1250"
+ width="1250"
+ transform="translate(13,46)"
+ id="use5412"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5261"
+ height="1250"
+ width="1250"
+ transform="translate(13,49)"
+ id="use5414"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 55.5,277.5 56.5,277.5"
+ id="path5523"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-295.3149,24.86123)"
+ id="use5525"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-292.3149,24.86123)"
+ id="use5527"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-289.3149,24.86123)"
+ id="use5529"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-286.3149,24.86123)"
+ id="use5531"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-296.3149,39.86123)"
+ id="use5533"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-293.3149,39.86123)"
+ id="use5535"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-290.3149,39.86123)"
+ id="use5537"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-287.3149,39.86123)"
+ id="use5539"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6078"
+ height="1250"
+ width="1250"
+ transform="translate(-284.3149,39.86123)"
+ id="use5541"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 55.5,279.5 55.5,280.5"
+ id="path5543"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-298.3149,27.86123)"
+ id="use5545"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-298.3149,30.86123)"
+ id="use5547"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-298.3149,33.86123)"
+ id="use5549"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-298.3149,36.86123)"
+ id="use5551"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-283.3149,34.86123)"
+ id="use5553"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-283.3149,31.86123)"
+ id="use5555"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-283.3149,28.86123)"
+ id="use5557"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-283.3149,25.86123)"
+ id="use5560"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path6100"
+ height="1250"
+ width="1250"
+ transform="translate(-283.3149,22.86123)"
+ id="use5563"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="dialog-tile-clones"
+ transform="translate(-0.4999811,-21.5031)"
+ inkscape:label="#edit_create_tiled_clones">
+ <g
+ id="g5745"
+ transform="matrix(1,0,0,0.996869,-59.55772,-28.70668)">
+ <rect
+ style="color:#000000;fill:url(#linearGradient5944);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round"
+ id="rect5747"
+ width="14.99917"
+ height="11.99987"
+ x="115.5577"
+ y="338.8083" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5946);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round"
+ id="rect5749"
+ width="14.99819"
+ height="3.011261"
+ x="115.5588"
+ y="335.7579" />
+ </g>
+ <g
+ transform="matrix(0.600005,0,0,0.599717,25.61153,139.5917)"
+ id="g5803">
+ <g
+ id="g5704"
+ transform="translate(50.5399,79.54113)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5948);stroke-width:0.9999996;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5706"
+ width="8.996808"
+ height="7.996297"
+ x="5.4601"
+ y="205.4404" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5950);fill-rule:evenodd;stroke:url(#linearGradient5952);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5708"
+ width="6.994814"
+ height="5.993324"
+ x="6.46013"
+ y="206.4404" />
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5954);stroke-width:0.9999994;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5711"
+ width="11.99355"
+ height="11.99031"
+ x="8.477812"
+ y="208.4686" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5956);fill-rule:evenodd;stroke:url(#linearGradient5958);stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5713"
+ width="9.982319"
+ height="9.971587"
+ x="9.477811"
+ y="209.4688" />
+ </g>
+ <rect
+ y="293.0437"
+ x="62.0523"
+ height="4.001433"
+ width="5.979028"
+ id="rect5715"
+ style="color:#000000;fill:url(#linearGradient5960);fill-rule:evenodd;stroke:url(#linearGradient5962);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 63.0113,291 C 63.0113,292 63.0113,292 63.0113,292"
+ id="path5717"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6162"
+ height="1250"
+ width="1250"
+ transform="translate(-293.8567,32.29639)"
+ id="use5721"
+ y="0"
+ x="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ d="M 64.0113,290 66.0113,290"
+ id="path5723"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1px"
+ d="M 63,295.9816 63,293.9816 67,293.9816"
+ id="path5725"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="edit-select-original"
+ inkscape:label="#edit_select_original">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient6151);stroke-width:0.9999994;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5972"
+ width="11.99355"
+ height="11.99031"
+ x="58.51771"
+ y="309.5096" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient6146);fill-rule:evenodd;stroke:url(#linearGradient6148);stroke-width:1.0000004;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5974"
+ width="9.982319"
+ height="9.971587"
+ x="59.51771"
+ y="310.5099" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient6122);fill-rule:evenodd;stroke:url(#linearGradient6125);stroke-width:1.0000005;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5976"
+ width="5.979028"
+ height="4.001433"
+ x="61.5523"
+ y="314.5437" />
+ <path
+ id="path5978"
+ d="M 62.5113,312.5 C 62.5113,313.5 62.5113,313.5 62.5113,313.5"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6162"
+ x="0"
+ y="0"
+ id="use5981"
+ transform="translate(-294.3567,53.7964)"
+ width="1250"
+ height="1250" />
+ <path
+ id="path5983"
+ d="M 63.5113,311.5 65.5113,311.5"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5985"
+ d="M 62.5,317.4816 62.5,315.4816 66.5,315.4816"
+ style="fill:none;stroke:#ffffff;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g6161">
+ <rect
+ y="306.4815"
+ x="55.5"
+ height="7.996297"
+ width="8.996808"
+ id="rect5968"
+ style="color:#000000;fill:none;stroke:url(#linearGradient6159);stroke-width:0.9999996;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="307.4814"
+ x="56.50003"
+ height="5.993324"
+ width="6.994814"
+ id="rect5970"
+ style="color:#000000;fill:url(#linearGradient6154);fill-rule:evenodd;stroke:url(#linearGradient6156);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ </g>
+ <g
+ id="text-flow-into-frame"
+ transform="translate(-15.00082,-30.00001)"
+ inkscape:label="#flow_into_frame">
+ <rect
+ y="118.5"
+ x="296.5008"
+ height="15.00001"
+ width="14.99917"
+ id="rect6267"
+ style="color:#000000;fill:url(#linearGradient6369);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round" />
+ <g
+ transform="matrix(0.5,0,0,0.5,149,70)"
+ id="g6352">
+ <path
+ sodipodi:nodetypes="ccccccccccccccccc"
+ d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ id="path6342"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:label="#object_font"
+ id="path6344"
+ d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z"
+ style="fill:url(#linearGradient6371);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ sodipodi:nodetypes="ccccccccccccccccc"
+ id="path6358"
+ d="M 308,126 308,129 310,129 310,130 309,130 309,131 308,131 308,132 307,132 307,131 306,131 306,130 305,130 305,129 307,129 307,126 308,126 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="text-unflow"
+ inkscape:label="#unflow">
+ <rect
+ style="color:#000000;fill:none;stroke:#cc0000;stroke-width:1.0000001;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:1.0000001, 2.0000002"
+ id="rect6375"
+ width="14.99917"
+ height="15.00001"
+ x="281.5"
+ y="110.5" />
+ <g
+ id="g6377"
+ transform="matrix(0.5,0,0,0.5,133.9992,61.99999)">
+ <path
+ id="path6379"
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z"
+ sodipodi:nodetypes="ccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:url(#linearGradient6436);fill-rule:evenodd"
+ d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z"
+ id="path6381"
+ inkscape:label="#object_font"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ sodipodi:nodetypes="ccccccccccccccccc"
+ id="path6428"
+ d="M 290,119 291,119 292.5,120.5 294,119 295,119 295,120 293.5,121.5 295,123 295,124 294,124 292.5,122.5 291,124 290,124 290,123 291.5,121.5 290,120 290,119 Z"
+ style="fill:#c80000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="text-convert-to-regular"
+ inkscape:label="#convert_to_text">
+ <g
+ transform="matrix(0.725945,0,0,0.725944,63.34671,33.14915)"
+ id="g15109">
+ <rect
+ y="135.4703"
+ x="300.4999"
+ height="11.02972"
+ width="11.02971"
+ id="rect15111"
+ style="color:#000000;fill:url(#linearGradient15119);fill-rule:evenodd;stroke:#000000;stroke-width:1.3775157;stroke-linecap:round;stroke-linejoin:round" />
+ <g
+ transform="matrix(0.5,0,0,0.5,153,87)"
+ id="g15113">
+ <path
+ sodipodi:nodetypes="ccccccccccccccccc"
+ d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ id="path15115"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:label="#object_font"
+ id="path15117"
+ d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z"
+ style="fill:url(#linearGradient15121);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <rect
+ ry="0"
+ y="138.493"
+ x="288.493"
+ height="8.006958"
+ width="8.006964"
+ id="rect15125"
+ style="color:#000000;fill:url(#linearGradient15141);fill-rule:evenodd;stroke:#3465a4;stroke-linecap:square;stroke-dasharray:1, 2" />
+ <g
+ transform="matrix(0.362972,0,0,0.362972,181.4162,103.3063)"
+ id="g15127">
+ <path
+ sodipodi:nodetypes="ccccccccccccccccc"
+ d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ id="path15129"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:label="#object_font"
+ id="path15131"
+ d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z"
+ style="fill:url(#linearGradient15135);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="text-unkern"
+ inkscape:label="#remove_manual_kerns">
+ <path
+ id="rect15156"
+ d="M 281.5,153.5 296.4992,153.5 296.4992,168.5 281.5,168.5 281.5,153.5 Z"
+ style="color:#000000;fill:url(#linearGradient15175);fill-rule:evenodd;stroke:#3465a4;stroke-width:1.0000001;stroke-linecap:square;stroke-dasharray:1.0000001, 2.0000002"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.0000001;stroke-linecap:square"
+ d="M 283.5,153.9828 283.5,168 283.5,153.9828 Z"
+ id="path15185"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccc"
+ id="path15187"
+ d="M 290.5,153.9828 290.5,168 290.5,153.9828 Z"
+ style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.0000001;stroke-linecap:square"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.0000001;stroke-linecap:square"
+ d="M 294.461,153.9828 294.461,168 294.461,153.9828 Z"
+ id="path15189"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(0.5,0,0,0.5,133.9992,105)"
+ id="g15195">
+ <path
+ sodipodi:nodetypes="ccccccccccccccccc"
+ d="M 302,115 304,113 304,102 301,102 299,104 298,104 298,100 314,100 314,104 313,104 311,102 308,102 308,113 310,115 310,116 302,116 302,115 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ id="path15197"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:label="#object_font"
+ id="path15199"
+ d="M 304,115 305,114 305,102 307,102 307,114 308,115 304,115 Z"
+ style="fill:url(#linearGradient15213);fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ style="fill:#c80000;fill-rule:evenodd"
+ d="M 290,162 291,162 292.5,163.5 294,162 295,162 295,163 293.5,164.5 295,166 295,167 294,167 292.5,165.5 291,167 290,167 290,166 291.5,164.5 290,163 290,162 Z"
+ id="path15201"
+ sodipodi:nodetypes="ccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="dialog-memory"
+ inkscape:label="#about_memory">
+ <rect
+ style="color:#000000;fill:url(#linearGradient4689);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round"
+ id="rect4657"
+ width="14.99917"
+ height="15.00001"
+ x="331.5008"
+ y="86.5" />
+ <rect
+ y="94"
+ x="332"
+ height="7"
+ width="4.666667"
+ id="rect4691"
+ style="color:#000000;fill:url(#linearGradient4703);fill-rule:evenodd;stroke-width:1.0000007" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient4707);fill-rule:evenodd;stroke-width:1.0000007"
+ id="rect4705"
+ width="4.666667"
+ height="14.00001"
+ x="336.6667"
+ y="86.99999" />
+ <rect
+ y="91"
+ x="341.3333"
+ height="10"
+ width="4.666667"
+ id="rect4715"
+ style="color:#000000;fill:url(#linearGradient4718);fill-rule:evenodd;stroke-width:1.0000007" />
+ </g>
+ <g
+ id="dialog-input-devices"
+ inkscape:label="#input_devices">
+ <g
+ transform="matrix(1,0,0,0.996869,-105.0577,-206.2098)"
+ id="g5739">
+ <rect
+ y="338.8083"
+ x="115.5577"
+ height="11.99987"
+ width="14.99917"
+ id="rect5741"
+ style="color:#000000;fill:url(#linearGradient5750);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="335.7579"
+ x="115.5588"
+ height="3.011261"
+ width="14.99819"
+ id="rect5744"
+ style="color:#000000;fill:url(#linearGradient5752);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round" />
+ </g>
+ <g
+ transform="matrix(1,0,0,1.066667,-679.5,-193.0001)"
+ id="g5768">
+ <rect
+ y="303.75"
+ x="691.5"
+ height="10.31249"
+ width="11"
+ id="rect5771"
+ style="fill:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ d="M 696.7189,305.998 696,305.5938 692,313.5938 702,313.5938 702,312.6563"
+ style="fill:none;stroke:url(#linearGradient5777);stroke-width:0.9682457;stroke-linecap:round;stroke-linejoin:round"
+ id="path5773"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5775"
+ d="M 694.5,309.375 C 696,309.8438 697.5,311.7188 697,313.5938"
+ style="fill:none;stroke:url(#linearGradient5779);stroke-width:0.9682457;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="document-metadata"
+ inkscape:label="#document_metadata">
+ <g
+ id="g5714"
+ transform="matrix(1,0,0,0.996869,-105.057,-226.2067)">
+ <rect
+ style="color:#000000;fill:url(#linearGradient5728);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015693;stroke-linecap:round;stroke-linejoin:round"
+ id="rect5716"
+ width="14.99917"
+ height="11.99987"
+ x="115.5577"
+ y="338.8083" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5730);fill-rule:evenodd;stroke:#000000;stroke-width:1.0015692;stroke-linecap:round;stroke-linejoin:round"
+ id="rect5718"
+ width="14.99819"
+ height="3.011261"
+ x="115.5588"
+ y="335.7579" />
+ </g>
+ <path
+ style="color:#000000;fill:url(#linearGradient5844);fill-rule:evenodd;stroke:url(#linearGradient5846);stroke-width:1.0000011;stroke-linecap:square;stroke-linejoin:round"
+ d="M 12.5,122.5 12.5,113.5 19.5,113.5 23.5,117.5 23.5,122.5"
+ id="path5826"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient5841);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 19.5,113.5 23.5,117.5 19.5,117.5 19.5,113.5 Z"
+ id="path5829"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square"
+ d="M 22.5,122.5 22.5,118.5"
+ id="path5831"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="color-fill"
+ transform="matrix(0.78125,0,0,0.78125,451.845,442.25)"
+ inkscape:label="#g3340">
+ <path
+ id="path30990"
+ d="M 13.0063,24.4482 30.4465,15.9086 C 31.4092,15.4372 31.0551,10.9526 28.9338,6.62049 26.8126,2.28834 23.7236,-0.25897 22.7609,0.212415 L 5.32066,8.75199"
+ style="fill:url(#linearGradient3352);stroke:#000000;stroke-width:1.28"
+ sodipodi:nodetypes="ccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ d="M 459.326,449.367 469.844,444.248 C 471.078,444.895 471.386,445.263 472.077,446.761"
+ id="path4825"
+ sodipodi:nodetypes="ccc"
+ transform="matrix(1.28,0,0,1.28,-578.362,-566.08)"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1.28"
+ d="M 15.3452,14.3489 C 13.4479,-3.0346 8.35128,-2.74598 9.06756,6.76043"
+ id="path31979"
+ sodipodi:nodetypes="cs"
+ inkscape:connector-curvature="0" />
+ <circle
+ style="fill:#c8c8c8;stroke:#2e3436;stroke-width:1.138871;stroke-linejoin:round"
+ id="path31981"
+ transform="matrix(1.12392,0,0,1.12392,0.83338,-2.58525)"
+ cx="12.875"
+ cy="14.875"
+ r="1.3125" />
+ <path
+ style="color:#000000;fill:url(#radialGradient4365);stroke:#000000;stroke-width:1.000001"
+ d="M 456.281,449.062 C 456.213,449.07 456.154,449.096 456.094,449.125 455.133,449.59 455.637,452.694 457.25,456.062 458.238,458.125 459.43,459.799 460.406,460.688 460.405,460.698 460.407,460.708 460.406,460.719 460.337,461.549 459.647,462.428 459.378,463.219 449.286,463.539 450.416,467.696 460.031,467.742 478.573,467.83 478.246,463.266 462.875,463.188 462.602,462.532 462.317,461.864 462.094,461.188 462.821,460.45 462.262,457.533 460.75,454.375 459.238,451.217 457.308,448.951 456.281,449.062 Z"
+ transform="matrix(1.28,0,0,1.28,-578.362,-566.08)"
+ id="path22088"
+ sodipodi:nodetypes="csscscsccsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="matrix(0.941445,0,0,1.002693,-125.0319,-1.597622)"
+ id="draw-trace-background"
+ inkscape:label="#g9319">
+ <rect
+ style="fill:url(#linearGradient9331)"
+ id="rect9329"
+ width="11.68417"
+ height="10.97046"
+ x="-703.2083"
+ y="303.7795"
+ transform="scale(-1,1)" />
+ <rect
+ y="303.7634"
+ x="691.524"
+ height="10.9571"
+ width="11.684"
+ id="rect9321"
+ style="fill:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path9323"
+ d="M 691.5241,314.2513 691.5301,314.75 703.2083,314.7339 703.2086,310.7607 C 700.3774,312.5369 696.3043,314.2513 691.5244,314.2513 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="rectangle-make-corners-sharp"
+ inkscape:label="#squared_corner">
+ <rect
+ y="120"
+ x="500"
+ height="16"
+ width="16"
+ id="rect9834"
+ style="opacity:0.33213;fill:none" />
+ <g
+ id="g11004">
+ <path
+ sodipodi:nodetypes="csccc"
+ id="path8457"
+ d="M 504,122 C 503.9062,124.5 508.2036,125.3952 509,126 510,126.7593 511.5,130.0937 514,130 L 514,122 504,122 Z"
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke-width:2"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1;stroke-dashoffset:0.5"
+ d="M 500,122 514,122 514,135"
+ id="rect8453"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccc"
+ id="path8462"
+ d="M 514,130 514,122 504,122"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-miterlimit:1.5"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="draw-ellipse"
+ inkscape:label="#g8245">
+ <rect
+ y="145.0391"
+ x="450"
+ height="24"
+ width="24"
+ id="rect3417"
+ style="color:#000000;fill:none;stroke-width:1.0000001" />
+ <circle
+ transform="matrix(0.795464,0,0,0.798577,364.999,27.71345)"
+ id="draw_arc1"
+ style="color:#000000;fill:none;stroke:url(#linearGradient6574);stroke-width:1.2546769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ cx="122"
+ cy="162"
+ r="12" />
+ <circle
+ transform="matrix(0.707159,0,0,0.70714,375.7721,42.48712)"
+ id="path5905"
+ style="color:#000000;fill:url(#linearGradient5907);fill-rule:evenodd;stroke:url(#linearGradient5915);stroke-width:1.4141293;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ cx="122"
+ cy="162"
+ r="12" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:1.0000001"
+ id="rect4336"
+ width="24"
+ height="24"
+ x="450"
+ y="145" />
+ <circle
+ style="color:#000000;fill:none;stroke:url(#linearGradient5389);stroke-width:1.2546769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path4338"
+ transform="matrix(0.795464,0,0,0.798577,364.999,27.67435)"
+ cx="122"
+ cy="162"
+ r="12" />
+ </g>
+ <g
+ id="draw-ellipse-whole"
+ style="fill:none"
+ inkscape:label="#reset_circle">
+ <rect
+ y="150"
+ x="500"
+ height="16"
+ width="16"
+ id="rect4298" />
+ <circle
+ style="fill:#b0c5da"
+ id="path4888"
+ cx="508"
+ cy="158"
+ r="6" />
+ <path
+ id="path5285"
+ style="color:#000000;stroke:#c80000;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1, 1"
+ d="M 514,158 508,158 511,153"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <circle
+ id="path5292"
+ style="stroke:#0000ff;stroke-miterlimit:1.5"
+ cx="508"
+ cy="158"
+ r="6" />
+ </g>
+ <g
+ style="fill:none"
+ id="draw-ellipse-segment"
+ transform="translate(20)"
+ inkscape:label="#circle_closed_arc">
+ <rect
+ id="rect4316"
+ width="16"
+ height="16"
+ x="500"
+ y="150" />
+ <path
+ d="m 514,158 a 6,6 0 0 1 -4.95811,5.90885 6,6 0 0 1 -6.68005,-3.85673 A 6,6 0 0 1 505,152.80385 L 508,158 Z"
+ sodipodi:ry="6"
+ sodipodi:rx="6"
+ sodipodi:cy="158"
+ sodipodi:cx="508"
+ id="path4318"
+ style="fill:#b0c5da;stroke:#0000ff;stroke-miterlimit:1.5"
+ sodipodi:type="arc"
+ sodipodi:start="0"
+ sodipodi:end="4.18879" />
+ </g>
+ <g
+ transform="translate(40)"
+ id="draw-ellipse-arc"
+ style="fill:none"
+ inkscape:label="#circle_open_arc">
+ <rect
+ y="150"
+ x="500"
+ height="16"
+ width="16"
+ id="rect4326" />
+ <path
+ sodipodi:end="4.18879"
+ sodipodi:start="0"
+ sodipodi:type="arc"
+ style="fill:#b0c5da;stroke:#0000ff;stroke-miterlimit:1.5"
+ id="path4328"
+ sodipodi:cx="508"
+ sodipodi:cy="158"
+ sodipodi:rx="6"
+ sodipodi:ry="6"
+ d="m 514,158 a 6,6 0 0 1 -4.95811,5.90885 6,6 0 0 1 -6.68005,-3.85673 A 6,6 0 0 1 505,152.80385"
+ sodipodi:open="true" />
+ </g>
+ <g
+ id="draw-cuboid"
+ inkscape:label="#draw_3dbox">
+ <path
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1.0492821px;stroke-linejoin:round"
+ d="M 604.0245,114.9402 592.1873,119.5308 591.9578,132.5813 600.8438,138.7786 612.1565,135.1716 612.3859,122.613 604.0245,114.9402 Z"
+ id="path5192"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="115"
+ x="590"
+ height="24"
+ width="24"
+ id="rect4344"
+ style="color:#000000;fill:none;stroke-width:1.0000001" />
+ <path
+ d="M 592.431,132.3014 603.7065,128.3707 603.9313,115.491 592.6477,119.8876 592.431,132.3014 Z"
+ style="fill:url(#linearGradient5190);fill-rule:evenodd"
+ id="path4628"
+ inkscape:box3dface="XYfront"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 592.431,132.3014 603.7065,128.3707 611.6821,134.7794 600.9065,138.2261 592.431,132.3014 Z"
+ style="fill:url(#linearGradient5187);fill-rule:evenodd"
+ id="path4630"
+ inkscape:box3dface="XZtop"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 603.7065,128.3707 611.6821,134.7794 611.891,122.8084 603.9313,115.491 603.7065,128.3707 Z"
+ style="fill:url(#linearGradient5184);fill-rule:evenodd"
+ id="path4633"
+ inkscape:box3dface="YZleft"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5202"
+ d="M 603.8375,116.1429 593.1947,120.2702 592.9884,132.004 600.9777,137.5758 611.149,134.333 611.3554,123.0416 603.8375,116.1429 Z"
+ style="opacity:0.5;fill:none;stroke:#ffffff;stroke-width:1.0657545;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="perspective-parallel"
+ transform="matrix(1,0,0,1.090725,-0.3693,-12.92106)"
+ inkscape:label="#toggle_vp_x">
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 646.3693,119.7089 646.3693,140.2013"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round"
+ id="path4997"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 653.3817,119.7089 653.3817,140.2013"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round"
+ id="path4979"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="toggle_vp_y"
+ transform="matrix(1,0,0,1.090725,39.6307,-12.92106)">
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 646.3693,119.7089 646.3693,140.2013"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round"
+ id="path4987"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 653.3817,119.7089 653.3817,140.2013"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round"
+ id="path4989"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="toggle_vp_z"
+ transform="matrix(1,0,0,1.090725,79.6307,-12.92106)">
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 646.3693,119.7089 646.3693,140.2013"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round"
+ id="path4993"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 653.3817,119.7089 653.3817,140.2013"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:3.8300321;stroke-linejoin:round"
+ id="path4995"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="3dbox_three_handles"
+ transform="translate(0.225708,-0.461998)">
+ <rect
+ y="117.462"
+ x="753.7743"
+ height="7.406888"
+ width="7.406888"
+ id="rect6683"
+ style="fill:#000000" />
+ <rect
+ style="fill:#000000"
+ id="rect7268"
+ width="7.406888"
+ height="7.406888"
+ x="759.7743"
+ y="131.462" />
+ <rect
+ y="119.462"
+ x="767.7743"
+ height="7.406888"
+ width="7.406888"
+ id="rect7270"
+ style="fill:#000000" />
+ </g>
+ <g
+ id="3dbox_four_handles"
+ transform="translate(0.225708,0.538002)">
+ <rect
+ style="fill:#000000"
+ id="rect7277"
+ width="7.406888"
+ height="7.406888"
+ x="793.7743"
+ y="117.462" />
+ <rect
+ y="117.462"
+ x="807.7743"
+ height="7.406888"
+ width="7.406888"
+ id="rect7279"
+ style="fill:#000000" />
+ <rect
+ style="fill:#000000"
+ id="rect7281"
+ width="7.406888"
+ height="7.406888"
+ x="807.7743"
+ y="131.462" />
+ <rect
+ y="131.462"
+ x="793.7743"
+ height="7.406888"
+ width="7.406888"
+ id="rect7283"
+ style="fill:#000000" />
+ </g>
+ <g
+ transform="matrix(0.9610923,0,0,0.9805424,517.7012,-120.9824)"
+ id="tool-tweak"
+ inkscape:label="#g4398">
+ <rect
+ style="color:#000000;fill:none"
+ id="rect4400"
+ width="24.97159"
+ height="24.47625"
+ x="-110.5099"
+ y="180.0235" />
+ <path
+ style="fill:url(#linearGradient4415);stroke:#000000;stroke-width:0.9185374"
+ d="M -109.5169,193.9456 C -101.3004,195.6369 -104.3945,186.0956 -98.80037,182.3615 -97.07122,181.2073 -92.56485,181.5557 -91.19654,184.6577 -90.17791,186.9669 -90.62355,188.4369 -92.0774,187.9956 -93.60686,187.5313 -93.32031,185.6852 -95.89519,186.1826 -97.19769,186.4342 -97.97739,188.526 -97.00432,190.8739 -95.90656,193.5227 -93.65232,195.2966 -88.05792,193.9456 L -88.05792,203.5432 -109.5169,203.5432 -109.5169,193.9456 Z"
+ id="rect4412"
+ sodipodi:nodetypes="cssssscccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:0.9185374"
+ d="M -96.8577,182.6385 C -99.56837,183.1905 -100.8754,186.0548 -101.7054,188.5422 -102.4313,190.8017 -103.119,193.5659 -105.4493,194.5527 -106.46,194.9409 -108.4105,195.0975 -109.4854,194.9353 L -109.5145,203.4936 -88.0312,203.5536 -88.0312,194.9954 C -90.81344,195.4233 -93.95419,195.3603 -96.24656,193.5257 -98.26239,191.8375 -98.92499,188.4343 -97.46883,186.1775 -96.01814,184.4935 -93.0031,185.1955 -92.05592,187.0774 -91.27207,187.4754 -91.52566,186.3231 -91.65649,185.8702 -92.28666,183.7115 -94.67857,182.3941 -96.8577,182.6385 Z"
+ id="path4416"
+ sodipodi:nodetypes="ccccccccccsc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(436.9762,-119.9465)"
+ id="path-tweak-push"
+ inkscape:label="#g4416">
+ <rect
+ style="color:#000000;fill:none"
+ id="rect4418"
+ width="16"
+ height="16"
+ x="-45"
+ y="175" />
+ <path
+ style="color:#000000;fill:url(#linearGradient4428);stroke-width:0.6138721"
+ d="M -44.25871,182.3053 C -41.14192,182.3454 -41.65281,178.8302 -37.00556,178.8744 -32.35831,178.9187 -33.7846,182.4061 -29.84463,182.3053 L -29.84463,186.3802 C -33.3901,186.3802 -34.1418,182.6887 -37.01137,182.6849 -40.19964,182.6809 -40.7966,186.3802 -44.25871,186.3802 L -44.25871,182.3053 Z"
+ id="path4426"
+ sodipodi:nodetypes="czccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cscczc"
+ id="path4444"
+ d="M -29.84463,186.3802 C -33.3901,186.3802 -34.1418,182.6887 -37.01137,182.6849 -40.19964,182.6809 -40.7966,186.3802 -44.25871,186.3802 M -44.25871,182.3053 C -41.14192,182.3454 -41.65281,178.8302 -37.00556,178.8744 -32.35831,178.9187 -33.7846,182.4061 -29.84463,182.3053"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:label="#g4416"
+ id="path-tweak-grow"
+ transform="translate(416.9762,-119.9465)">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4432"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="czccscc"
+ id="path4435"
+ d="M -44.25871,182.0349 C -41.14192,182.075 -40.49264,178.9233 -37.00556,178.9565 -33.51848,178.9896 -33.7846,182.1357 -29.84463,182.0349 L -29.84463,186.1097 C -33.3901,186.1097 -34.1418,188.966 -37.01137,188.9623 -40.19964,188.9583 -40.7966,186.1097 -44.25871,186.1097 L -44.25871,182.0349 Z"
+ style="color:#000000;fill:url(#linearGradient4437);stroke-width:0.6138721"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721"
+ d="M -29.84463,186.1097 C -33.3901,186.1097 -34.1418,188.966 -37.01137,188.9623 -40.19964,188.9583 -40.7966,186.1097 -44.25871,186.1097 M -44.25871,182.0349 C -41.14192,182.075 -40.49264,178.9233 -37.00556,178.9565 -33.51848,178.9896 -33.7846,182.1357 -29.84463,182.0349"
+ id="path4442"
+ sodipodi:nodetypes="cscczc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(396.9762,-119.9465)"
+ id="path-tweak-shrink"
+ inkscape:label="#g4416">
+ <rect
+ style="color:#000000;fill:none"
+ id="rect4443"
+ width="16"
+ height="16"
+ x="-45"
+ y="175" />
+ <path
+ style="color:#000000;fill:url(#linearGradient4447);stroke-width:0.6138721"
+ d="M -29.84463,186.6535 C -33.3901,186.6535 -34.51329,184.3364 -37.01137,184.3331 -39.50944,184.3301 -40.7966,186.6535 -44.25871,186.6535 L -44.25871,184.0994 -44.25871,181.3493 C -41.14192,181.3894 -40.04563,183.5265 -37.00556,183.5555 -33.96549,183.5844 -33.7846,181.4501 -29.84463,181.3493"
+ id="path4445"
+ sodipodi:nodetypes="czccczc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="czcczc"
+ id="path4440"
+ d="M -44.25871,181.3493 C -41.14192,181.3894 -40.04563,183.2325 -37.00556,183.2614 -33.96549,183.2903 -33.7846,181.4501 -29.84463,181.3493 M -29.84463,186.6535 C -33.3901,186.6535 -34.51329,184.5045 -37.01137,184.5012 -39.50944,184.4982 -40.7966,186.6535 -44.25871,186.6535"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(416.9762,-139.9465)"
+ id="path-tweak-roughen"
+ inkscape:label="#g4416">
+ <rect
+ style="color:#000000;fill:none"
+ id="rect4446"
+ width="16"
+ height="16"
+ x="-45"
+ y="175" />
+ <path
+ style="color:#000000;fill:url(#linearGradient4453);stroke-width:0.6138721"
+ d="M -44.25871,180.0349 -42.17829,181.5673 -41.23529,179.6783 -40.30299,181.2751 -37.44512,178.1377 -35.9,180.3197 -34.80075,179.1774 -32.13533,181.6011 -29.84463,179.9331 -29.84463,183.0536 -29.84463,184.0723 -29.84463,185.091 -29.84463,186.1097 -32.07052,187.013 -34.08315,186.3631 -32.00367,188.7335 -37.10857,186.5805 -40.25586,187.5167 -39.27382,184.4013 -42.11409,187.2305 -44.25871,186.1097 -44.25871,185.091 -44.25871,184.0723 -44.25871,183.0536 -44.25871,180.0349 Z"
+ id="path4448"
+ sodipodi:nodetypes="ccccccccccccccccccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccccccccccccccc"
+ id="path4576"
+ d="M -29.84463,186.1097 -32.07052,187.013 -34.08315,186.3631 -32.00367,188.7335 -37.10857,186.5805 -40.25586,187.5167 -39.27382,184.4013 -42.11409,187.2305 -44.25871,186.1097 M -44.25871,180.0349 -42.17829,181.5673 -41.23529,179.6783 -40.30299,181.2751 -37.44512,178.1377 -35.9,180.3197 -34.80075,179.1774 -32.13533,181.6011 -29.84463,179.9331"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="document-import-ocal"
+ inkscape:label="#ocal_import"
+ transform="translate(-3.450267,2.75434)">
+ <use
+ xlink:href="#g5113"
+ height="1250"
+ width="1250"
+ transform="translate(2.639605,16.28531)"
+ id="use4598"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path4685"
+ transform="translate(14.58777,-33.04874)"
+ x="0"
+ y="0"
+ id="use5366-8"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ id="document-export-ocal"
+ inkscape:label="#ocal_export">
+ <g
+ id="g5113"
+ transform="matrix(1.121863,0,0,0.8467469,-1.696936,21.3021)">
+ <rect
+ inkscape:export-ydpi="90.360001"
+ inkscape:export-xdpi="90.360001"
+ inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png"
+ ry="2.792642"
+ transform="matrix(0.8657253,-0.5005195,0.214431,0.9767391,0,0)"
+ rx="3.259387"
+ y="145.0049"
+ x="-23.34781"
+ height="11.80559"
+ width="8.207668"
+ id="rect5675"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2102582" />
+ <rect
+ inkscape:export-ydpi="90.360001"
+ inkscape:export-xdpi="90.360001"
+ inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png"
+ ry="2.217725"
+ transform="matrix(0.8657253,-0.5005195,0.214431,0.9767391,0,0)"
+ rx="2.588382"
+ y="146.288"
+ x="-22.55011"
+ height="9.375189"
+ width="6.517971"
+ id="rect5679"
+ style="fill:#bf0000;fill-rule:evenodd;stroke-width:0.7941308pt" />
+ <rect
+ inkscape:export-ydpi="90.360001"
+ inkscape:export-xdpi="90.360001"
+ inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png"
+ ry="3.032427"
+ rx="3.851753"
+ y="150.4802"
+ x="14.50112"
+ height="12.70694"
+ width="7.830238"
+ id="rect5668"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2130624" />
+ <rect
+ inkscape:export-ydpi="90.360001"
+ inkscape:export-xdpi="90.360001"
+ inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png"
+ ry="2.408143"
+ rx="3.058795"
+ y="151.8613"
+ x="15.26213"
+ height="10.09097"
+ width="6.218232"
+ id="rect5670"
+ style="fill:#ff7f00;fill-rule:evenodd;stroke-width:0.7941308pt" />
+ <rect
+ inkscape:export-ydpi="90.360001"
+ inkscape:export-xdpi="90.360001"
+ inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png"
+ ry="2.946012"
+ transform="matrix(0.9158505,0.4015194,-0.1642153,0.9864245,0,0)"
+ rx="3.542479"
+ y="134.1788"
+ x="44.10332"
+ height="12.43601"
+ width="8.253802"
+ id="rect5662"
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2164044" />
+ <rect
+ inkscape:export-ydpi="90.360001"
+ inkscape:export-xdpi="90.360001"
+ inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png"
+ ry="2.339518"
+ transform="matrix(0.9158505,0.4015194,-0.1642153,0.9864245,0,0)"
+ rx="2.813192"
+ y="135.5302"
+ x="44.90545"
+ height="9.875807"
+ width="6.554592"
+ id="rect5664"
+ style="fill:#f3e533;fill-rule:evenodd;stroke-width:0.7941308pt" />
+ </g>
+ <use
+ xlink:href="#path4685"
+ transform="translate(6.008357,-49.39594)"
+ x="0"
+ y="0"
+ id="use5366"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ inkscape:label="#g4416"
+ id="path-tweak-attract"
+ transform="translate(436.9762,-79.9465)">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4494"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="czccscc"
+ id="path4496"
+ d="M -44.25871,185.7795 C -41.14192,185.805 -41.65281,183.5615 -37.00556,183.5898 -32.35831,183.618 -33.7846,185.8438 -29.84463,185.7795 L -29.84463,188.3802 C -33.3901,188.3802 -34.1418,184.9545 -37.01137,184.9521 -40.19964,184.9491 -40.7966,188.3802 -44.25871,188.3802 L -44.25871,185.7795 Z"
+ style="color:#000000;fill:url(#linearGradient4501);stroke-width:0.6138721"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721"
+ d="M -29.84463,188.3802 C -33.3901,188.3802 -34.1418,185.0054 -37.01137,185.003 -40.19964,185 -40.7966,188.3802 -44.25871,188.3802 M -44.25871,185.7795 C -41.14192,185.805 -41.65281,183.5615 -37.00556,183.5898 -32.35831,183.618 -33.7846,185.8438 -29.84463,185.7795"
+ id="path4499"
+ sodipodi:nodetypes="cscczc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient4507);stroke-width:0.6138721"
+ d="M -44.25871,180.1902 C -41.14192,180.1646 -41.65281,182.4081 -37.00556,182.3799 -32.35831,182.3517 -33.7846,180.1259 -29.84463,180.1902 L -29.84463,177.5895 C -33.3901,177.5895 -34.1418,180.7605 -37.01137,180.7629 -40.19964,180.7659 -40.7966,177.5895 -44.25871,177.5895 L -44.25871,180.1902 Z"
+ id="path4503"
+ sodipodi:nodetypes="czccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cscczc"
+ id="path4505"
+ d="M -29.84463,177.5895 C -33.3901,177.5895 -34.1418,180.8624 -37.01137,180.8648 -40.19964,180.8678 -40.7966,177.5895 -44.25871,177.5895 M -44.25871,180.1902 C -41.14192,180.1646 -41.65281,182.4081 -37.00556,182.3799 -32.35831,182.3517 -33.7846,180.1259 -29.84463,180.1902"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(416.9762,-79.9465)"
+ id="path-tweak-repel"
+ inkscape:label="#g4416">
+ <rect
+ style="color:#000000;fill:none"
+ id="rect4511"
+ width="16"
+ height="16"
+ x="-45"
+ y="175" />
+ <path
+ style="color:#000000;fill:url(#linearGradient4521);stroke-width:0.6138721"
+ d="M -44.25871,186.1902 C -41.14192,186.1646 -41.65281,188.4081 -37.00556,188.3799 -32.35831,188.3517 -33.7846,186.1259 -29.84463,186.1902 L -29.84463,183.5895 C -33.3901,183.5895 -34.1418,186.7096 -37.01137,186.712 -40.19964,186.715 -40.7966,183.5895 -44.25871,183.5895 L -44.25871,186.1902 Z"
+ id="path4513"
+ sodipodi:nodetypes="czccscc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cscczc"
+ id="path4515"
+ d="M -29.84463,183.5895 C -33.3901,183.5895 -34.1418,186.7605 -37.01137,186.7629 -40.19964,186.7659 -40.7966,183.5895 -44.25871,183.5895 M -44.25871,186.1902 C -41.14192,186.1646 -41.65281,188.4081 -37.00556,188.3799 -32.35831,188.3517 -33.7846,186.1259 -29.84463,186.1902"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="czccscc"
+ id="path4517"
+ d="M -44.25871,179.7795 C -41.14192,179.805 -41.65281,177.5615 -37.00556,177.5898 -32.35831,177.618 -33.7846,179.8438 -29.84463,179.7795 L -29.84463,182.3802 C -33.3901,182.3802 -34.1418,179.2601 -37.01137,179.2577 -40.19964,179.2547 -40.7966,182.3802 -44.25871,182.3802 L -44.25871,179.7795 Z"
+ style="color:#000000;fill:url(#linearGradient4523);stroke-width:0.6138721"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:0.6138721"
+ d="M -29.84463,182.3802 C -33.3901,182.3802 -34.1418,179.2466 -37.01137,179.2442 -40.19964,179.2412 -40.7966,182.3802 -44.25871,182.3802 M -44.25871,179.7795 C -41.14192,179.805 -41.65281,177.5615 -37.00556,177.5898 -32.35831,177.618 -33.7846,179.8438 -29.84463,179.7795"
+ id="path4519"
+ sodipodi:nodetypes="cscczc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ inkscape:label="#g4416"
+ id="object-tweak-paint"
+ transform="translate(416.9762,-59.9465)">
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4527"
+ style="fill:none" />
+ <rect
+ style="fill:#cccccc"
+ id="rect4542"
+ width="4.069275"
+ height="4.069275"
+ x="-42.99393"
+ y="176.8167" />
+ <rect
+ y="176.8167"
+ x="34.85538"
+ height="4.069275"
+ width="4.069275"
+ id="rect4544"
+ style="fill:#999999"
+ transform="scale(-1,1)" />
+ <rect
+ style="fill:#cccccc"
+ id="rect4547"
+ width="4.069275"
+ height="4.069275"
+ x="-34.85538"
+ y="176.8167" />
+ <rect
+ y="-184.9553"
+ x="-42.99393"
+ height="4.069275"
+ width="4.069275"
+ id="rect4549"
+ style="fill:#999999"
+ transform="scale(1,-1)" />
+ <rect
+ transform="scale(-1)"
+ style="fill:#000000"
+ id="rect4551"
+ width="4.069275"
+ height="4.069275"
+ x="34.85538"
+ y="-184.9553" />
+ <rect
+ y="-184.9553"
+ x="-34.85538"
+ height="4.069275"
+ width="4.069275"
+ id="rect4553"
+ style="fill:#999999"
+ transform="scale(1,-1)" />
+ <rect
+ style="fill:#cccccc"
+ id="rect4555"
+ width="4.069275"
+ height="4.069275"
+ x="-42.99393"
+ y="184.9553" />
+ <rect
+ y="184.9553"
+ x="34.85538"
+ height="4.069275"
+ width="4.069275"
+ id="rect4557"
+ style="fill:#999999"
+ transform="scale(-1,1)" />
+ <rect
+ style="fill:#cccccc"
+ id="rect4559"
+ width="4.069275"
+ height="4.069275"
+ x="-34.85538"
+ y="184.9553" />
+ </g>
+ <g
+ transform="translate(436.9762,-59.9465)"
+ id="object-tweak-jitter-color"
+ inkscape:label="#g4416">
+ <rect
+ style="color:#000000;fill:none"
+ id="rect4563"
+ width="16"
+ height="16"
+ x="-45"
+ y="175" />
+ <rect
+ y="176.8852"
+ x="-43.13489"
+ height="4.069275"
+ width="4.069275"
+ id="rect4565"
+ style="fill:#ffffff" />
+ <rect
+ style="fill:#4d4d4d"
+ id="rect4567"
+ width="4.069275"
+ height="4.069275"
+ x="-43.13489"
+ y="185.0237" />
+ <rect
+ y="-189.093"
+ x="30.92706"
+ height="4.069275"
+ width="4.069275"
+ id="rect4569"
+ style="fill:#808080"
+ transform="scale(-1)" />
+ <rect
+ style="fill:#e6e6e6"
+ id="rect4571"
+ width="4.069275"
+ height="4.069275"
+ x="-34.99632"
+ y="-180.9545"
+ transform="scale(1,-1)" />
+ <rect
+ y="-185.0237"
+ x="34.99634"
+ height="4.069275"
+ width="4.069275"
+ id="rect4573"
+ style="fill:#cccccc"
+ transform="scale(-1)" />
+ <rect
+ transform="scale(1,-1)"
+ style="fill:#999999"
+ id="rect4575"
+ width="4.069275"
+ height="4.069275"
+ x="-39.06561"
+ y="-180.9545" />
+ <rect
+ y="-185.0237"
+ x="30.92705"
+ height="4.069275"
+ width="4.069275"
+ id="rect4577"
+ style="fill:#ffffff"
+ transform="scale(-1)" />
+ <rect
+ style="fill:#b3b3b3"
+ id="rect4579"
+ width="4.069275"
+ height="4.069275"
+ x="-39.06561"
+ y="185.0237" />
+ <rect
+ y="180.9545"
+ x="-43.13489"
+ height="4.069275"
+ width="4.069275"
+ id="rect4581"
+ style="fill:#b3b3b3" />
+ </g>
+ <g
+ id="path-effect-parameter-next"
+ inkscape:label="#g10193"
+ transform="translate(15.99998)">
+ <path
+ style="fill:#ffffff;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linejoin:round"
+ d="m 761.92919,60.211353 c -1.32341,4.580447 0.575,6.568469 0.86301,6.631127 0.62443,0.135846 3.69389,-0.81114 4.25578,-1.498942 -0.70234,-0.766801 -1.52441,-1.24741 -2.62089,-1.996552 -0.95575,-0.653 -2.16866,-1.546481 -2.4979,-3.135633 z m 2.52868,-1.193129 c -0.25047,0.796235 -0.15365,1.644793 0.24207,2.343926 0.33513,0.594251 0.85446,1.029162 1.46236,1.317271 0.53202,0.246495 1.12656,0.367043 1.75106,0.359875 -1.46709,-0.885428 -2.33538,-1.573292 -2.90249,-2.449507 -0.52028,-0.803862 -0.55729,-1.474542 -0.553,-1.571565 z m 2.79833,-1.033603 c -0.96591,2.046206 0.41646,2.774067 1.73395,3.111081 -1.31165,-1.020136 -1.91033,-2.98174 -1.73395,-3.111081 z m 3.52583,-2.202592 c -0.58406,0.33612 -0.50861,1.385607 -0.77803,1.762893 -0.52145,0.730197 -1.06007,0.851766 -0.78009,1.43544 0.3733,0.778244 0.5096,0.37663 1.51603,0.473729 0.29376,0.02834 1.26345,0.967915 1.5502,0.916275 -0.98342,-1.544213 -1.54495,-2.970008 -1.50811,-4.588337 z"
+ id="path9858"
+ inkscape:path-effect="#path-effect9860"
+ inkscape:original-d="M 762.7922,66.84248 C 763.6022,63.11924 765.4886,60.07306 771.5388,58.08446"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path9256"
+ d="M 762.5,68.5 C 763.3058,62.01571 768.0747,58.5078 773.5,57.5"
+ style="fill:none;stroke:#008000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none"
+ id="rect9258"
+ width="16"
+ height="16"
+ x="759.9762"
+ y="55.0535" />
+ <use
+ xlink:href="#g6043"
+ height="1250"
+ width="1250"
+ id="use9872"
+ y="0"
+ x="0"
+ transform="translate(760,-189)" />
+ <use
+ xlink:href="#rect10675"
+ transform="translate(805.0318,-128.6983)"
+ x="0"
+ y="0"
+ id="use10185"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect10675"
+ height="1250"
+ width="1250"
+ id="use10187"
+ y="0"
+ x="0"
+ transform="translate(793.0318,-116.6983)" />
+ </g>
+ <g
+ id="grid-rectangular"
+ transform="translate(-94,-28)"
+ inkscape:label="#grid_xy">
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5235"
+ d="M 305.5,421.5 305.5,436.5"
+ style="fill:none;stroke:#0000ff;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5235"
+ x="0"
+ y="0"
+ id="use5238"
+ transform="translate(4)"
+ width="1250"
+ height="1250"
+ style="stroke-linecap:round" />
+ <use
+ xlink:href="#path5235"
+ height="1250"
+ width="1250"
+ transform="translate(8)"
+ id="use5244"
+ y="0"
+ x="0"
+ style="stroke-linecap:round" />
+ <use
+ xlink:href="#path5235"
+ x="0"
+ y="0"
+ id="use5246"
+ transform="translate(12)"
+ width="1250"
+ height="1250"
+ style="stroke-linecap:round" />
+ <path
+ style="fill:none;stroke:#0000ff;stroke-linecap:round"
+ d="M 319.5,423.5 304.5,423.5"
+ id="path5252"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5252"
+ x="0"
+ y="0"
+ id="use5254"
+ transform="translate(0,4)"
+ width="1250"
+ height="1250"
+ style="stroke-linecap:round" />
+ <use
+ xlink:href="#path5252"
+ height="1250"
+ width="1250"
+ transform="translate(0,8)"
+ id="use5257"
+ y="0"
+ x="0"
+ style="stroke-linecap:round" />
+ <use
+ xlink:href="#path5252"
+ x="0"
+ y="0"
+ id="use5259"
+ transform="translate(0,12)"
+ width="1250"
+ height="1250"
+ style="stroke-linecap:round" />
+ </g>
+ <g
+ id="grid-axonometric"
+ inkscape:label="#grid_axonom"
+ transform="translate(-94,-28)">
+ <path
+ style="fill:none;stroke:#0000ff;stroke-linecap:round"
+ d="M 332.5,421.5 332.5,436.5"
+ id="path4674"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5266"
+ d="M 342.5,421.5 342.5,436.5"
+ style="fill:none;stroke:#0000ff;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#0000ff;stroke-linecap:round"
+ d="M 337.5,421.5 337.5,436.5"
+ id="path5268"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path4720"
+ d="M 330.4851,424.4741 345.5008,433.1434"
+ style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round"
+ d="M 330.4321,430.3454 341.0657,436.4847"
+ id="path5309"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5311"
+ d="M 335.1528,421.4521 345.4605,427.4032"
+ style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5313"
+ d="M 330.4332,426.6692 339.4477,421.4646"
+ style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round"
+ d="M 330.4696,432.5182 345.4713,423.857"
+ id="path5315"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5317"
+ d="M 333.6366,436.5647 345.5367,429.6942"
+ style="fill:none;stroke:#0000ff;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="transform-move-horizontal"
+ transform="translate(-511.4352,-131.247)"
+ inkscape:label="#arrows_hor">
+ <rect
+ transform="translate(348.4108,47.248)"
+ y="270"
+ x="895"
+ height="24"
+ width="24"
+ id="rect5457"
+ style="color:#000000;fill:none;stroke-width:1px" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 1248.435,332.2471 1248.435,331.2471 1260.435,331.2471 1260.435,329.2471 1263.435,331.7471 1260.435,334.2471 1260.435,332.2471 1248.435,332.2471 Z"
+ id="path5435"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g5384"
+ transform="translate(-10.01187,-3.897705e-5)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5727);stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3619"
+ width="8.974897"
+ height="7.990791"
+ x="1267.947"
+ y="319.7563" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5729);fill-rule:evenodd;stroke:url(#linearGradient5731);stroke-width:0.9999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3621"
+ width="6.997538"
+ height="5.995614"
+ x="1268.938"
+ y="320.7514" />
+ </g>
+ <use
+ xlink:href="#g5384"
+ style="opacity:0.5"
+ height="1250"
+ width="1250"
+ transform="translate(-13.97489)"
+ id="use6276"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="transform-scale-horizontal"
+ inkscape:label="#transform_scale_hor"
+ transform="translate(-142.0084,-53.992)">
+ <g
+ id="g6303"
+ transform="translate(0,-0.0070343)">
+ <rect
+ y="244.5435"
+ x="906.5059"
+ height="14.95563"
+ width="20.98823"
+ id="rect6287"
+ style="color:#000000;fill:url(#linearGradient5733);fill-rule:evenodd;stroke:url(#linearGradient5735);stroke-width:0.9999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="243.515"
+ x="905.5084"
+ height="16.98404"
+ width="22.98326"
+ id="rect6285"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5737);stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ style="opacity:0.5"
+ id="g12100"
+ transform="matrix(1,0,0,2.125424,-355.4347,-436.1096)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5739);stroke-width:0.685926;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect12102"
+ width="8.974897"
+ height="7.990791"
+ x="1267.947"
+ y="319.7563" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5741);fill-rule:evenodd;stroke:url(#linearGradient5743);stroke-width:0.6859255;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect12104"
+ width="6.997538"
+ height="6.940222"
+ x="1268.938"
+ y="320.2997" />
+ </g>
+ <path
+ id="path5628"
+ d="M 905.9609,255.5794 908.9609,253.0794 908.9609,255.0794 925.0391,255.0794 925.0391,253.0794 928.0391,255.5794 925.0391,258.0794 925.0391,256.0794 908.9609,256.0794 908.9609,258.0794 905.9609,255.5794 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="ccccccccccc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="240"
+ x="905"
+ height="24"
+ width="24"
+ id="rect5634"
+ style="color:#000000;opacity:0.5513197;fill:none;stroke-width:1px" />
+ </g>
+ <g
+ id="transform-rotate"
+ inkscape:label="#transform_rotate"
+ transform="matrix(-1,0,0,1,1753.997,-53.89532)">
+ <use
+ xlink:href="#use6342"
+ style="opacity:0.5"
+ height="1250"
+ width="1250"
+ transform="rotate(-45,916.6665,253.528)"
+ id="use6356"
+ y="0"
+ x="0" />
+ <rect
+ y="240"
+ x="905"
+ height="24"
+ width="24"
+ id="rect5743"
+ style="color:#000000;opacity:0.5513197;fill:none;stroke-width:1px" />
+ <path
+ id="path5749"
+ d="M 907,262 907,259 905,259 907.5,256 910,259 908,259 908,262 911,262 911,263 908,263 907,262 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="ccccccccccc"
+ inkscape:connector-curvature="0" />
+ <g
+ id="use6342"
+ transform="rotate(45,904.9224,254.0152)">
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5757);stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6346"
+ width="14.99428"
+ height="9.989127"
+ x="905.7186"
+ y="240.2337" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient5759);fill-rule:evenodd;stroke:url(#linearGradient5762);stroke-width:0.9999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6348"
+ width="12.98509"
+ height="7.990848"
+ x="906.7204"
+ y="241.2301" />
+ </g>
+ <use
+ xlink:href="#path5749"
+ height="1250"
+ width="1250"
+ transform="rotate(180,917,253.9995)"
+ id="use6358"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="transform-skew-horizontal"
+ inkscape:label="#transform_scew_hor"
+ transform="matrix(-1,0,0,1,1723.032,-54.0012)">
+ <g
+ id="g6663"
+ style="opacity:0.5">
+ <rect
+ y="246.4982"
+ x="911.4628"
+ height="11.00354"
+ width="11.07448"
+ id="rect6417"
+ style="color:#000000;fill:url(#linearGradient5745);fill-rule:evenodd;stroke:url(#linearGradient5747);stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="245.4988"
+ x="910.4678"
+ height="13.00241"
+ width="13.0645"
+ id="rect6419"
+ style="color:#000000;fill:none;stroke:url(#linearGradient5749);stroke-width:0.9999979;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <rect
+ y="240"
+ x="905"
+ height="24"
+ width="24"
+ id="rect6423"
+ style="color:#000000;opacity:0.5513197;fill:none;stroke-width:1px" />
+ <path
+ sodipodi:nodetypes="cccccccc"
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 926,242 926,240 929,242.5 926,245 926,243 923,243 923,242.0003 926,242 Z"
+ id="use6595"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use6595"
+ height="1250"
+ width="1250"
+ transform="rotate(180,917,252)"
+ id="use6602"
+ y="0"
+ x="0" />
+ <g
+ id="g6667"
+ transform="matrix(1.008867,0,-0.759374,1,183.2271,0)">
+ <rect
+ style="color:#000000;fill:url(#linearGradient5751);fill-rule:evenodd;stroke:url(#linearGradient5753);stroke-width:0.9956706;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6669"
+ width="11.07448"
+ height="11.00519"
+ x="907.1069"
+ y="246.5351"
+ transform="matrix(1,0,0.017299,0.9998504,0,0)" />
+ <rect
+ style="color:#000000;fill:none;stroke:url(#linearGradient5755);stroke-width:0.9956684;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6671"
+ width="13.0645"
+ height="13.00435"
+ x="906.1118"
+ y="245.5355"
+ transform="matrix(1,0,0.017299,0.9998504,0,0)" />
+ </g>
+ </g>
+ <g
+ id="show-path-outline"
+ transform="translate(842.9337,-119.9172)"
+ inkscape:label="#nodes_show_helperpath">
+ <path
+ style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -42.51871,188.4465 C -42.51871,182.9474 -41.84309,175.4698 -31.51871,177.4465 -29.7078,177.7932 -31.18387,189.1883 -42.51871,188.4465"
+ id="path4756"
+ sodipodi:nodetypes="csc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4758"
+ style="fill:none" />
+ <use
+ xlink:href="#rect4374"
+ height="1250"
+ width="1250"
+ id="use4760"
+ y="0"
+ x="0"
+ transform="translate(-4.9762,-0.0534998)" />
+ <use
+ xlink:href="#rect4374"
+ height="1250"
+ width="1250"
+ id="use4762"
+ y="0"
+ x="0"
+ transform="translate(5.981293,-11.02417)" />
+ </g>
+ <g
+ id="randomize"
+ transform="translate(-174.6231,-48.06162)">
+ <rect
+ y="208"
+ x="777.8536"
+ height="24"
+ width="24"
+ id="rect7476"
+ style="fill:none;stroke-width:1.0000001" />
+ <g
+ id="g4914"
+ transform="translate(5.853577,2.75)">
+ <path
+ id="path4908"
+ d="M 773,210.5 773,223 784,228.5 795,223 795,210.5 784,215 773,210.5 Z"
+ style="fill:url(#radialGradient8472);stroke:url(#linearGradient5637);stroke-linejoin:round"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path4912"
+ d="M 784,206 795,210.5 784,215 773,210.5 784,206 Z"
+ style="fill:url(#radialGradient8474);stroke:url(#linearGradient5633);stroke-width:1px;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ d="M 848,219 848,232.417"
+ id="path5699"
+ transform="translate(-64,-4)"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g5864"
+ transform="translate(-64,-4)">
+ <ellipse
+ transform="matrix(1.795342,0,0,1.795342,-669.664,-176.9133)"
+ id="path5706"
+ style="fill:url(#radialGradient5496);stroke-width:1.3484024"
+ cx="842.25"
+ cy="222.75"
+ rx="0.75"
+ ry="1.25" />
+ <use
+ xlink:href="#path5706"
+ x="0"
+ y="0"
+ id="use5833"
+ transform="translate(9.037201,-1.473703)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5706"
+ x="0"
+ y="0"
+ id="use5842"
+ transform="translate(9.037201,3.880038)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5706"
+ x="0"
+ y="0"
+ id="use5848"
+ transform="translate(13.22746,-3.462058)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5706"
+ x="0"
+ y="0"
+ id="use5855"
+ transform="translate(13.22746,1.844619)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5706"
+ x="0"
+ y="0"
+ id="use5857"
+ transform="rotate(90,847.9046,219.8453)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5706"
+ x="0"
+ y="0"
+ id="use5859"
+ transform="rotate(90,851.3872,223.3559)"
+ width="1250"
+ height="1250" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="path-clip-edit"
+ inkscape:label="#g7356"
+ transform="translate(-21)">
+ <path
+ sodipodi:nodetypes="cc"
+ id="path4828"
+ d="M 855,62 C 853,64 850,63.5 847,60.5"
+ style="fill:none;stroke:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path4828"
+ x="0"
+ y="0"
+ id="use4830"
+ transform="matrix(0,1,1,0,785.5,-785)"
+ width="1250"
+ height="1250" />
+ <path
+ style="fill:none;stroke:#00ff00;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 842.5,68.5 C 843.3058,62.01571 848.0747,58.5078 853.5,57.5"
+ id="path4813"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="55.0535"
+ x="839.9762"
+ height="16"
+ width="16"
+ id="rect4815"
+ style="fill:none" />
+ <use
+ xlink:href="#rect10675"
+ height="1250"
+ width="1250"
+ id="use4819"
+ y="0"
+ x="0"
+ transform="translate(885.0318,-128.6983)" />
+ <use
+ xlink:href="#rect10675"
+ transform="translate(873.0318,-116.6983)"
+ x="0"
+ y="0"
+ id="use4821"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ id="path-mask-edit"
+ inkscape:label="#g7344"
+ transform="translate(-40)">
+ <use
+ xlink:href="#path4893"
+ x="0"
+ y="0"
+ id="use4911"
+ transform="matrix(0,1,1,0,825.5171,-825.2431)"
+ width="1250"
+ height="1250" />
+ <path
+ style="fill:none;stroke:url(#linearGradient5824);stroke-width:1px"
+ d="M 895,62 C 893,64 889,63 885,58"
+ id="path4893"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ id="path4899"
+ d="M 882.5,68.5 C 883.3058,62.01571 888.0747,58.5078 893.5,57.5"
+ style="fill:none;stroke:#0000ff;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:none"
+ id="rect4901"
+ width="16"
+ height="16"
+ x="879.9762"
+ y="55.0535" />
+ <use
+ xlink:href="#rect10675"
+ transform="translate(925.0318,-128.6983)"
+ x="0"
+ y="0"
+ id="use4903"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect10675"
+ height="1250"
+ width="1250"
+ id="use4905"
+ y="0"
+ x="0"
+ transform="translate(913.0318,-116.6983)" />
+ </g>
+ <g
+ id="draw-eraser"
+ transform="translate(1.5,359.5)"
+ inkscape:label="#draw_erase">
+ <rect
+ style="color:#000000;fill:none;stroke-width:1.0000001"
+ id="rect7418"
+ width="24"
+ height="24"
+ x="450"
+ y="115" />
+ <g
+ transform="rotate(30,462,127.0001)"
+ id="g8277">
+ <rect
+ style="color:#000000;fill:none;stroke:#000000;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7420"
+ width="10.99167"
+ height="18.99178"
+ x="456.5083"
+ y="117.5082" />
+ <rect
+ style="color:#000000;fill:url(#linearGradient7424);fill-rule:evenodd;stroke:url(#linearGradient7426);stroke-width:0.9999998;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect7422"
+ width="9"
+ height="17"
+ x="457.5"
+ y="118.5" />
+ </g>
+ </g>
+ <path
+ style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round"
+ d="M 887.0928,67.57225 C 885.0341,67.31083 883.3117,65.50657 883.1525,63.43651 882.9202,61.37378 884.2714,59.27622 886.2454,58.63449 888.196,57.92353 890.5511,58.74534 891.6405,60.51171 892.3223,61.5405 892.4753,62.82227 892.3121,64.02456 892.1368,65.22738 892.6277,66.54912 893.7105,67.16949 895.0589,68.03424 897.0395,67.50402 897.7755,66.08115 898.5889,64.70109 897.9844,62.74188 896.5348,62.05998"
+ id="path-mode-spiro"
+ sodipodi:nodetypes="cccccccs"
+ inkscape:label="#spiro_splines_mode"
+ inkscape:connector-curvature="0" />
+ <g
+ id="path-mode-bezier"
+ transform="matrix(0.6666666,0,0,0.6666666,934.5,-64.83593)"
+ inkscape:label="bezier_mode">
+ <rect
+ y="180"
+ x="-110"
+ height="24"
+ width="24"
+ id="rect4983"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="csc"
+ id="path4985"
+ d="M -107.5,202 C -108,194 -106.8635,189.643 -103.5351,186.5978 -100.5976,183.9103 -96,182 -88,182.5"
+ style="fill:none;stroke:#646464;stroke-width:2.2500002"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:#0000ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.5000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4987"
+ width="6.117705"
+ height="5.996136"
+ x="-106.5"
+ y="183.5039" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:1.2004722;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4989"
+ width="4.799528"
+ height="4.801509"
+ x="-109.8907"
+ y="198.8925" />
+ <use
+ xlink:href="#rect10541"
+ height="1250"
+ width="1250"
+ transform="matrix(1.200473,0,0,1.200473,40.4649,-59.44417)"
+ id="use4993"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="path-mode-polyline"
+ transform="matrix(0.6666666,0,0,0.6666666,976.1392,-64.65412)"
+ inkscape:label="polylines_mode">
+ <rect
+ y="180"
+ x="-110"
+ height="24"
+ width="24"
+ id="rect4983-8"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path4985-5"
+ d="M -85.93689,200.106 C -85.93689,200.106 -105.2088,189.9812 -105.2088,189.9812 -105.2088,189.9812 -97.33696,183.4504 -97.33696,183.4504 -97.33696,183.4504 -101.7414,203.6842 -101.7414,203.6842 -101.7414,203.6842 -89.17357,192.5538 -89.17357,192.5538"
+ style="fill:none;stroke:#646464;stroke-width:2.2500002;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4989-9"
+ width="2.995161"
+ height="2.996397"
+ x="-86.98862"
+ y="198.8744" />
+ <rect
+ y="190.5354"
+ x="-90.29251"
+ height="2.996397"
+ width="2.995161"
+ id="rect8372"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8374"
+ width="2.995161"
+ height="2.996397"
+ x="-98.65125"
+ y="181.5116" />
+ <rect
+ y="188.5146"
+ x="-106.7003"
+ height="2.996397"
+ width="2.995161"
+ id="rect8376"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8378"
+ width="2.995161"
+ height="2.996397"
+ x="-103.3954"
+ y="202.6229" />
+ </g>
+ <g
+ id="path-mode-polyline-paraxial"
+ transform="matrix(0.6666666,0,0,0.6666666,996.8529,-65.39675)"
+ inkscape:label="paraxial_lines_mode">
+ <rect
+ y="180"
+ x="-110"
+ height="24"
+ width="24"
+ id="rect4983-8-8"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path4985-5-5"
+ d="M -83.37415,197.5433 C -83.37415,197.5433 -104.0525,197.5433 -104.0525,197.5433 -104.0525,197.5433 -104.0525,189.6892 -104.0525,189.6892 -104.0525,189.6892 -95.20504,189.6892 -95.20504,189.6892 -95.20504,189.6892 -95.20504,203.3698 -95.20504,203.3698 -95.20504,203.3698 -89.29061,203.3698 -89.29061,203.3698 -89.29061,203.3698 -89.29061,184.0466 -89.29061,184.0466"
+ style="fill:none;stroke:#646464;stroke-width:2.2500002;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect4989-9-0"
+ width="2.995161"
+ height="2.996397"
+ x="-84.48362"
+ y="196.0672" />
+ <rect
+ y="182.1676"
+ x="-90.81646"
+ height="2.996397"
+ width="2.995161"
+ id="rect8372-9"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8374-6"
+ width="2.995161"
+ height="2.996397"
+ x="-96.73253"
+ y="188.1577" />
+ <rect
+ y="188.1577"
+ x="-105.581"
+ height="2.996397"
+ width="2.995161"
+ id="rect8376-3"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8378-8"
+ width="2.995161"
+ height="2.996397"
+ x="-105.581"
+ y="196.0672" />
+ <rect
+ y="201.7701"
+ x="-96.73253"
+ height="2.996397"
+ width="2.995161"
+ id="rect5087"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.7491586;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5089"
+ width="2.995161"
+ height="2.996397"
+ x="-90.81646"
+ y="201.7701" />
+ </g>
+ <g
+ id="draw-geometry-line-segment"
+ transform="translate(733.29,-88.29195)"
+ inkscape:label="line_segment">
+ <path
+ style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M -44.20553,190.1345 -30.7183,176.434"
+ id="path4418-8"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <rect
+ y="175"
+ x="-45"
+ height="16"
+ width="16"
+ id="rect4420-5"
+ style="color:#000000;fill:none" />
+ <rect
+ style="color:#000000;fill:#ff2100;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#d40000;stroke-width:0.6444077;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="use5756-0-3"
+ width="2.550238"
+ height="2.558726"
+ x="-41.81641"
+ y="185.1907" />
+ <use
+ xlink:href="#use5756-0-3"
+ height="1250"
+ width="1250"
+ transform="translate(6.040428,-6.111492)"
+ id="use5845"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="draw-geometry-circle-from-three-points"
+ inkscape:label="circle_3pts"
+ transform="translate(70)">
+ <path
+ style="fill:none;stroke:#5a5a5a;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008"
+ d="M 658.0599,95.55848 C 658.0599,96.36229 657.9001,97.16579 657.5925,97.90842 657.2849,98.65104 656.8297,99.33222 656.2614,99.90059 655.6931,100.469 655.012,100.9241 654.2696,101.2317 653.5272,101.5392 652.724,101.699 651.9207,101.699 651.1174,101.6989 650.3146,101.5391 649.5727,101.2314 648.8308,100.9238 648.1505,100.4686 647.5829,99.90024 647.0153,99.33186 646.5608,98.65074 646.2537,97.90817 645.9466,97.16561 645.787,96.3622 645.787,95.55848 645.787,94.75475 645.9466,93.95134 646.2537,93.20878 646.5608,92.46622 647.0153,91.78509 647.5829,91.21671 648.1505,90.64834 648.8308,90.19318 649.5727,89.88554 650.3146,89.5779 651.1174,89.41802 651.9207,89.41797 652.724,89.41793 653.5272,89.57771 654.2696,89.88528 655.012,90.19286 655.6931,90.64799 656.2614,91.21636 656.8297,91.78474 657.2849,92.46591 657.5925,93.20854 657.9001,93.95116 658.0599,94.75466 658.0599,95.55848"
+ id="path2526"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use5756-0-3"
+ x="0"
+ y="0"
+ id="use5845-6"
+ transform="translate(690.7581,-96.67858)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5756-0-3"
+ x="0"
+ y="0"
+ id="use5845-6-1"
+ transform="translate(686.3637,-90.33765)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5756-0-3"
+ x="0"
+ y="0"
+ id="use5845-6-1-9"
+ transform="translate(697.4319,-87.13558)"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ id="draw-geometry-angle-bisector"
+ inkscape:label="angle_bisector"
+ transform="translate(130)">
+ <path
+ sodipodi:nodetypes="cc"
+ id="path4418-8-1"
+ d="M 683.5954,101.6495 672.621,88.41118"
+ style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7272727"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccc"
+ d="M 677.4691,101.0666 674.8286,90.9351 684.5743,95.67784"
+ style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path4418-8-1-0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(110,2.2e-5)"
+ id="draw-geometry-line-perpendicular"
+ inkscape:label="perp_bisector">
+ <path
+ sodipodi:nodetypes="cc"
+ id="path4418-8-1-2"
+ d="M 683.5954,101.6495 672.621,88.41118"
+ style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7272727"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 674.4659,97.31266 681.5712,91.92394"
+ style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path4418-8-1-0-1"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2.3001337;stroke-dasharray:2.3001337, 2.3001337"
+ id="show-bounding-box"
+ width="10.66002"
+ height="16.84721"
+ x="865.5653"
+ y="86.07553"
+ inkscape:label="lpetool_show_bbox" />
+ <g
+ transform="translate(92.93803,-0.728071)"
+ id="draw-geometry-circle-from-radius"
+ inkscape:label="circle_3pts">
+ <path
+ style="fill:none;stroke:#5a5a5a;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008"
+ d="M 658.0599,95.55848 C 658.0599,96.36229 657.9001,97.16579 657.5925,97.90842 657.2849,98.65104 656.8297,99.33222 656.2614,99.90059 655.6931,100.469 655.012,100.9241 654.2696,101.2317 653.5272,101.5392 652.724,101.699 651.9207,101.699 651.1174,101.6989 650.3146,101.5391 649.5727,101.2314 648.8308,100.9238 648.1505,100.4686 647.5829,99.90024 647.0153,99.33186 646.5608,98.65074 646.2537,97.90817 645.9466,97.16561 645.787,96.3622 645.787,95.55848 645.787,94.75475 645.9466,93.95134 646.2537,93.20878 646.5608,92.46622 647.0153,91.78509 647.5829,91.21671 648.1505,90.64834 648.8308,90.19318 649.5727,89.88554 650.3146,89.5779 651.1174,89.41802 651.9207,89.41797 652.724,89.41793 653.5272,89.57771 654.2696,89.88528 655.012,90.19286 655.6931,90.64799 656.2614,91.21636 656.8297,91.78474 657.2849,92.46591 657.5925,93.20854 657.9001,93.95116 658.0599,94.75466 658.0599,95.55848"
+ id="circle_with_radius"
+ inkscape:label="circle_with_radius"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 651.6968,95.73494 657.1146,92.34622"
+ style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path4418-8-1-0-1-0"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use5756-0-3"
+ x="0"
+ y="0"
+ id="use5845-6-1-4"
+ transform="translate(692.3012,-90.77515)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#use5756-0-3"
+ x="0"
+ y="0"
+ id="use5845-6-1-9-8"
+ transform="translate(697.6194,-94.13558)"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ transform="rotate(64.5595,722.6571,164.0529)"
+ id="draw-geometry-line-parallel"
+ inkscape:label="parallel">
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 672.4285,92.87286 687.1351,89.60546"
+ style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902"
+ id="path4418-8-1-0-1-4-4"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 673.2681,96.33213 687.9748,93.06472"
+ style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path4418-8-1-0-1-4-4-6"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="draw-geometry-inactive"
+ inkscape:label="all_inactive_old"
+ transform="translate(50.20458)">
+ <rect
+ y="85.50002"
+ x="612.75"
+ height="24"
+ width="20.25"
+ id="rect5112"
+ style="color:#000000;fill:none;stroke-width:3" />
+ <path
+ id="path6027"
+ d="M 617.649,102.882 628.1009,92.11811"
+ style="fill:none;stroke:#000000;stroke-width:4.2362256;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6027-1"
+ d="M 628.2568,102.7259 617.4932,92.2741"
+ style="fill:none;stroke:#000000;stroke-width:4.2362256;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008"
+ inkscape:connector-curvature="0" />
+ </g>
+ <text
+ xml:space="preserve"
+ style="font-size:20px;line-height:100%;font-family:Arial;-inkscape-font-specification:Arial;fill:#008f00"
+ x="614.23224"
+ y="103.43147"
+ id="all_inactive"
+ sodipodi:linespacing="100%"
+ inkscape:label="all_inactive"><tspan
+ sodipodi:role="line"
+ id="tspan5899"
+ x="614.23224"
+ y="103.43147">none</tspan></text>
+ <g
+ transform="rotate(64.5595,754.657,214.7116)"
+ id="draw-geometry-mirror"
+ inkscape:label="mirror_symmetry">
+ <path
+ sodipodi:nodetypes="cs"
+ d="M 674.8734,92.098 C 680.2873,97.30342 677.4429,84.32937 684.5965,91.3047"
+ style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902"
+ id="path4418-8-1-0-1-4-4-8"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cc"
+ d="M 673.2681,96.33213 687.9748,93.06472"
+ style="fill:none;stroke:#5a5a5a;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path4418-8-1-0-1-4-4-6-5"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cs"
+ d="M 676.5145,99.48186 C 679.1239,92.43934 681.9149,106.1419 685.614,95.96528"
+ style="fill:none;stroke:#da0000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902"
+ id="path4418-8-1-0-1-4-4-8-5"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(416.9762,-39.9465)"
+ id="object-tweak-push"
+ inkscape:label="#g4416">
+ <rect
+ style="fill:none"
+ id="rect4991"
+ width="16"
+ height="16"
+ x="-45"
+ y="175" />
+ <g
+ id="g5135"
+ style="fill:#000000"
+ transform="translate(-416.8263,39.0012)">
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-h="2.223736"
+ inkscape:tile-w="2.223736"
+ inkscape:tile-cy="137.9821"
+ inkscape:tile-cx="375.0941"
+ id="path5011"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <use
+ xlink:href="#path5011"
+ transform="translate(4.825002e-8,2.41142)"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ id="use5085"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(0.0067742,5.089253)"
+ id="use5087"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(0.0027824,7.946541)"
+ id="use5091"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(2.959973,-0.63416)"
+ id="use5095"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(3.006247,0.88896)"
+ id="use5097"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(3.034311,2.716243)"
+ id="use5099"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(2.998324,5.976212)"
+ id="use5101"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(5.922205,-0.70933)"
+ id="use5105"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(5.986644,0.3787152)"
+ id="use5107"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(6.028303,2.049693)"
+ id="use5109"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(5.985226,4.82628)"
+ id="use5111"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.86036,-0.67653)"
+ id="use5115"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.908855,0.84335)"
+ id="use5117"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.937926,2.560875)"
+ id="use5119"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.901517,5.920781)"
+ id="use5121"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.79723,-0.00985)"
+ id="use5125"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.80716,2.53059)"
+ id="use5127"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.81518,5.183143)"
+ id="use5129"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.80214,7.912301)"
+ id="use5131"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5011"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5136"
+ transform="translate(0.0027824,10.71149)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5011"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5138"
+ transform="translate(2.998324,9.724665)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5011"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5140"
+ transform="translate(5.985226,9.503606)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5011"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5142"
+ transform="translate(8.901517,9.887791)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5011"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5144"
+ transform="translate(11.80214,10.67725)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ </g>
+ </g>
+ <rect
+ inkscape:label="#rect5080"
+ style="fill:none"
+ id="tweak_move_mode_inout"
+ width="16"
+ height="16"
+ x="391.9762"
+ y="135.0535" />
+ <g
+ id="object-tweak-attract"
+ style="fill:#000000"
+ transform="translate(20.0953,-1.38242)"
+ inkscape:label="#g5082">
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.861385,11.02164)"
+ id="use5124"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5130"
+ transform="translate(2.953795,11.09914)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.11579,3.027365)"
+ id="use5088"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5126"
+ transform="translate(11.0383,9.082095)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(10.38143,6.05473)"
+ id="use5090"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5132"
+ transform="translate(5.90759,10.40446)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-h="2.223736"
+ inkscape:tile-w="2.223736"
+ inkscape:tile-cy="137.9821"
+ inkscape:tile-cx="375.0941"
+ id="path5084"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <use
+ xlink:href="#path5084"
+ transform="translate(8.706381,0.9318868)"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ id="use5086"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(2.953795,0.8543842)"
+ id="use5092"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.81518)"
+ id="use5094"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(1.317544,6.05473)"
+ id="use5096"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(0.7764177,9.082095)"
+ id="use5098"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(5.90759,1.588803)"
+ id="use5100"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(0.6601638,3.027365)"
+ id="use5103"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(3.225052,3.298622)"
+ id="use5106"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(3.147551,8.733335)"
+ id="use5108"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(5.90759,4.189904)"
+ id="use5110"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.706381,3.376124)"
+ id="use5112"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(3.961329,6.05473)"
+ id="use5114"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(5.90759,7.764549)"
+ id="use5116"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(7.698848,6.05473)"
+ id="use5120"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(5.90759,6.05473)"
+ id="use5118"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.628879,8.772087)"
+ id="use5122"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5128"
+ transform="translate(0,12.10946)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5134"
+ transform="translate(11.81518,12.10946)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ inkscape:label="#rect5080-2"
+ style="fill:none"
+ id="tweak_move_mode_jitter"
+ width="16"
+ height="16"
+ x="410.9524"
+ y="135.1065" />
+ <g
+ id="object-tweak-randomize"
+ style="fill:#000000"
+ transform="translate(39.0715,-1.3294)"
+ inkscape:label="#g5082-9">
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-h="2.223736"
+ inkscape:tile-w="2.223736"
+ inkscape:tile-cy="137.9821"
+ inkscape:tile-cx="375.0941"
+ id="path5084-3"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.20571,0,0,1.20571,-78.24976,-27.879)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <use
+ xlink:href="#path5084-3"
+ transform="translate(8.561625,0.49145)"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ id="use5086-7"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.84313,2.65475)"
+ id="use5088-6"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.465,6.015863)"
+ id="use5090-6"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(2.800431,0.1644349)"
+ id="use5092-8"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.808,-0.0096427)"
+ id="use5094-4"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(-0.4334583,6.118019)"
+ id="use5096-4"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(0.2602591,9.383794)"
+ id="use5098-4"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(6.0991,-0.2204626)"
+ id="use5100-0"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(0.4371078,2.794418)"
+ id="use5103-8"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(2.823264,2.99384)"
+ id="use5106-4"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(2.2685,8.914454)"
+ id="use5108-9"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(7.821966,3.036785)"
+ id="use5110-6"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.506131,3.395216)"
+ id="use5112-0"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(2.865657,4.495371)"
+ id="use5114-7"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(5.940444,8.422506)"
+ id="use5116-9"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(6.998359,5.075075)"
+ id="use5118-4"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(7.573388,6.436901)"
+ id="use5120-9"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.395772,9.33012)"
+ id="use5122-7"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(8.885973,11.77538)"
+ id="use5124-1"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-3"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5126-2"
+ transform="translate(11.49834,9.064573)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084-3"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5128-6"
+ transform="translate(-0.009413,12.10337)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084-3"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5130-6"
+ transform="translate(3.166048,12.23381)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084-3"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5132-7"
+ transform="translate(5.944623,11.84999)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084-3"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5134-4"
+ transform="translate(11.80662,12.10332)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ inkscape:label="#rect5080-7"
+ style="fill:none"
+ id="tweak_scale_mode"
+ width="16"
+ height="16"
+ x="372.0711"
+ y="157.0817" />
+ <g
+ id="object-tweak-shrink"
+ style="fill:#000000"
+ transform="translate(0.1905,20.64585)"
+ inkscape:label="#g5082-3">
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-h="2.223736"
+ inkscape:tile-w="2.223736"
+ inkscape:tile-cy="137.9821"
+ inkscape:tile-cx="375.0941"
+ id="path5084-2"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <use
+ xlink:href="#path5084-2"
+ transform="matrix(0.9860759,0,0,0.9860759,14.06913,1.928293)"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ id="use5086-8"
+ style="stroke:#ffffff;stroke-width:0.2812746"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.9791266,0,0,0.9791266,19.62171,5.917923)"
+ id="use5088-8"
+ style="stroke:#ffffff;stroke-width:0.2832711"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.9025255,0,0,0.9025255,48.27027,19.55311)"
+ id="use5090-1"
+ style="stroke:#ffffff;stroke-width:0.3073135"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.9860707,0,0,0.9860707,8.163368,1.928972)"
+ id="use5092-4"
+ style="stroke:#ffffff;stroke-width:0.2812758"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.81518)"
+ id="use5094-42"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.9068615,0,0,0.9068615,34.83344,18.95266)"
+ id="use5096-0"
+ style="stroke:#ffffff;stroke-width:0.3058435"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.9828022,0,0,0.9828022,6.431961,11.46371)"
+ id="use5098-8"
+ style="stroke:#ffffff;stroke-width:0.2822113"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.9220478,0,0,0.9220478,35.06151,10.79493)"
+ id="use5100-6"
+ style="stroke:#ffffff;stroke-width:0.3008064"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.9801935,0,0,0.9801935,7.407717,5.770255)"
+ id="use5103-0"
+ style="stroke:#ffffff;stroke-width:0.2829629"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.6146776,0,0,0.6146776,147.0627,56.38727)"
+ id="use5106-9"
+ style="stroke:#ffffff;stroke-width:0.451224"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.6232617,0,0,0.6232617,143.8529,61.25332)"
+ id="use5108-2"
+ style="stroke:#ffffff;stroke-width:0.4450105"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.4296546,0,0,0.4296546,219.2145,82.00947)"
+ id="use5110-1"
+ style="stroke:#ffffff;stroke-width:0.645537"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.6112925,0,0,0.6112925,154.2364,56.85603)"
+ id="use5112-7"
+ style="stroke:#ffffff;stroke-width:0.4537236"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.4261003,0,0,0.4261003,217.5898,85.52904)"
+ id="use5114-3"
+ style="stroke:#ffffff;stroke-width:0.6509216"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.4378052,0,0,0.4378052,216.1661,86.93554)"
+ id="use5116-0"
+ style="stroke:#ffffff;stroke-width:0.633519"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.256807,0,0,0.256807,283.8591,108.9729)"
+ id="use5118-6"
+ style="stroke:#ffffff;stroke-width:1.0800228"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.4222839,0,0,0.4222839,224.9252,86.0576)"
+ id="use5120-92"
+ style="stroke:#ffffff;stroke-width:0.6568049"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.6190024,0,0,0.6190024,151.3531,61.84314)"
+ id="use5122-6"
+ style="stroke:#ffffff;stroke-width:0.4480718"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="matrix(0.9884129,0,0,0.9884129,13.19493,13.71404)"
+ id="use5124-2"
+ style="stroke:#ffffff;stroke-width:0.2806096"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#path5084-2"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2829278"
+ id="use5126-4"
+ transform="matrix(0.9803125,0,0,0.9803125,19.17819,11.80843)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084-2"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5128-4"
+ transform="translate(0,12.10946)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084-2"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2802223"
+ id="use5130-0"
+ transform="matrix(0.9897789,0,0,0.9897789,6.776422,13.52485)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084-2"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2981642"
+ id="use5132-1"
+ transform="matrix(0.9302193,0,0,0.9302193,32.00541,21.7728)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#path5084-2"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5134-8"
+ transform="translate(11.81518,12.10946)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ </g>
+ <rect
+ inkscape:label="#rect5080-5"
+ style="fill:none"
+ id="tweak_rotate_mode"
+ width="16"
+ height="16"
+ x="392.0683"
+ y="156.9639" />
+ <g
+ id="object-tweak-rotate"
+ style="fill:#000000"
+ transform="translate(20.1874,20.52808)"
+ inkscape:label="#g5082-36">
+ <use
+ xlink:href="#rect5405"
+ transform="rotate(6.891451,378.4121,212.0572)"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ id="use5086-1"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(6.742276,354.1916,240.2747)"
+ id="use5088-9"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(13.88251,355.0222,190.0243)"
+ id="use5090-9"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(8.166722,375.4574,159.1597)"
+ id="use5092-7"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="translate(11.81518)"
+ id="use5094-1"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(17.82176,354.6725,141.5001)"
+ id="use5096-08"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(8.378837,311.9869,143.0133)"
+ id="use5098-0"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(15.2684,376.9345,160.51)"
+ id="use5100-2"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(9.387622,355.5457,139.986)"
+ id="use5103-7"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(44.87149,371.792,143.563)"
+ id="use5106-2"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(42.22786,363.698,146.8381)"
+ id="use5108-6"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(63.21644,374.4751,144.7858)"
+ id="use5110-65"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(41.22188,374.3871,151.767)"
+ id="use5112-8"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(65.03753,370.7095,143.8163)"
+ id="use5114-5"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(59.91134,369.0555,148.139)"
+ id="use5116-6"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(88.2,373.8108,144.5479)"
+ id="use5118-0"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(60.38546,373.2086,149.115)"
+ id="use5120-1"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(38.71798,365.4871,155.6236)"
+ id="use5122-0"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ x="0"
+ y="0"
+ inkscape:tiled-clone-of="#path5011"
+ transform="rotate(5.269124,246.8273,240.8168)"
+ id="use5124-4"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#rect5405"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5126-7"
+ transform="rotate(5.910683,291.9279,257.4433)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect5405"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5128-0"
+ transform="translate(0,12.10946)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect5405"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5130-7"
+ transform="rotate(6.371765,266.6809,171.0607)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect5405"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5132-5"
+ transform="rotate(12.64041,322.2687,171.1961)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#rect5405"
+ height="1250"
+ width="1250"
+ style="stroke:#ffffff;stroke-width:0.2773579"
+ id="use5134-1"
+ transform="translate(11.81518,12.10946)"
+ inkscape:tiled-clone-of="#path5011"
+ y="0"
+ x="0" />
+ <rect
+ y="136.9544"
+ x="373.4724"
+ height="3.036042"
+ width="1.257945"
+ id="rect5405"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.3344132" />
+ </g>
+ <rect
+ y="157.0817"
+ x="411.2426"
+ height="16"
+ width="16"
+ id="tweak_moreless_mode"
+ style="fill:none"
+ inkscape:label="#rect5080-7" />
+ <g
+ clip-path="url(#clipPath5905)"
+ transform="translate(37.4344,20.35234)"
+ style="fill:#000000"
+ id="object-tweak-duplicate"
+ inkscape:label="#g5678">
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use5685"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ transform="matrix(2.361086,0,0,2.361086,-503.8152,-187.3038)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use5687"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ transform="matrix(2.176368,0,0,2.176368,-434.5286,-155.763)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use5828"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ transform="matrix(2.363946,0,0,2.363946,-504.888,-175.5924)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ transform="matrix(0,2.361086,-2.361086,0,713.6548,-741.0926)"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ id="path5885"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-y0="136.8702"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ transform="matrix(0,2.363946,-2.363946,0,701.94,-742.1654)"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ id="path5889"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-y0="136.8702"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="path5893"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ transform="matrix(0,2.361086,-2.361086,0,713.6548,-747.1456)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="path5895"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ transform="matrix(0,2.363946,-2.363946,0,701.94,-748.2184)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ transform="matrix(0,2.361086,-2.361086,0,713.6548,-735.0396)"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ id="path5897"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-y0="136.8702"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ transform="matrix(0,2.363946,-2.363946,0,701.94,-736.1123)"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ id="path5899"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-y0="136.8702"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ transform="matrix(2.176368,0,0,2.176368,-433.9294,-155.2869)"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ id="path5909"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-y0="136.8702"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="path5911"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.138679"
+ transform="matrix(2.176368,0,0,2.176368,-433.3154,-154.7343)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ </g>
+ <rect
+ y="181.0817"
+ x="372.0711"
+ height="16"
+ width="16"
+ id="tweak_blur_mode"
+ style="fill:none"
+ inkscape:label="#rect5080-7" />
+ <g
+ transform="translate(0.1905,44.64585)"
+ style="fill:#000000"
+ id="object-tweak-blur"
+ inkscape:label="#g7655">
+ <circle
+ transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ id="path7657"
+ inkscape:tile-cx="375.0941"
+ inkscape:tile-cy="137.9821"
+ inkscape:tile-w="2.223736"
+ inkscape:tile-h="2.223736"
+ inkscape:tile-x0="373.9822"
+ inkscape:tile-y0="136.8702"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7660"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.188922,0,0,1.188922,-63.09951,-25.56857)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7662"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.180543,0,0,1.180543,-57.00309,-21.38516)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7664"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.088184,0,0,1.088184,-22.35986,-5.61394)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7666"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.188915,0,0,1.188915,-69.00487,-25.56775)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7668"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.20571,0,0,1.20571,-66.44314,-27.88514)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7670"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.093412,0,0,1.093412,-36.13602,-6.3353)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7672"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.184974,0,0,1.184974,-70.48049,-15.94187)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7674"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.111722,0,0,1.111722,-37.0964,-14.9165)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7676"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.181829,0,0,1.181829,-69.30058,-21.56258)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7678"
+ style="color:#000000;fill:url(#radialGradient7818);stroke-width:0.2773579"
+ transform="matrix(1.485788,0,0,1.485788,-180.3604,-63.50353)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7680"
+ style="color:#000000;fill:url(#radialGradient7802);stroke-width:0.2773579"
+ transform="matrix(1.485788,0,0,1.485788,-180.3597,-57.44874)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7682"
+ style="color:#000000;fill:url(#radialGradient7826);stroke-width:0.2773579"
+ transform="matrix(1.485788,0,0,1.485788,-177.4064,-63.50356)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7684"
+ style="color:#000000;fill:url(#radialGradient7834);stroke-width:0.2773579"
+ transform="matrix(1.485788,0,0,1.485788,-174.4526,-63.50354)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7686"
+ style="color:#000000;fill:url(#radialGradient7810);stroke-width:0.2773579"
+ transform="matrix(1.485788,0,0,1.485788,-180.3605,-60.47619)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7688"
+ style="color:#000000;fill:url(#radialGradient7794);stroke-width:0.2773579"
+ transform="matrix(1.4858,0,0,1.4858,-177.4101,-57.45014)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7692"
+ style="color:#000000;fill:url(#radialGradient7842);stroke-width:0.2773579"
+ transform="matrix(1.485788,0,0,1.485788,-174.4524,-60.47613)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7694"
+ style="color:#000000;fill:url(#radialGradient7786);stroke-width:0.2773579"
+ transform="matrix(1.492675,0,0,1.492675,-177.0357,-58.39903)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7696"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.191739,0,0,1.191739,-64.1566,-13.84799)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7698"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.181973,0,0,1.181973,-57.53942,-15.52772)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7700"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.20571,0,0,1.20571,-78.25832,-15.77568)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7702"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.193386,0,0,1.193386,-70.68201,-14.07527)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7704"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.121575,0,0,1.121575,-40.79199,-4.166495)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7706"
+ style="color:#000000;stroke:#ffffff;stroke-width:0.2773579"
+ transform="matrix(1.20571,0,0,1.20571,-66.44314,-15.77568)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ <circle
+ inkscape:tile-y0="136.8702"
+ inkscape:tile-x0="373.9822"
+ id="use7690"
+ style="color:#000000;fill:url(#radialGradient7778);stroke-width:0.2773579"
+ transform="matrix(6.75293,0,0,6.75293,-2153.081,-787.2478)"
+ cx="375.0941"
+ cy="137.9821"
+ r="1.111868" />
+ </g>
+ <g
+ inkscape:label="#node_symmetric"
+ transform="translate(736.4717,-120)"
+ id="node-type-auto-smooth">
+ <path
+ sodipodi:nodetypes="csc"
+ id="path5383"
+ d="M -44.41296,176.5635 C -44.94008,180.0159 -43.02606,185.9502 -37.02606,185.9502 -31.02606,185.9502 -29.0373,180.0159 -29.51018,176.5635"
+ style="fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="color:#000000;fill:none"
+ id="rect5385"
+ width="16"
+ height="16"
+ x="-45"
+ y="175" />
+ <rect
+ transform="rotate(-89.99984)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000015;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5387"
+ width="4.966394"
+ height="4.950177"
+ x="-188.4831"
+ y="-39.47938"
+ ry="2.475089" />
+ </g>
+ <g
+ id="snap"
+ inkscape:label="#toggle_snap_global">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6"
+ width="16"
+ height="16"
+ x="620"
+ y="30" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-0"
+ width="16"
+ height="16"
+ x="620"
+ y="30.00057" />
+ <rect
+ transform="rotate(-45)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3224-2"
+ width="3.584063"
+ height="3.621212"
+ x="415.401"
+ y="462.0515" />
+ <rect
+ transform="rotate(-45)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3224-2-8"
+ width="3.584063"
+ height="3.621212"
+ x="415.401"
+ y="476.282" />
+ <path
+ id="path9093"
+ d="M 631,41 631,37 627,41 631,41"
+ style="color:#000000;fill:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="rotate(-45)"
+ inkscape:transform-center-y="-2.12133"
+ inkscape:transform-center-x="1.414208"
+ y="466.7135"
+ x="416.693"
+ height="7.962208"
+ width="1"
+ id="rect9095"
+ style="fill:#000000" />
+ </g>
+ <g
+ id="snap-bounding-box"
+ inkscape:label="#toggle_snap_bbox">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-4"
+ width="16"
+ height="16"
+ x="638"
+ y="30" />
+ <path
+ id="path9141"
+ d="M 641,46 641,33 654,33"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="rotate(-45)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3224-2-2"
+ width="3.584063"
+ height="3.621212"
+ x="428.1289"
+ y="474.691" />
+ </g>
+ <g
+ id="snap-bounding-box-edges"
+ inkscape:label="#toggle_snap_to_bbox_path">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-5"
+ width="16"
+ height="16"
+ x="656"
+ y="30.00057" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-0-1"
+ width="16"
+ height="16"
+ x="656"
+ y="30.00114" />
+ <path
+ id="path9141-9"
+ d="M 669,30 669,43 656,43"
+ style="color:#000000;fill:none;stroke:#008000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="snap-bounding-box-corners"
+ inkscape:label="#toggle_snap_to_bbox_node">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-4-0"
+ width="16"
+ height="16"
+ x="674"
+ y="30.00057" />
+ <path
+ id="path9141-9-2"
+ d="M 687,30 687,43 674,43"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="rotate(-45)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3224-2-8-6"
+ width="3.584063"
+ height="3.621212"
+ x="453.5847"
+ y="514.3773" />
+ </g>
+ <g
+ id="snap-nodes"
+ transform="translate(36,-0.001709)"
+ inkscape:label="#toggle_snap_nodes">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-7"
+ width="16"
+ height="16"
+ x="692"
+ y="30.00057" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-0-8"
+ width="16"
+ height="16"
+ x="692"
+ y="30.00114" />
+ <path
+ sodipodi:nodetypes="ccsc"
+ id="path6308"
+ d="M 693,38 C 693,38 693,33 700,33 696,38 697.75,41 700.5,42.75 703.25,44.5 707,45 707,45"
+ style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="rotate(-45)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3224-2-9"
+ width="3.584063"
+ height="3.621212"
+ x="469.8239"
+ y="516.5415" />
+ </g>
+ <g
+ id="snap-nodes-path"
+ transform="translate(36,-0.001709)"
+ inkscape:label="#toggle_snap_to_paths">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-4-8"
+ width="16"
+ height="16"
+ x="710"
+ y="30.00057" />
+ <path
+ sodipodi:nodetypes="ccsc"
+ id="path6308-6"
+ d="M 725,39 C 725,39 725,44 718,44 722,39 720.25,36 717.5,34.25 714.75,32.5 711,32 711,32"
+ style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccsc"
+ id="path6308-6-9"
+ d="M 725,39.00001 C 725,39.00001 725,44.00001 718,44.00001 722,39.00001 720.25,36.00001 717.5,34.25001 714.75,32.50001 711,32.00001 711,32.00001"
+ style="color:#000000;fill:none;stroke:#008000;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="snap-nodes-cusp"
+ transform="translate(36,-0.001709)"
+ inkscape:label="#toggle_snap_to_nodes">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-74"
+ width="16"
+ height="16"
+ x="728"
+ y="30.00057" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-0-19"
+ width="16"
+ height="16"
+ x="728"
+ y="30.00114" />
+ <path
+ sodipodi:nodetypes="ccsc"
+ id="path6308-6-3"
+ d="M 743,38 C 743,38 743,43 736,43 740,38 738.25,35 735.5,33.25 732.75,31.5 729,31 729,31"
+ style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="rotate(-45)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3224-2-8-6-5"
+ width="3.584063"
+ height="3.621212"
+ x="488.233"
+ y="549.0256" />
+ </g>
+ <g
+ id="snap-nodes-smooth"
+ transform="translate(36,-0.001709)"
+ inkscape:label="#toggle_snap_to_smooth_nodes">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-4-09"
+ width="16"
+ height="16"
+ x="746"
+ y="30.00057" />
+ <path
+ sodipodi:nodetypes="ccsc"
+ id="path6308-6-3-2"
+ d="M 761,38 C 761,38 761,43 754,43 758,38 756.25,35 753.5,33.25 750.75,31.5 747,31 747,31"
+ style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <rect
+ transform="rotate(-90)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3224-2-8-6-5-6"
+ width="3.584063"
+ height="3.621212"
+ x="-35.08406"
+ y="751.8788" />
+ </g>
+ <g
+ id="snap-nodes-midpoint"
+ transform="translate(36,-0.001709)"
+ inkscape:label="#toggle_snap_to_midpoints">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-5-8"
+ width="16"
+ height="16"
+ x="764"
+ y="30.00114" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-0-1-8"
+ width="16"
+ height="16"
+ x="764"
+ y="30.00171" />
+ <path
+ id="path6507"
+ d="M 765,45 779,31"
+ style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ inkscape:connector-curvature="0" />
+ <circle
+ transform="matrix(0.8749999,0,0,0.875,112.6876,9.126711)"
+ id="path6530"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round"
+ cx="753.5"
+ cy="33"
+ r="2" />
+ <g
+ transform="matrix(1.5,0,0,1.5,-383.9324,-21.06763)"
+ id="g6242">
+ <path
+ style="color:#000000;fill:#c00000;stroke:#c00000;stroke-width:0.6666667px"
+ d="M 766.7737,40.68077 767.7737,44.68077"
+ id="path6218"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#c00000;stroke:#c00000;stroke-width:0.6666667px"
+ d="M 767.9558,39.58974 768.9558,43.58974"
+ id="path6218-9"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="g6242-2"
+ transform="matrix(1.5,0,0,1.5,-375.4835,-29.48977)">
+ <path
+ style="color:#000000;fill:#c00000;stroke:#c00000;stroke-width:0.6666667px"
+ d="M 766.7737,40.68077 767.7737,44.68077"
+ id="path6218-2"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#c00000;stroke:#c00000;stroke-width:0.6666667px"
+ d="M 767.9558,39.58974 768.9558,43.58974"
+ id="path6218-9-6"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ id="snap-nodes-intersection"
+ transform="translate(36,-0.001709)"
+ inkscape:label="#toggle_snap_to_path_intersections">
+ <g
+ id="g6774">
+ <rect
+ y="30.00114"
+ x="782"
+ height="16"
+ width="16"
+ id="rect5385-6-4-0-5"
+ style="color:#000000;fill:none;stroke-width:0.1" />
+ <path
+ style="color:#000000;fill:none;stroke:#646464;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 783,45 797,31"
+ id="path6507-9"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:#646464;stroke-width:1.0000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 783,40 797,36"
+ id="path6507-9-3"
+ inkscape:connector-curvature="0" />
+ <circle
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round"
+ id="path6530-3"
+ transform="matrix(0.8749999,0,0,0.875,130.6876,9.127)"
+ cx="753.5"
+ cy="33"
+ r="2" />
+ </g>
+ </g>
+ <g
+ id="snap-nodes-rotation-center"
+ transform="translate(54.5,0.5)"
+ inkscape:label="#toggle_snap_center">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-7-8"
+ width="16"
+ height="16"
+ x="800"
+ y="30.00114" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-0-8-4"
+ width="16"
+ height="16"
+ x="800"
+ y="30.00171" />
+ <path
+ id="path9141-9-0"
+ d="M 813,30 813,43 800,43"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6380"
+ d="M 805,31.5 805,34.5"
+ style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6380-4"
+ d="M 805,35.5 805,38.5"
+ style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6380-8"
+ d="M 801.5,35 804.5,35"
+ style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6380-4-0"
+ d="M 805.5,35 808.5,35"
+ style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="snap-page"
+ transform="translate(54.5,0.5)"
+ inkscape:label="#toggle_snap_page_border">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-4-8-3"
+ width="16"
+ height="16"
+ x="818"
+ y="30.00114" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path3805-7"
+ d="M 820.7689,31.00114 831.2311,31.00114 831.2311,45.00114 820.7689,45.00114 820.7689,31.00114 Z"
+ style="color:#000000;fill:url(#linearGradient6465);fill-rule:evenodd;stroke:url(#linearGradient6467);stroke-width:1.0000002"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="snap-grid-guide-intersections"
+ transform="translate(54.5,0.5)"
+ inkscape:label="#toggle_snap_grid_guide_intersections">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-4-8-3-1"
+ width="16"
+ height="16"
+ x="836"
+ y="30.00057" />
+ <path
+ id="path6498-9-0"
+ d="M 851,37 837,37"
+ style="color:#000000;fill:#c00000;stroke:#0065ff;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6498-1"
+ d="M 841.5822,45.57303 846.4186,30.42697"
+ style="color:#000000;fill:#c00000;stroke:#0065ff;stroke-width:1px"
+ inkscape:connector-curvature="0" />
+ <circle
+ transform="matrix(0.8749999,0,0,0.875,185.0073,8.125)"
+ id="path6530-3-7"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round"
+ cx="753.5"
+ cy="33"
+ r="2" />
+ </g>
+ <g
+ id="snap-bounding-box-center"
+ inkscape:label="#toggle_snap_to_bbox_midpoints">
+ <circle
+ transform="matrix(0.8749999,0,0,0.875,56.39207,5.147436)"
+ id="path6530-5"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round"
+ cx="753.5"
+ cy="33"
+ r="2" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-4-0-8"
+ width="16"
+ height="16"
+ x="712"
+ y="29.99886" />
+ <path
+ id="path9141-9-2-5"
+ d="M 725,29.99829 725,42.99829 712,42.99829"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(162.5,0.5)"
+ id="snap-nodes-center"
+ inkscape:label="#toggle_snap_to_bbox_midpoints-3">
+ <g
+ id="toggle_snap_to_object_midpoints">
+ <rect
+ y="30.00057"
+ x="674"
+ height="16"
+ width="16"
+ id="rect5385-6-4-0-8-1"
+ style="color:#000000;fill:none;stroke-width:0.1" />
+ <path
+ style="color:#000000;fill:none;stroke:#646464;stroke-linecap:square"
+ d="M 687,30 687,43 674,43"
+ id="path9141-9-2-5-1"
+ inkscape:connector-curvature="0" />
+ <circle
+ transform="matrix(0.8749999,0,0,0.875,19.93758,6.375)"
+ id="path6530-3-6"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round"
+ cx="753.5"
+ cy="33"
+ r="2" />
+ </g>
+ </g>
+ <g
+ id="snap-bounding-box-midpoints"
+ inkscape:label="#toggle_snap_to_bbox_edge_midpoints">
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.1"
+ id="rect5385-6-4-0-8-5"
+ width="16"
+ height="16"
+ x="692.5"
+ y="30" />
+ <path
+ id="path9141-9-2-5-3"
+ d="M 705.5,29.99943 705.5,42.99943 692.5,42.99943"
+ style="color:#000000;fill:none;stroke:#000000;stroke-linecap:square;stroke-dasharray:1, 2;stroke-dashoffset:2.5"
+ inkscape:connector-curvature="0" />
+ <circle
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:1.1428572;stroke-linecap:round"
+ id="path6530-4"
+ transform="matrix(0.8749999,0,0,0.875,46.21002,5.147436)"
+ cx="753.5"
+ cy="33"
+ r="2" />
+ </g>
+ <g
+ id="guides"
+ transform="translate(-118,-28)"
+ inkscape:label="#guide">
+ <path
+ sodipodi:nodetypes="cc"
+ id="path5235-0"
+ d="M 305.5,421.5 305.5,436.5"
+ style="fill:none;stroke:#0000ff;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#0000ff;stroke-linecap:round"
+ d="M 315.5,421.5 310.4026,436.5"
+ id="use5244-0"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path5235-0"
+ x="0"
+ y="0"
+ id="use5246-9"
+ transform="translate(12)"
+ width="1250"
+ height="1250"
+ style="stroke-linecap:round" />
+ </g>
+ <use
+ xlink:href="#transform-scale-horizontal"
+ inkscape:label="#use5735"
+ height="1250"
+ width="1250"
+ transform="rotate(-90,791.4837,214.4996)"
+ id="transform-scale-vertical"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#transform-move-horizontal"
+ inkscape:label="#use5770"
+ height="1250"
+ width="1250"
+ transform="matrix(0,-1,-1,0,942,973.9749)"
+ id="transform-move-vertical"
+ y="0"
+ x="0" />
+ <g
+ id="draw-polygon-star"
+ inkscape:label="#g6798">
+ <g
+ id="g6790">
+ <path
+ style="color:#000000;fill:url(#linearGradient5939);fill-rule:evenodd;stroke:url(#linearGradient5941);stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 462.0737,189.3155 454.3023,189.3155 452.082,181.7659 458.188,176.9127 464.2941,181.7659 462.0737,189.3155 Z"
+ id="path6584"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:none;stroke:url(#linearGradient5936);stroke-width:0.9999991;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 462.8716,190.3459 453.5036,190.3459 450.8269,181.4767 458.1876,175.775 465.5484,181.4767 462.8717,190.3459 Z"
+ id="star"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="174"
+ x="450"
+ height="24"
+ width="24"
+ id="rect3610"
+ style="color:#000000;fill:none;stroke-width:1.0000001" />
+ <g
+ id="g6786">
+ <path
+ sodipodi:type="star"
+ style="color:#000000;fill:#fffbc5;fill-rule:evenodd;stroke:url(#linearGradient6644);stroke-width:0.6782926;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path2669"
+ sodipodi:sides="5"
+ sodipodi:cx="103"
+ sodipodi:cy="195"
+ sodipodi:r1="6.158659"
+ sodipodi:r2="3"
+ sodipodi:arg1="-0.122765"
+ sodipodi:arg2="0.5055535"
+ 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 1.0213,3.99891 z"
+ transform="matrix(1.492696,-0.0409829,0.0399483,1.455015,302.9314,-91.01218)" />
+ <path
+ transform="matrix(1.492696,-0.0409829,0.0399483,1.455015,302.9314,-91.01218)"
+ 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 0.74239,2.94245 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0"
+ inkscape:flatsided="false"
+ sodipodi:arg2="0.4959725"
+ sodipodi:arg1="-0.1220787"
+ sodipodi:r2="2.227037"
+ sodipodi:r1="4.561672"
+ sodipodi:cy="195"
+ sodipodi:cx="103"
+ sodipodi:sides="5"
+ id="path5971"
+ style="color:#000000;fill:url(#linearGradient6636-2);fill-rule:evenodd;stroke:url(#linearGradient6625-4);stroke-width:0.6782926;stroke-linecap:round;stroke-miterlimit:80"
+ sodipodi:type="star" />
+ </g>
+ </g>
+ <use
+ xlink:href="#object-columns"
+ inkscape:label="#use5494"
+ height="1250"
+ width="1250"
+ transform="rotate(90,751.5041,292.5041)"
+ id="object-rows"
+ y="0"
+ x="0" />
+ <g
+ id="draw-geometry"
+ transform="translate(82.15887,-154.5354)"
+ inkscape:label="#g7080">
+ <rect
+ y="235.5354"
+ x="503.8411"
+ height="24"
+ width="24"
+ id="rect7049"
+ style="color:#000000;fill:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="rect6919"
+ d="M 512.7676,243.3399 521.8159,251.0712 520.8131,252.2449 511.7648,244.5135 C 511.8808,243.7931 512.276,243.4938 512.7676,243.3399 Z"
+ style="color:#000000;fill:url(#linearGradient7072);fill-rule:evenodd;stroke:#000000;stroke-width:0.5719796"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path6913"
+ d="M 521.7667,239.9343 522.1847,238.5778 524.458,236.6762 525.6627,237.7055 524.0435,240.3051 522.9164,240.7998 521.7667,239.9343 Z"
+ style="color:#000000;fill:url(#linearGradient7069);fill-rule:evenodd;stroke:#000000;stroke-width:0.8"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path6124"
+ d="M 507.2225,249.5491 506.0196,252.5658 508.0728,250.4763 507.2226,249.5491 Z"
+ style="color:#000000;fill:#b6cbe0;fill-rule:evenodd;stroke:#000000;stroke-width:0.5719796;stroke-miterlimit:30"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path6904"
+ d="M 508.0727,250.4763 507.2225,249.5491 507.3394,248.2888 519.2382,240.0135 518.9833,242.8558 508.0727,250.4763 Z"
+ style="color:#000000;fill:url(#linearGradient7065);fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ id="path6908"
+ d="M 521.6141,239.6871 C 520.7442,239.3672 519.849,239.4141 519.2387,240.0107 L 518.9822,242.8603 C 518.3414,244.1333 519.3175,244.7569 520.4067,244.0775 L 523.1814,243.3796 C 523.6755,242.6837 523.5822,241.7921 523.1305,240.9828 522.8471,240.2569 522.3474,239.8575 521.6141,239.6871 Z"
+ style="color:#000000;fill:url(#linearGradient7062);fill-rule:evenodd;stroke:#000000;stroke-width:0.8"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient7059);fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linejoin:round"
+ d="M 514.5887,256.0406 515.6372,256.7358 516.8638,256.4236 523.1814,243.3795 520.4138,244.0747 514.5887,256.0406 Z"
+ id="path6917"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <ellipse
+ transform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.0589,34.89977)"
+ id="path6923"
+ style="color:#000000;fill:#f7df3a;fill-rule:evenodd;stroke:#000000;stroke-width:1.4786291"
+ cx="610.7591"
+ cy="215.7293"
+ rx="1.866584"
+ ry="4.248087" />
+ <ellipse
+ transform="matrix(0.2940938,0.2512907,-0.2512907,0.2940938,396.5889,35.35265)"
+ style="color:#000000;fill:url(#linearGradient7074);fill-rule:evenodd;stroke:#000000;stroke-width:1.4786291"
+ id="path6925"
+ cx="610.7591"
+ cy="215.7293"
+ rx="1.866584"
+ ry="4.248087" />
+ <circle
+ transform="matrix(0.6717776,0.5740055,-0.5740055,0.6717776,236.7316,-232.3531)"
+ id="path6927"
+ style="color:#000000;fill:url(#linearGradient7102);fill-rule:evenodd"
+ cx="592.1254"
+ cy="198.5761"
+ r="0.740197" />
+ <path
+ id="path6947"
+ d="M 508.3136,248.6121 512.3845,245.8025"
+ style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.4;stroke-linecap:round"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#b6cbe0;fill-rule:evenodd;stroke:#000000;stroke-width:0.5719796;stroke-miterlimit:30"
+ d="M 515.6372,256.7358 512.8451,258.3947 514.5887,256.0406 515.6372,256.7358 Z"
+ id="path6949"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path6998"
+ d="M 522.9128,238.979 524.4219,237.7303"
+ style="color:#000000;fill:#f7df3a;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.4;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:30"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6927"
+ height="540"
+ width="1250"
+ transform="translate(1.456413,1.183335)"
+ id="use7078"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="dialog-geometry"
+ inkscape:label="#g2858"
+ transform="translate(2.000001,7.246792e-6)">
+ <g
+ transform="matrix(1.500067,0,0,1.495011,711.1557,-419.4617)"
+ id="g2770">
+ <rect
+ y="338.8083"
+ x="115.5577"
+ height="11.99987"
+ width="14.99917"
+ id="rect2772"
+ style="color:#000000;fill:url(#linearGradient2876);fill-rule:evenodd;stroke:#000000;stroke-width:0.6677634;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="335.7579"
+ x="115.5588"
+ height="3.011261"
+ width="14.99819"
+ id="rect2774"
+ style="color:#000000;fill:url(#linearGradient2878);fill-rule:evenodd;stroke:#000000;stroke-width:0.6677633;stroke-linecap:round;stroke-linejoin:round" />
+ </g>
+ <path
+ style="color:#000000;fill:url(#linearGradient2880);fill-rule:evenodd;stroke:#000000;stroke-width:0.4646012"
+ d="M 893.9086,90.94437 898.4098,99.4997 897.3001,100.0835 892.799,91.5282 C 893.1032,91.01951 893.4914,90.91259 893.9086,90.94437 Z"
+ id="path2794"
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient2882);fill-rule:evenodd;stroke:#000000;stroke-width:0.6498151"
+ d="M 901.723,91.08202 902.4465,90.1843 904.7338,89.43334 905.3331,90.57238 903.3294,92.0467 902.3301,92.08088 901.723,91.08202 Z"
+ id="path2796"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#b6cbe0;fill-rule:evenodd;stroke:#000000;stroke-width:0.4646012;stroke-miterlimit:30"
+ d="M 887.8568,93.9611 886.0417,95.87539 888.2195,94.91653 887.8569,93.96119 Z"
+ id="path2798"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient2884);fill-rule:evenodd;stroke:#000000;stroke-width:0.6498151;stroke-linejoin:round"
+ d="M 888.2194,94.91644 887.8568,93.9611 888.3242,93.04538 899.7914,90.38115 898.7441,92.44899 888.2194,94.91644 Z"
+ id="path2800"
+ sodipodi:nodetypes="cccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:url(#linearGradient2886);fill-rule:evenodd;stroke:#000000;stroke-width:0.6498151"
+ d="M 901.6822,90.84956 C 901.1222,90.34652 900.4326,90.11262 899.7927,90.37915 L 898.7419,92.45203 C 897.8754,93.21978 898.4243,93.98389 899.4505,93.79894 L 901.754,94.10707 C 902.3361,93.73068 902.5339,93.02989 902.4366,92.28338 902.4416,91.65046 902.1842,91.19877 901.6823,90.84957 Z"
+ id="path2802"
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccccc"
+ id="path2804"
+ d="M 891.4619,101.075 892.0438,101.9149 893.0632,102.0484 901.754,94.10707 899.4566,93.79895 891.4619,101.075 Z"
+ style="color:#000000;fill:url(#linearGradient2889);fill-rule:evenodd;stroke:#000000;stroke-width:0.6498151;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <ellipse
+ style="color:#000000;fill:#f7df3a;fill-rule:evenodd;stroke:#000000;stroke-width:1.4786291"
+ id="path2806"
+ transform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.556,-101.4348)"
+ cx="610.7591"
+ cy="215.7293"
+ rx="1.866584"
+ ry="4.248087" />
+ <ellipse
+ id="path2808"
+ style="color:#000000;fill:url(#linearGradient2891);fill-rule:evenodd;stroke:#000000;stroke-width:1.4786291"
+ transform="matrix(0.1463004,0.278073,-0.278073,0.1463004,868.8196,-100.9337)"
+ cx="610.7591"
+ cy="215.7293"
+ rx="1.866584"
+ ry="4.248087" />
+ <circle
+ style="color:#000000;fill:url(#linearGradient2893);fill-rule:evenodd"
+ id="path2810"
+ transform="matrix(0.3341836,0.6351824,-0.6351824,0.3341836,828.7399,-351.0096)"
+ cx="592.1254"
+ cy="198.5761"
+ r="0.740197" />
+ <path
+ style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.3249075;stroke-linecap:round"
+ d="M 888.962,93.58236 892.8787,92.68718"
+ id="path2812"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path2814"
+ d="M 892.0438,101.9149 889.4382,102.3266 891.4619,101.075 892.0438,101.9149 Z"
+ style="color:#000000;fill:#b6cbe0;fill-rule:evenodd;stroke:#000000;stroke-width:0.4646012;stroke-miterlimit:30"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#f7df3a;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.3249075;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:30"
+ d="M 902.8751,90.70598 904.3894,90.21782"
+ id="path2816"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#path6927"
+ x="0"
+ y="0"
+ id="use2818"
+ transform="matrix(0.7545079,0.3008297,-0.3008297,0.7545079,580.9682,-245.5823)"
+ width="1250"
+ height="540" />
+ </g>
+ <g
+ id="draw-geometry-set-bounding-box"
+ inkscape:label="#g3679">
+ <rect
+ style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2.3001337;stroke-dasharray:2.3001337, 2.3001337"
+ id="rect2895"
+ width="10.66002"
+ height="16.84721"
+ x="865.1501"
+ y="115.1501"
+ inkscape:label="lpetool_show_bbox" />
+ <path
+ id="path2897"
+ d="M 860,120 860,127.8525 863.9906,123.8619 860,120 Z"
+ style="color:#000000;fill:#000000;stroke-width:0.4"
+ inkscape:connector-curvature="0" />
+ <path
+ style="color:#000000;fill:#000000;stroke-width:0.4"
+ d="M 881,120 881,127.8525 877.0094,123.8619 881,120 Z"
+ id="path3677"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="draw-geometry-show-measuring-info"
+ transform="translate(23.01003,-32.10901)"
+ inkscape:label="#g3731">
+ <path
+ style="color:#000000;fill:url(#linearGradient3740);fill-rule:evenodd;stroke:#000000;stroke-width:0.9999992;stroke-linecap:round;stroke-linejoin:round"
+ d="M 891.49,114.609 914.4899,114.609 914.49,129.0345 910.3082,129.0345 905.7009,137.609 905.0809,129.0345 891.4901,129.0345 891.49,114.609 Z"
+ id="rect5189-6"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <g
+ id="text3706"
+ style="font-size:8.7460566px">
+ <path
+ id="path3719"
+ d="M 895.9941,119.2959 C 895.1463,119.2751 894.7938,120.1965 894.7211,120.898 894.6294,121.9436 894.5529,123.0953 895.08,124.0441 895.4964,124.781 896.695,124.6689 896.9976,123.891 897.4368,122.8798 897.3808,121.7206 897.2282,120.6519 897.1176,120.0199 896.7498,119.2637 895.9941,119.2959 Z M 895.9941,118.6126 C 896.9509,118.5524 897.7519,119.3144 897.9758,120.2047 898.2877,121.3635 898.2902,122.6289 897.9292,123.7767 897.6728,124.6649 896.8012,125.3325 895.862,125.2243 894.8289,125.2293 894.0921,124.2919 893.9314,123.3422 893.708,122.1354 893.6931,120.8177 894.222,119.6858 894.5435,119.0127 895.2473,118.5832 895.994,118.6126 Z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3721"
+ d="M 899.7179,124.0191 C 900.0183,124.0191 900.3187,124.0191 900.619,124.0191 900.619,124.3806 900.619,124.7422 900.619,125.1038 900.3187,125.1038 900.0183,125.1038 899.7179,125.1038 899.7179,124.7422 899.7179,124.3806 899.7179,124.0191 Z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3723"
+ d="M 903.2454,124.3778 C 904.249,124.3778 905.2526,124.3778 906.2561,124.3778 906.2561,124.6198 906.2561,124.8618 906.2561,125.1038 904.9067,125.1038 903.5572,125.1038 902.2077,125.1038 902.2077,124.8618 902.2077,124.6198 902.2077,124.3778 903.1601,123.3422 904.2578,122.431 905.0916,121.2929 905.5287,120.7197 905.4201,119.7534 904.6999,119.4637 903.876,119.1394 902.9792,119.5091 902.2504,119.9065 902.2504,119.6161 902.2504,119.3258 902.2504,119.0354 903.325,118.5793 904.7495,118.3235 905.704,119.1712 906.4861,119.884 906.3111,121.1679 905.632,121.8901 904.8737,122.7521 904.0412,123.55 903.2454,124.3778 Z"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path3725"
+ d="M 910.6847,121.666 C 911.5783,121.791 912.1673,122.7237 911.9772,123.5893 911.8831,124.5921 910.8635,125.1799 909.9352,125.2095 909.2127,125.2794 908.4835,125.1506 907.8021,124.9117 907.8021,124.6341 907.8021,124.3565 907.8021,124.0789 908.6387,124.535 909.7266,124.6809 910.6028,124.2565 911.4045,123.822 911.2934,122.4449 910.406,122.1755 909.9252,121.9917 909.4059,122.0661 908.9039,122.0504 908.9039,121.8141 908.9039,121.5778 908.9039,121.3415 909.5715,121.3127 910.4133,121.4904 910.8604,120.8661 911.2781,120.2052 910.7157,119.3318 909.9526,119.3552 909.2869,119.2871 908.6225,119.448 907.9943,119.6547 907.9943,119.3984 907.9943,119.1422 907.9943,118.886 909.0743,118.5993 910.4019,118.3569 911.3476,119.1178 912.1497,119.7623 911.9741,121.2601 910.9484,121.5818 L 910.8205,121.6274 910.6847,121.6661"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0.8557944,0,0,0.8106021,188.9219,242.3584)"
+ id="spray-mode-copy">
+ <path
+ d="M 368.2187,315.4062 C 367.625,315.4062 367.125,315.9062 367.125,316.5 L 367.125,324.6875 360.5,324.6875 C 359.9062,324.6875 359.4062,325.1562 359.4062,325.75 L 359.4062,344.7187 C 359.4062,345.1327 359.6581,345.4775 360,345.6562 360.026,345.6698 360.0353,345.7072 360.0625,345.7187 360.2408,346.0619 360.5851,346.3125 361,346.3125 L 385.625,346.3125 C 386.2188,346.3125 386.7188,345.8438 386.7187,345.25 L 386.7187,336.5312 392.8437,336.5312 C 393.4375,336.5312 393.9063,336.0626 393.9062,335.4687 L 393.9062,316.5 C 393.9062,315.9062 393.4375,315.4062 392.8437,315.4062 L 368.2187,315.4062 Z"
+ id="rect6196"
+ style="fill:#000000;stroke:#000000;stroke-width:1.2"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="translate(-3.545057e-7,0.5149192)"
+ id="g6335">
+ <rect
+ width="26.77582"
+ height="21.11171"
+ ry="1.071839"
+ x="367.1378"
+ y="315.4208"
+ id="rect6337"
+ style="fill:url(#linearGradient6466-2);stroke:#000000;stroke-width:1.2" />
+ <g
+ transform="translate(7.208876,-31.4101)"
+ id="g6339">
+ <rect
+ width="26.77582"
+ height="21.11171"
+ ry="1.071839"
+ x="352.72"
+ y="356.6143"
+ id="rect6341"
+ style="fill:#000000;stroke:#000000;stroke-width:1.2" />
+ <rect
+ width="26.77582"
+ height="21.11171"
+ ry="1.071839"
+ x="352.2051"
+ y="356.0994"
+ id="rect6343"
+ style="fill:url(#linearGradient6468-0);stroke:#000000;stroke-width:1.2" />
+ </g>
+ </g>
+ </g>
+ <g
+ transform="matrix(0.8413762,0,0,0.8105392,266.3079,183.1218)"
+ id="spray-mode-union">
+ <path
+ d="M 377.4873,389.0398 C 376.8935,389.0398 376.3936,389.5397 376.3936,390.1335 L 376.3936,398.321 369.7686,398.321 C 369.1748,398.321 368.6748,398.7897 368.6748,399.3835 L 368.6748,418.3523 C 368.6748,418.7662 368.9267,419.1111 369.2686,419.2898 369.2946,419.3034 369.3039,419.3409 369.3311,419.3523 369.5094,419.6954 369.8537,419.946 370.2686,419.946 L 394.8936,419.946 C 395.4874,419.946 395.9873,419.4773 395.9873,418.8835 L 395.9873,410.1648 402.1123,410.1648 C 402.7061,410.1648 403.1748,409.6961 403.1748,409.1023 L 403.1748,390.1335 C 403.1748,389.5397 402.7061,389.0398 402.1123,389.0398 L 377.4873,389.0398 Z"
+ id="path6506"
+ style="fill:#000000;stroke:#000000;stroke-width:1.2"
+ inkscape:connector-curvature="0" />
+ <path
+ d="M 377.4794,388.5322 C 376.8856,388.5322 376.4169,389.0322 376.4169,389.626 L 376.4169,397.8135 369.7607,397.8135 C 369.1669,397.8135 368.6669,398.2822 368.6669,398.876 L 368.6669,417.8447 C 368.6669,418.2901 368.9382,418.6825 369.3232,418.8447 369.4992,419.1949 369.8407,419.4385 370.2607,419.4385 L 394.9169,419.4385 C 395.5107,419.4385 395.9794,418.9698 395.9794,418.376 L 395.9794,409.6572 402.1044,409.6572 C 402.6982,409.6572 403.1669,409.1885 403.1669,408.5947 L 403.1669,389.626 C 403.1669,389.0322 402.6982,388.5322 402.1044,388.5322 L 377.4794,388.5322 Z"
+ id="rect6510"
+ style="fill:url(#linearGradient6563-3);stroke:#000000;stroke-width:1.2"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(164.4253,191.5008)"
+ id="spray-mode-clone"
+ inkscape:label="#g5793">
+ <path
+ transform="matrix(0.8269532,0,0,0.8236011,70.70512,33.207)"
+ d="M 373.3679,331.8837 C 372.7742,331.8837 372.2742,332.3836 372.2742,332.9774 L 372.2742,341.1649 365.6492,341.1649 C 365.0554,341.1649 364.5554,341.6336 364.5554,342.2274 L 364.5554,361.1962 C 364.5554,361.6101 364.8073,361.955 365.1492,362.1337 365.1752,362.1473 365.1845,362.1847 365.2117,362.1962 365.39,362.5393 365.7343,362.7899 366.1492,362.7899 L 390.7742,362.7899 C 391.368,362.7899 391.868,362.3212 391.8679,361.7274 L 391.8679,353.0087 397.9929,353.0087 C 398.5867,353.0087 399.0555,352.54 399.0554,351.9462 L 399.0554,332.9774 C 399.0554,332.3836 398.5867,331.8837 397.9929,331.8837 L 373.3679,331.8837 Z"
+ id="path6442"
+ style="fill:#000000;stroke:#000000;stroke-width:1.2"
+ inkscape:connector-curvature="0" />
+ <g
+ id="g5785">
+ <g
+ id="g5780">
+ <rect
+ width="22.14235"
+ height="17.38762"
+ ry="0.8827677"
+ x="378.569"
+ y="306.5587"
+ id="rect6446"
+ style="fill:url(#linearGradient5783-6-3);stroke:#000000;stroke-width:0.99" />
+ </g>
+ <g
+ id="g5775">
+ <rect
+ transform="matrix(0.8269532,0,0,0.8236011,80.49886,-10.47411)"
+ width="26.77582"
+ height="21.11171"
+ ry="1.071839"
+ x="353.2349"
+ y="394.7184"
+ id="rect6450"
+ style="fill:#000000;stroke:#000000;stroke-width:1.2" />
+ <rect
+ width="22.14235"
+ height="17.38762"
+ ry="0.8827677"
+ x="372.5197"
+ y="314.0268"
+ id="rect6452"
+ style="fill:url(#linearGradient6583-7);stroke:#c2c2c2;stroke-width:1.89;stroke-miterlimit:4.1999998" />
+ <rect
+ style="fill:none;stroke:#000000;stroke-width:1.89;stroke-miterlimit:4.1999998;stroke-dasharray:3.78, 3.78"
+ id="rect6585"
+ y="314.0268"
+ x="372.5197"
+ ry="0.8827677"
+ height="17.38762"
+ width="22.14235" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="connector-ignore"
+ inkscape:label="#g8308"
+ transform="translate(16.91698,1.000974)">
+ <g
+ id="g5802"
+ style="stroke:url(#linearGradient8290-1)"
+ transform="matrix(0.625904,0,0,0.672041,489.1682,222.3273)">
+ <rect
+ style="fill:none;stroke:url(#linearGradient8288-3);stroke-width:1.5418689;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5792"
+ width="7.99868"
+ height="2.959625"
+ x="8.5083"
+ y="211.5502" />
+ </g>
+ <path
+ style="fill:none;stroke:#3c3c3c;stroke-width:1.0000002px;stroke-linecap:round;stroke-opacity:0.8469945"
+ d="M 494.5,361.4977 500.5,369.4977"
+ id="path7667"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(0.689556,0,0,0.507098,484.5653,256.2643)"
+ id="g5761"
+ style="stroke:#000000">
+ <rect
+ style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5763"
+ width="4.508889"
+ height="2.011886"
+ x="11.50698"
+ y="205.5087" />
+ </g>
+ <use
+ xlink:href="#g5761"
+ height="1250"
+ width="1250"
+ transform="matrix(0.997702,0,0,1.018967,8.108667,2.14079)"
+ id="use5785"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="connector-avoid"
+ inkscape:label="#g8327"
+ transform="translate(16.91698,1.000974)">
+ <path
+ style="fill:none;stroke:#3c3c3c;stroke-width:1.0000002px;stroke-linecap:round;stroke-opacity:0.8306011"
+ d="M 517.5,361.4977 522.5,364.4977 522.5,369.4977"
+ id="path12164"
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(0.689556,0,0,0.507098,506.5653,256.2643)"
+ id="use5787"
+ style="stroke:#000000">
+ <rect
+ style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8286"
+ width="4.508889"
+ height="2.011886"
+ x="11.50698"
+ y="205.5087" />
+ </g>
+ <g
+ transform="matrix(0.689556,0,0,0.507098,513.514,265.2668)"
+ id="use5790"
+ style="stroke:#000000">
+ <rect
+ style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8282"
+ width="4.508889"
+ height="2.011886"
+ x="11.50698"
+ y="205.5087" />
+ </g>
+ <g
+ id="use5814"
+ style="stroke:url(#linearGradient8278-4)"
+ transform="matrix(0.625904,0,0,0.672041,509.1746,223.3273)">
+ <rect
+ style="fill:none;stroke:url(#linearGradient8276-2);stroke-width:1.5418689;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8274"
+ width="7.99868"
+ height="2.959625"
+ x="8.5083"
+ y="211.5502" />
+ </g>
+ </g>
+ <g
+ id="connector-orthogonal"
+ inkscape:label="#g8327"
+ transform="matrix(-1,0,0,1,1072.975,1.000934)">
+ <path
+ style="fill:none;stroke:#3c3c3c;stroke-width:1.0000002px;stroke-linecap:round;stroke-opacity:0.8306011"
+ d="M 517.5,360.9977 519.5,360.9997 519.5,370.002 522.5,370"
+ id="path5193"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <g
+ transform="matrix(0.689556,0,0,0.507098,506.5653,256.2643)"
+ id="g5195"
+ style="stroke:#000000">
+ <rect
+ style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5197"
+ width="4.508889"
+ height="2.011886"
+ x="11.50698"
+ y="205.5087" />
+ </g>
+ <g
+ transform="matrix(0.689556,0,0,0.507098,513.514,265.2668)"
+ id="g5199"
+ style="stroke:#000000">
+ <rect
+ style="fill:none;stroke-width:1.691099;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5201"
+ width="4.508889"
+ height="2.011886"
+ x="11.50698"
+ y="205.5087" />
+ </g>
+ <g
+ id="g5203"
+ style="stroke:url(#linearGradient5209)"
+ transform="matrix(0.625904,0,0,0.672041,509.1746,223.3273)" />
+ </g>
+ <g
+ id="connector-edit"
+ transform="matrix(0.5008045,0,0,0.5008045,547.9862,270.8335)"
+ inkscape:label="#draw_node">
+ <rect
+ y="180"
+ x="-110"
+ height="24"
+ width="24"
+ id="rect5213"
+ style="fill:none" />
+ <rect
+ style="fill:#ff0000;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.9967862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect5217"
+ width="6.117705"
+ height="5.996136"
+ x="-108.2691"
+ y="181.7348" />
+ <path
+ sodipodi:nodetypes="cccc"
+ id="path5221"
+ d="M -104.982,185.0571 -94.78307,203.1802 -87.9838,196.3841 -104.982,185.0571 Z"
+ style="fill:#000000;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.9983935;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ transform="translate(-11.08304,0.9782842)"
+ id="connector-new-connpoint"
+ inkscape:label="#g6061">
+ <path
+ sodipodi:end="4.717045"
+ sodipodi:start="3.145564"
+ d="m 578.00008,371.96029 a 10,10 0 0 1 2.95942,-7.06179 10,10 0 0 1 7.08706,-2.89839 L 588,372 Z"
+ sodipodi:ry="10"
+ sodipodi:rx="10"
+ sodipodi:cy="372"
+ sodipodi:cx="588"
+ id="path6018"
+ style="fill:#b0c5da;fill-rule:evenodd;stroke:#0000ff;stroke-miterlimit:1.5"
+ sodipodi:type="arc" />
+ <rect
+ y="360.9807"
+ x="577"
+ height="12.01931"
+ width="12.01931"
+ id="rect5199"
+ style="fill:none" />
+ <rect
+ style="fill:#ff7777;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.9411765"
+ id="rect5202"
+ width="3"
+ height="3"
+ x="580"
+ y="363" />
+ </g>
+ <g
+ transform="translate(-11.08304,0.9782842)"
+ id="connector-remove-connpoint"
+ inkscape:label="#g6098">
+ <rect
+ style="fill:none"
+ id="rect6086"
+ width="12.01931"
+ height="12.01931"
+ x="591.5"
+ y="361" />
+ <g
+ transform="matrix(0.5555556,0,0,0.5555556,57.49996,271.5555)"
+ id="g6088">
+ <path
+ id="path6090"
+ d="M 972,171 973,170 980,170 981,171 981,178 980,179 973,179 972,178 972,171 Z"
+ style="fill:#aa0000;fill-rule:evenodd;stroke:#aa0000;stroke-width:1.7999997px"
+ sodipodi:nodetypes="ccccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:2.1599998"
+ d="M 974,171.85 979,176.85"
+ id="path6092"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ <path
+ style="fill:none;stroke:#ffffff;stroke-width:2.1599998;stroke-linejoin:round"
+ d="M 979,171.85 974,176.85"
+ id="path6094"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="363"
+ x="593"
+ height="3"
+ width="3"
+ id="rect6096"
+ style="fill:#ff7777;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.9999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.9411765" />
+ </g>
+ <g
+ id="node-transform"
+ inkscape:label="#g5821">
+ <path
+ sodipodi:nodetypes="ccccccccccc"
+ id="path5786"
+ d="M 480,55 480,60 481.5,58.5 483.5,60.5 482,62 487,62 487,57 485.5,58.5 483.5,56.5 485,55 480,55 Z"
+ style="fill:#000000;stroke-width:0.1583337"
+ inkscape:connector-curvature="0" />
+ <use
+ height="540"
+ width="1250"
+ transform="matrix(-1,0,0,1,976,0)"
+ id="use5795"
+ xlink:href="#path5786"
+ y="0"
+ x="0" />
+ <use
+ height="540"
+ width="1250"
+ transform="matrix(1,0,0,-1,0,126)"
+ id="use5805"
+ xlink:href="#path5786"
+ y="0"
+ x="0" />
+ <use
+ height="540"
+ width="1250"
+ transform="rotate(180,488,63)"
+ id="use5819"
+ xlink:href="#path5786"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="tool-spray"
+ inkscape:label="#g7080"
+ transform="translate(0,-1.97016)">
+ <path
+ id="path5769"
+ d="M 452.0128,501.9702 476.0128,501.9702 476.0128,525.9702 452.0128,525.9702 452.0128,501.9702 Z"
+ style="fill:none"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
+ d="M 469.8452,510.2732 469.2327,508.1467 C 468.7258,506.7309 465.0328,507.0571 465.5559,508.5258 L 465.9811,510.5868"
+ id="path6331-0"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc"
+ id="path6315-8"
+ d="M 473.7308,513.5934 472.1639,512.8256 464.3872,513.8848 463.0416,515.3827 464.3028,522.4454 C 466.9577,520.9127 468.5125,528.5106 475.4151,524.5254 L 473.7308,513.5934 Z"
+ style="fill:url(#linearGradient7073);fill-rule:evenodd" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient7067);fill-rule:evenodd;stroke:url(#linearGradient7070);stroke-linecap:round;stroke-linejoin:round"
+ d="M 471.9733,512.7668 471.1215,510.2029 464.6474,511.2517 464.2939,514.1903"
+ id="path5211-1"
+ sodipodi:nodetypes="cccc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6317-2"
+ style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round"
+ d="M 463.9963,521.9146 463.2051,516.279 C 462.9903,515.3399 463.6342,514.1117 464.3545,514.1514 467.0077,514.2975 469.5957,513.9521 472.0919,512.8733 472.5701,512.6666 473.78,513.5671 473.8862,514.218 L 475.1086,523.9944"
+ sodipodi:nodetypes="ccsscc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none"
+ d="M 470.9273,507.9889 464.9223,508.624 465.1688,512.7295 470.8672,511.5634 470.9273,507.9889 Z"
+ id="path6311-1"
+ sodipodi:nodetypes="ccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:none;stroke:#ffffff;stroke-width:1.2262259px;stroke-linecap:round"
+ d="M 471.4201,516.1999 472.444,524.1043"
+ id="path6321-0"
+ sodipodi:nodetypes="cc" />
+ <circle
+ transform="matrix(0.4357219,0,0,0.4357219,373.8457,283.2499)"
+ id="path23475"
+ style="color:#000000;fill:#000000;stroke-width:0.2295042"
+ cx="206.5896"
+ cy="518.4219"
+ r="0.9253731" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.058646,0,0,1.058646,-27.96918,-28.7297)"
+ id="use23477"
+ xlink:href="#path23475"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="translate(0,-2.208168)"
+ id="use23479"
+ xlink:href="#use23477"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="translate(-0.6982309,1.078919)"
+ id="use23481"
+ xlink:href="#use23479"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.376269,0,0,1.376269,-175.6356,-191.1342)"
+ id="use23483"
+ xlink:href="#use23477"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.376269,0,0,1.376269,-175.9675,-192.0674)"
+ id="use23485"
+ xlink:href="#use23479"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.376269,0,0,1.376269,-175.6304,-191.5728)"
+ id="use23487"
+ xlink:href="#use23481"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.50123,0,0,1.50123,-233.3762,-255.2029)"
+ id="use23489"
+ xlink:href="#use23483"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.50123,0,0,1.50123,-233.501,-255.1293)"
+ id="use23491"
+ xlink:href="#use23485"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.50123,0,0,1.50123,-233.2539,-255.1948)"
+ id="use23493"
+ xlink:href="#use23487"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.485643,0,0,1.485643,-226.3497,-247.0189)"
+ id="use23495"
+ xlink:href="#use23489"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.485643,0,0,1.485643,-226.1442,-246.9565)"
+ id="use23497"
+ xlink:href="#use23491"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="matrix(1.485643,0,0,1.485643,-226.0963,-247.259)"
+ id="use23499"
+ xlink:href="#use23493"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="translate(-4.235815,-1.303328)"
+ id="use23501"
+ xlink:href="#path23475"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="translate(0.4480189,2.688113)"
+ id="use23503"
+ xlink:href="#use23501"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="translate(-4.724563)"
+ id="use23505"
+ xlink:href="#use23485"
+ y="0"
+ x="0" />
+ <use
+ height="1052.362"
+ width="744.0945"
+ transform="translate(0.6923928,4.113628)"
+ id="use23509"
+ xlink:href="#use23505"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ transform="translate(-1.367187e-5,-1.000977e-6)"
+ id="exchange-positions"
+ inkscape:label="#g5791">
+ <rect
+ y="217.9579"
+ x="1105.989"
+ height="24"
+ width="24"
+ id="rect5511"
+ style="opacity:0;fill:none" />
+ <g
+ transform="translate(1106.989,-822.8055)"
+ id="g6870">
+ <rect
+ style="fill:none;stroke:url(#linearGradient6608);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6878"
+ width="9.674352"
+ height="9.673169"
+ x="0.462824"
+ y="1042.226" />
+ <rect
+ style="fill:url(#linearGradient6610);fill-rule:evenodd;stroke:url(#linearGradient6612);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6880"
+ width="7.840812"
+ height="7.835659"
+ x="1.379594"
+ y="1043.145" />
+ </g>
+ <g
+ id="g6888"
+ transform="translate(1119.244,-812.1375)">
+ <rect
+ y="1042.226"
+ x="0.462824"
+ height="9.673169"
+ width="9.674352"
+ id="rect6890"
+ style="fill:none;stroke:url(#linearGradient6614);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="1043.145"
+ x="1.379594"
+ height="7.835659"
+ width="7.840812"
+ id="rect6892"
+ style="fill:url(#linearGradient6616);fill-rule:evenodd;stroke:url(#linearGradient6618-9);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="g6894"
+ transform="matrix(-1.5,0,0,-1.5,1679.065,1036.244)"
+ style="fill:#ffff00">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 373.1989,533.2837 373.1989,533.9837 376.1989,533.9837 377.3634,534.9837 377.3634,537.4991 376.0661,537.4991 377.693,539.4959 379.3768,537.4991 378.0814,537.4991 378.0814,534.7171 376.3988,533.2837 373.1989,533.2837 Z"
+ id="path6896"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ style="fill:#ffff00"
+ transform="matrix(1.5,0,0,1.5,556.9348,-576.9256)"
+ id="g5473">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc"
+ id="path5524"
+ d="M 373.1989,533.2837 373.1989,533.9837 376.1989,533.9837 377.3634,534.9837 377.3634,537.4991 376.0661,537.4991 377.693,539.4959 379.3768,537.4991 378.0814,537.4991 378.0814,534.7171 376.3988,533.2837 373.1989,533.2837 Z"
+ style="fill:#000000;fill-rule:evenodd" />
+ </g>
+ </g>
+ <g
+ id="exchange-positions-zorder"
+ transform="translate(31.99999,-26)"
+ inkscape:label="exchange-positions-zorder">
+ <rect
+ y="244"
+ x="1106"
+ height="24"
+ width="24"
+ id="rect5511-4"
+ style="opacity:0;fill:none" />
+ <g
+ transform="matrix(0.8490566,0,0,0.8490566,1107,-639.5161)"
+ id="g6870-3">
+ <rect
+ style="fill:none;stroke:url(#linearGradient8772);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6878-1"
+ width="9.674352"
+ height="9.673169"
+ x="0.462824"
+ y="1042.226" />
+ <rect
+ style="fill:url(#linearGradient8774);fill-rule:evenodd;stroke:url(#linearGradient8776);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6880-9"
+ width="7.840812"
+ height="7.835659"
+ x="1.379594"
+ y="1043.145" />
+ </g>
+ <g
+ id="g6888-1"
+ transform="matrix(0.8490566,0,0,0.8490566,1120,-632.5151)">
+ <rect
+ y="1042.226"
+ x="0.462824"
+ height="9.673169"
+ width="9.674352"
+ id="rect6890-0"
+ style="fill:none;stroke:url(#linearGradient8766);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="1043.145"
+ x="1.379594"
+ height="7.835659"
+ width="7.840812"
+ id="rect6892-9"
+ style="fill:url(#linearGradient8768);fill-rule:evenodd;stroke:url(#linearGradient8770);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ id="g6894-4"
+ transform="matrix(-1.214009,0,0,-1.214009,1572.567,906.4111)"
+ style="fill:#ffff00">
+ <path
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 372.8308,534.9312 372.8308,535.6312 377.8463,535.6312 379.0109,536.6312 379.0109,537.4991 377.7136,537.4991 379.3404,539.4959 381.0242,537.4991 379.7289,537.4991 379.7289,536.3645 378.0462,534.9312 372.8308,534.9312 Z"
+ id="path6896-5"
+ sodipodi:nodetypes="cccccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ style="fill:#ffff00"
+ transform="matrix(1.214009,0,0,1.214009,661.8316,-398.1738)"
+ id="g5473-6">
+ <path
+ sodipodi:nodetypes="cccccccccccc"
+ id="path5524-2"
+ d="M 373.9715,533.0883 373.9715,533.7883 379.5775,533.7883 380.7421,534.7883 380.7421,535.6562 379.4448,535.6562 381.0716,537.653 382.7554,535.6562 381.4601,535.6562 381.4601,534.5216 379.7774,533.0883 373.9715,533.0883 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ inkscape:connector-curvature="0" />
+ </g>
+ <use
+ xlink:href="#path10475"
+ height="1250"
+ width="1250"
+ id="use7638-0"
+ y="0"
+ x="0"
+ transform="translate(1155.035,83.0092)" />
+ <use
+ xlink:href="#path10483"
+ height="1250"
+ width="1250"
+ id="use8589-6"
+ y="0"
+ x="0"
+ transform="translate(1152.062,76.0092)" />
+ <use
+ transform="translate(1155.062,79.0092)"
+ x="0"
+ y="0"
+ id="use7946"
+ width="1250"
+ height="1250"
+ xlink:href="#path10483" />
+ <path
+ id="path10449-0"
+ d="M 1116.127,258 1115.191,258 1115.191,263.4545 1113.318,263.4545 1115.574,266.0069 1118,263.4545 1116.127,263.4545 1116.127,258 Z"
+ style="fill:#c80000;fill-rule:evenodd"
+ sodipodi:nodetypes="cccccccc"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path10449-0-8"
+ d="M 1112.236,266 1111.354,266 1111.354,263.0642 1111.354,260.5455 1109.591,260.5455 1111.964,258.1621 1114,260.5455 1112.236,260.5455 1112.236,266 Z"
+ style="fill:#c80000;fill-rule:evenodd"
+ sodipodi:nodetypes="ccccccccc"
+ inkscape:connector-curvature="0" />
+ </g>
+ <g
+ id="exchange-positions-clockwise"
+ transform="translate(23.99999,-26)"
+ inkscape:label="exchange-positions-clockwise">
+ <rect
+ style="opacity:0;fill:none"
+ id="rect8798"
+ width="24"
+ height="24"
+ x="1146"
+ y="244" />
+ <g
+ id="g8800"
+ transform="matrix(0.8490566,0,0,0.8490566,1147,-639.5161)">
+ <rect
+ y="1042.226"
+ x="0.462824"
+ height="9.673169"
+ width="9.674352"
+ id="rect8802"
+ style="fill:none;stroke:url(#linearGradient8980);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0" />
+ <rect
+ y="1043.145"
+ x="1.379594"
+ height="7.835659"
+ width="7.840812"
+ id="rect8804"
+ style="fill:url(#linearGradient8982);fill-rule:evenodd;stroke:url(#linearGradient8984);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ </g>
+ <g
+ transform="matrix(0.8490566,0,0,0.8490566,1160,-632.5151)"
+ id="g8806">
+ <rect
+ style="fill:none;stroke:url(#linearGradient8986);stroke-width:0.925648;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8808"
+ width="9.674352"
+ height="9.673169"
+ x="0.462824"
+ y="1042.226" />
+ <rect
+ style="fill:url(#linearGradient8988);fill-rule:evenodd;stroke:url(#linearGradient8990);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect8810"
+ width="7.840812"
+ height="7.835659"
+ x="1.379594"
+ y="1043.145" />
+ </g>
+ <g
+ style="fill:#ffff00"
+ transform="matrix(-1.214009,0,0,-1.214009,1612.567,906.4111)"
+ id="g8812">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccccccccccc"
+ id="path8814"
+ d="M 372.8308,534.9312 372.8308,535.6312 377.8463,535.6312 379.0109,536.6312 379.0109,537.4991 377.7136,537.4991 379.3404,539.4959 381.0242,537.4991 379.7289,537.4991 379.7289,536.3645 378.0462,534.9312 372.8308,534.9312 Z"
+ style="fill:#000000;fill-rule:evenodd" />
+ </g>
+ <g
+ id="g8816"
+ transform="matrix(1.214009,0,0,1.214009,701.8316,-398.1738)"
+ style="fill:#ffff00">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 373.9715,533.0883 373.9715,533.7883 379.5775,533.7883 380.7421,534.7883 380.7421,535.6562 379.4448,535.6562 381.0716,537.653 382.7554,535.6562 381.4601,535.6562 381.4601,534.5216 379.7774,533.0883 373.9715,533.0883 Z"
+ id="path8818"
+ sodipodi:nodetypes="cccccccccccc" />
+ </g>
+ <g
+ inkscape:transform-center-x="3.042784"
+ transform="matrix(0.5350629,0.5892249,-0.5892249,0.5350629,686.558,-576.3326)"
+ id="g8956">
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5077016;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1.5077017, 1.5077017"
+ d="M 1173.915,279.6085 C 1176.943,279.6085 1179.4,277.1505 1179.4,274.1219 1179.4,271.0933 1176.943,268.6353 1173.915,268.6353"
+ id="path11132-6"
+ sodipodi:nodetypes="csc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cccc"
+ style="fill:#c80000;fill-rule:evenodd"
+ d="M 1172.21,279.2058 1175.981,276.0625 1175.981,282.3493 1172.21,279.2058 Z"
+ id="path11140-4" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="csc"
+ id="path8948"
+ d="M 1173.102,268.4294 C 1170.074,268.4294 1167.617,270.8874 1167.617,273.916 1167.617,276.9446 1170.074,279.4026 1173.102,279.4026"
+ style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5077016;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:1.5077017, 1.5077017;stroke-dashoffset:0.3015402" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path8950"
+ d="M 1174.61,268.7807 1170.839,271.9241 1170.839,265.6374 1174.61,268.7807 Z"
+ style="fill:#c80000;fill-rule:evenodd"
+ sodipodi:nodetypes="cccc" />
+ </g>
+ </g>
+ <g
+ id="text_remove_kerns"
+ transform="translate(-693.87,270.0361)">
+ <g
+ transform="matrix(0.922438,0,0,0.922438,106.4646,4.828925)"
+ id="g2607">
+ <rect
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:0.7402338px"
+ id="rect3019"
+ width="29.18541"
+ height="29.19199"
+ x="1352.876"
+ y="51.67942" />
+ <path
+ id="text3027"
+ d="M 1357.349,63.74015 1356.074,67.18071 1358.629,67.18071 1357.349,63.74015 M 1356.819,62.81866 1357.884,62.81866 1360.531,69.73218 1359.555,69.73218 1358.921,67.95865 1355.791,67.95865 1355.158,69.73218 1354.167,69.73218 1356.819,62.81866 M 1364.123,63.74015 1362.848,67.18071 1365.402,67.18071 1364.123,63.74015 M 1363.593,62.81866 1364.658,62.81866 1367.305,69.73218 1366.328,69.73218 1365.695,67.95865 1362.564,67.95865 1361.932,69.73218 1360.94,69.73218 1363.593,62.81866"
+ style="fill:#000000"
+ inkscape:connector-curvature="0" />
+ <path
+ id="text3097"
+ d="M 1370.815,63.74015 1369.54,67.18071 1372.095,67.18071 1370.815,63.74015 M 1370.284,62.81866 1371.35,62.81866 1373.997,69.73218 1373.02,69.73218 1372.388,67.95865 1369.257,67.95865 1368.624,69.73218 1367.633,69.73218 1370.284,62.81866 M 1377.589,63.74015 1376.314,67.18071 1378.868,67.18071 1377.589,63.74015 M 1377.059,62.81866 1378.124,62.81866 1380.771,69.73218 1379.794,69.73218 1379.161,67.95865 1376.03,67.95865 1375.397,69.73218 1374.407,69.73218 1377.059,62.81866"
+ style="fill:#000000"
+ inkscape:connector-curvature="0" />
+ </g>
+ <rect
+ y="51.96389"
+ x="1353.87"
+ height="28"
+ width="28"
+ id="rect6752"
+ style="fill:none" />
+ </g>
+ <g
+ id="text_line_spacing"
+ transform="translate(-0.0508118,0.0123038)">
+ <rect
+ y="321.9877"
+ x="480.0508"
+ height="28"
+ width="28"
+ id="rect6696"
+ style="fill:none" />
+ <g
+ transform="translate(-787.9306,270.3015)"
+ id="g7600">
+ <use
+ xlink:href="#g3805"
+ height="1250"
+ width="1250"
+ transform="matrix(0.684222,0,0,0.684222,1257.669,-36.0664)"
+ id="use3810"
+ y="0"
+ x="0" />
+ <g
+ transform="matrix(0.684211,0,0,0.684211,1257.617,-22.11736)"
+ id="g3813">
+ <path
+ inkscape:connector-curvature="0"
+ style="fill:url(#linearGradient12388);stroke:#000000"
+ d="M 33,129.5 38,129.5 44.5,147.5 40.5,147.5 39.5,145 31.5,145 30.5,147.5 26.5,147.5 33,129.5 Z M 38.5,141.5 35.5,133 32.5,141.5 38.5,141.5 Z"
+ id="path3815"
+ sodipodi:nodetypes="ccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path3817"
+ d="M 33.5,130.5 28,146"
+ style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:1.0000002px;stroke-linecap:round" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path3819"
+ d="M 38,142.5244 32.5,142.5244"
+ style="fill:url(#radialGradient12390);fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient12392);stroke-width:1.0000002px;stroke-linecap:round" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="text_word_spacing"
+ transform="matrix(0.942859,0,0,0.942859,-695.392,273.9242)">
+ <g
+ transform="matrix(0.992487,0,0,0.989897,10.11498,1.557598)"
+ id="g7621-3">
+ <rect
+ style="fill:none"
+ id="rect6706-6"
+ width="29.92172"
+ height="30"
+ x="1310"
+ y="49.93628" />
+ </g>
+ <g
+ transform="matrix(1.060604,0,0,1.060604,769.377,-305.3736)"
+ style="font-size:16px;font-family:Arial;-inkscape-font-specification:Arial;letter-spacing:0;word-spacing:0;fill:#0000ff;stroke:#000000;stroke-width:0.5"
+ id="text11660">
+ <path
+ style="color:#000000;fill:url(#linearGradient5857-1);stroke:none;stroke-width:0.9999999"
+ d="M 510,347.3125 510,349 C 510.2685,349.074 510.5104,349.2153 510.7187,349.4375 511.0312,349.7656 511.1719,350.2396 511.1875,350.875 L 510,350.875 510,352.2187 513.375,352.2187 C 513.406,350.5365 513.0573,349.3125 512.3437,348.5 511.7449,347.8138 510.9656,347.4228 510,347.3125 Z M 511.0625,353.0937 C 510.9427,353.5104 510.7656,353.8125 510.5312,354 510.3747,354.1253 510.2054,354.2084 510,354.25 L 510,355.9062 C 510.7568,355.8582 511.4126,355.6745 511.9375,355.3125 512.5469,354.8906 512.9687,354.2708 513.25,353.4687 L 511.0625,353.0937 Z"
+ id="path11665"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ d="M 522.7891,355.75 520.75,355.75 520.75,354.5312 C 520.4114,355.0052 520.0104,355.3594 519.5469,355.5937 519.0885,355.8229 518.625,355.9375 518.1562,355.9375 517.2031,355.9375 516.3854,355.5547 515.7031,354.7891 515.026,354.0182 514.6875,352.9453 514.6875,351.5703 514.6875,350.1641 515.0182,349.0964 515.6797,348.3672 516.3411,347.6328 517.1771,347.2656 518.1875,347.2656 519.1146,347.2656 519.9167,347.651 520.5937,348.4219 L 520.5937,344.2969 522.7891,344.2969 522.7891,355.75 M 516.9297,351.4219 C 516.9297,352.3073 517.0521,352.9479 517.2969,353.3437 517.651,353.9167 518.1458,354.2031 518.7812,354.2031 519.2864,354.2031 519.7161,353.9896 520.0703,353.5625 520.4245,353.1302 520.6016,352.487 520.6016,351.6328 520.6016,350.6797 520.4297,349.9948 520.0859,349.5781 519.7422,349.1563 519.3021,348.9453 518.7656,348.9453 518.2448,348.9453 517.8073,349.1537 517.4531,349.5703 517.1042,349.9818 516.9297,350.599 516.9297,351.4219"
+ style="color:#000000;fill:url(#linearGradient5857-64)"
+ id="path11667" />
+ <path
+ inkscape:connector-curvature="0"
+ d="M 533.2031,347.4531 533.2031,349.2031 531.7031,349.2031 531.7031,352.5469 C 531.7031,353.224 531.7161,353.6198 531.7421,353.7344 531.7731,353.8437 531.8381,353.9349 531.9374,354.0078 532.0416,354.0808 532.1666,354.1172 532.3124,354.1172 532.5155,354.1172 532.8098,354.0472 533.1952,353.9062 L 533.3827,355.6094 C 532.8723,355.8281 532.2942,355.9375 531.6484,355.9375 531.2525,355.9375 530.8958,355.8725 530.578,355.7422 530.2603,355.6068 530.026,355.4349 529.8749,355.2266 529.7291,355.013 529.6275,354.7266 529.5702,354.3672 529.5232,354.112 529.5002,353.5964 529.5002,352.8203 L 529.5002,349.2031 528.4924,349.2031 528.4924,347.4531 529.5002,347.4531 529.5002,345.8047 531.7034,344.5234 531.7034,347.4531 533.2034,347.4531"
+ style="color:#000000;fill:url(#linearGradient5621-6)"
+ id="path11669" />
+ <path
+ style="color:#000000;fill:url(#linearGradient5621-8);stroke:none;stroke-width:0.684211"
+ d="M 534.75,344.2812 534.75,355.75 536.9375,355.75 536.9375,351.5937 C 536.9375,350.8958 536.9945,350.3542 537.125,350 537.2604,349.6406 537.4635,349.3958 537.75,349.2187 537.827,349.1707 537.8948,349.1287 537.9779,349.0937 L 537.9779,347.625 C 537.5928,347.8308 537.2639,348.1184 536.9375,348.5 L 536.9375,344.2812 Z"
+ id="path11671"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccc" />
+ <path
+ style="color:#000000;-inkscape-font-specification:Arial;fill:#000000;stroke:none"
+ d="M 537.9836,347.3884 C 537.721,347.4997 537.4121,347.7687 537.1875,347.9687 L 537.1875,344.2812 537.1875,344.0312 536.9375,344.0312 534.75,344.0312 534.5,344.0312 534.5,344.0312 534.5,344.2812 534.5,355.75 534.5,356 534.75,356 536.9375,356 537.1875,356 537.1875,355.75 537.1875,351.5937 C 537.1875,350.9095 537.2655,350.3927 537.375,350.0937 L 537.344,350.0937 C 537.4635,349.7765 537.6315,349.5882 537.8752,349.4375 537.9352,349.4005 537.9302,349.3315 538.0086,349.3066 M 535,344.5312 536.6875,344.5312 536.6875,348.5 536.6875,349.1875 537.125,348.6562 C 537.3171,348.4317 537.763,348.0907 537.971,347.9353 L 537.971,348.7165 C 537.927,348.7385 537.6679,348.9735 537.625,349 537.2958,349.2035 537.0575,349.5047 536.9062,349.9062 L 536.8752,349.9062 C 536.7248,350.3156 536.6877,350.8822 536.6877,351.5937 L 536.6877,355.5 535.0002,355.5 535.0002,344.5312 Z"
+ id="path11671-3"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc" />
+ <path
+ style="color:#000000;-inkscape-font-specification:Arial;fill:#000000;stroke:none"
+ d="M 509.9927,349.2942 C 510.2199,349.3572 510.3528,349.4034 510.5312,349.5937 L 510.5312,349.6247 C 510.7348,349.8384 510.7944,350.2077 510.8437,350.6247 L 510,350.6247 510,352.4684 513.375,352.4684 513.625,352.4684 513.625,352.2184 C 513.657,350.4993 513.3003,349.2191 512.5312,348.3434 511.8927,347.6117 511.0148,347.1783 509.9981,347.0622 Z M 512.1562,348.6562 C 512.7755,349.3614 513.0814,350.4745 513.0937,351.9687 L 510.0014,351.9687 510.0014,351.125 511.1875,351.125 511.4375,351.125 511.4375,350.875 C 511.4215,350.2174 511.262,349.668 510.9062,349.2812 510.8962,349.2712 510.8812,349.2912 510.8752,349.2812 510.6953,349.0947 510.2189,348.8896 509.9961,348.7977 L 509.9961,347.6212 C 510.8736,347.7582 511.5344,348.1 512.1564,348.6562 Z M 510.875,352.8125 510.813,353.0312 C 510.7024,353.4159 510.5555,353.6685 510.3755,353.8125 510.2454,353.9166 510.1681,353.9719 509.9987,353.999 L 509.9987,356.1573 C 510.7883,356.1403 511.5165,355.926 512.0889,355.5313 512.748,355.0749 513.2013,354.4003 513.4951,353.5625 L 513.5891,353.2813 513.2766,353.2193 511.0891,352.8443 510.8704,352.8133 Z M 511.1875,353.375 512.8125,353.6562 C 512.553,354.2465 512.2511,354.7685 511.7812,355.0937 511.3784,355.3716 510.5824,355.5778 510.0014,355.6509 L 510.0014,354.4946 C 510.1586,354.4376 510.5593,354.2901 510.6875,354.1875 510.9159,354.0048 511.062,353.6974 511.1875,353.375 Z"
+ id="path11665-7"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path3817-5"
+ d="M 537.7359,348.3968 C 537.4759,348.5671 537.1938,348.8009 536.9338,349.1468"
+ style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-linecap:round" />
+ <path
+ inkscape:connector-curvature="0"
+ d="M 515.1958,351.9239 C 515.1958,350.5177 515.416,349.4058 516.0775,348.6766 516.7389,347.9422 517.6191,347.6855 518.6295,347.7739"
+ style="color:#000000;-inkscape-font-specification:Arial;fill:none;stroke:url(#linearGradient12203);stroke-linecap:round"
+ id="path11667-0"
+ sodipodi:nodetypes="ccc" />
+ <path
+ inkscape:connector-curvature="0"
+ d="M 520.929,352.4257 C 520.929,353.1543 520.643,353.6684 520.1629,354.1523 519.8022,354.5158 519.3421,354.6878 518.8187,354.642"
+ style="color:#000000;-inkscape-font-specification:Arial;fill:none;stroke:url(#linearGradient12201);stroke-linecap:round"
+ id="path11667-0-3"
+ sodipodi:nodetypes="csc" />
+ <path
+ inkscape:connector-curvature="0"
+ d="M 511.4152,353.5647 C 511.1329,354.2528 510.8173,354.5035 510.2283,354.8466"
+ style="color:#000000;-inkscape-font-specification:Arial;fill:none;stroke:url(#linearGradient12220);stroke-linecap:round"
+ id="path11667-0-3-8"
+ sodipodi:nodetypes="cc" />
+ </g>
+ <path
+ style="fill:#b2dafe;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.7256771px;stroke-linecap:round"
+ d="M 1333.3,63.71495 1334.346,63.71495"
+ id="path3819-4"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path3817-9"
+ d="M 1330.49,63.76263 1330.978,63.76167"
+ style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.7256771px;stroke-linecap:round" />
+ </g>
+ <g
+ id="text_letter_spacing"
+ transform="matrix(0.942859,0,0,0.942859,-725.403,273.9242)">
+ <g
+ transform="matrix(0.992487,0,0,0.989897,10.11498,1.557598)"
+ id="g7621">
+ <rect
+ style="fill:none"
+ id="rect6706"
+ width="29.92172"
+ height="30"
+ x="1310"
+ y="49.93628" />
+ </g>
+ <g
+ id="g11383"
+ transform="translate(-0.306361)">
+ <use
+ xlink:href="#use3810"
+ x="0"
+ y="0"
+ id="use11377"
+ transform="matrix(1.060604,0,0,1.060604,-41.64705,2.913479)"
+ width="1250"
+ height="1250" />
+ <use
+ xlink:href="#g3813"
+ x="0"
+ y="0"
+ id="use11379"
+ transform="matrix(1.060604,0,0,1.060604,-26.74292,-11.87951)"
+ width="1250"
+ height="1250" />
+ </g>
+ </g>
+ <g
+ id="text_horz_kern"
+ transform="translate(-668.472,236.5637)">
+ <g
+ transform="translate(0.437484)"
+ id="g7628">
+ <path
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:1.1457608;stroke-linecap:square"
+ d="M 1283.273,89.56319 1283.273,110.3093"
+ id="path2219"
+ transform="translate(-1.25,-0.5)"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#g11383"
+ height="1250"
+ width="1250"
+ id="use11389"
+ y="0"
+ x="0"
+ transform="matrix(0.942859,0,0,0.942859,32.60846,37.50304)" />
+ </g>
+ <g
+ transform="matrix(0.935775,0,0,0.933333,42.8409,7.095812)"
+ id="g7662-8">
+ <g
+ id="g6738-8"
+ transform="translate(0.232684,0.559354)" />
+ <rect
+ style="fill:none"
+ id="rect6736-4"
+ width="29.92172"
+ height="30"
+ x="1309.75"
+ y="83.93627" />
+ </g>
+ </g>
+ <g
+ id="text_vert_kern"
+ transform="translate(-741.483,236.5637)">
+ <g
+ transform="matrix(0.935775,0,0,0.933333,85.72702,7.095784)"
+ id="g7662">
+ <rect
+ style="fill:none"
+ id="rect6736"
+ width="29.92172"
+ height="30"
+ x="1309.884"
+ y="83.93627" />
+ </g>
+ <g
+ id="g7648">
+ <path
+ id="path2221"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:1.199;stroke-linecap:square"
+ d="M 1324.696,87.52091 1324.696,109.2329 M 1338.079,101.3851 1324.888,101.3851 M 1324.388,105.8851 1311.388,105.8851"
+ sodipodi:nodetypes="cccccc"
+ transform="translate(0.755145,1.059354)"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use11377"
+ height="1250"
+ width="1250"
+ transform="matrix(0.942859,0,0,0.942859,75.57607,38.50326)"
+ id="use11392"
+ y="0"
+ x="0" />
+ </g>
+ <use
+ xlink:href="#g3813"
+ height="1250"
+ width="1250"
+ transform="translate(50.538,22.7904)"
+ id="use3728"
+ y="0"
+ x="0" />
+ </g>
+ <g
+ id="text_rotation"
+ transform="translate(-724.5715,236.3563)">
+ <g
+ transform="matrix(0.935775,0,0,0.933333,88.85183,7.069861)"
+ id="g7699">
+ <g
+ id="g6769"
+ transform="translate(-0.990112,0.559353)" />
+ <rect
+ style="fill:none"
+ id="rect6775"
+ width="29.92172"
+ height="30"
+ x="1352.59"
+ y="84.18627" />
+ </g>
+ <g
+ transform="matrix(0.9996731,0,0,1,2.594501,1.121155e-6)"
+ id="g7685">
+ <path
+ id="path3005"
+ style="color:#000000;fill:none;stroke:#000000;stroke-width:1.1707308;stroke-linecap:square"
+ d="M 1366.121,88.83886 1366.121,110.0337 M 1378.044,110.0737 1366.419,103.4487"
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0" />
+ <use
+ xlink:href="#use11392"
+ height="1250"
+ width="1250"
+ transform="translate(40.65159,-3.000001)"
+ id="use11398"
+ y="0"
+ x="0" />
+ <use
+ xlink:href="#g3813"
+ x="0"
+ y="0"
+ id="use3744"
+ transform="rotate(29.99998,1274.974,261.7423)"
+ width="1250"
+ height="1250" />
+ </g>
+ <g
+ transform="matrix(0.935775,0,0,0.933333,167.3071,6.369855)"
+ id="g7641">
+ <rect
+ style="fill:none"
+ id="rect15695"
+ width="29.92172"
+ height="30"
+ x="1268.75"
+ y="84.93627" />
+ </g>
+ </g>
+ <g
+ id="text_subscript"
+ transform="matrix(0.942859,0,0,0.942859,-575.1453,244.6314)"
+ style="fill:#cccccc">
+ <rect
+ style="fill:none"
+ id="rect5911"
+ width="29.92172"
+ height="30"
+ x="1310"
+ y="49.93628" />
+ <g
+ transform="matrix(1.060604,0,0,1.060604,610.0014,-259.457)"
+ style="font-style:italic;font-weight:bold;font-size:24px;font-family:Arial;-inkscape-font-specification:'Arial Bold Italic';letter-spacing:0;word-spacing:0;fill:none;stroke:#000000;stroke-width:0.75"
+ id="text5975">
+ <path
+ inkscape:connector-curvature="0"
+ d="M 669.6914,306.5078 666.5977,310 662.4727,310 668.2266,303.625 665.0625,297.5547 668.6367,297.5547 670.4531,301.1055 673.6055,297.5547 677.6953,297.5547 671.918,304.0117 675.0586,310 671.4844,310 669.6914,306.5078"
+ style="color:#000000;fill:url(#linearGradient5918-3-6)"
+ id="path5935" />
+ <path
+ inkscape:connector-curvature="0"
+ d="M 677.6619,306.7104 679.8405,306.7104 680.3889,310.74 C 680.526,311.7759 680.6022,312.5021 680.6174,312.9185 680.9018,312.0908 681.2928,311.2173 681.7905,310.2982 L 683.7253,306.7104 686.041,306.7104 681.044,315.5922 C 680.6327,316.3285 680.3077,316.844 680.069,317.1385 679.8354,317.433 679.551,317.6641 679.2159,317.8317 678.8858,317.9993 678.4871,318.083 678.0199,318.083 677.5578,318.083 677.0373,318.0017 676.4584,317.8393 L 676.6488,316.2092 C 676.9129,316.2854 677.1693,316.3235 677.4182,316.3235 678.0885,316.3235 678.6395,315.8156 679.0711,314.8 L 677.6619,306.7104"
+ style="color:#000000;fill:url(#linearGradient5932-9-2)"
+ id="path5937" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path6782"
+ d="M 663.8155,309.4334 668.6847,304.0513 M 670.6799,301.7978 673.812,298.1916"
+ style="stroke:#808080;stroke-width:0.5;stroke-linecap:round" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path6792"
+ d="M 677.1662,316.7991 C 678.0717,316.7991 678.6479,316.511 679.43,315.1938 M 681.0764,312.7654 684.0193,307.25"
+ style="stroke:#83c3fd;stroke-width:0.5;stroke-linecap:round" />
+ </g>
+ </g>
+ <g
+ id="text_superscript">
+ <rect
+ y="292"
+ x="629.9996"
+ height="28"
+ width="28.00001"
+ id="rect5896"
+ style="fill:none" />
+ <g
+ id="text5926"
+ style="font-style:italic;font-weight:bold;font-size:24px;font-family:Arial;-inkscape-font-specification:'Arial Bold Italic';letter-spacing:0;word-spacing:0;stroke:#000000;stroke-width:0.75">
+ <path
+ id="path5908"
+ style="fill:url(#linearGradient5918)"
+ d="M 639.6914,308.5078 636.5977,312 632.4727,312 638.2266,305.625 635.0625,299.5547 638.6367,299.5547 640.4531,303.1055 643.6055,299.5547 647.6953,299.5547 641.918,306.0117 645.0586,312 641.4844,312 639.6914,308.5078"
+ inkscape:connector-curvature="0" />
+ <path
+ id="path5910"
+ style="fill:url(#linearGradient5932)"
+ d="M 647.6619,294.3104 649.8405,294.3104 650.3889,298.34 C 650.526,299.3759 650.6022,300.1021 650.6174,300.5185 650.9018,299.6908 651.2928,298.8173 651.7905,297.8982 L 653.7253,294.3104 656.041,294.3104 651.044,303.1922 C 650.6327,303.9285 650.3077,304.444 650.069,304.7385 649.8354,305.033 649.551,305.2641 649.2159,305.4317 648.8858,305.5993 648.4871,305.683 648.0199,305.683 647.5578,305.683 647.0373,305.6018 646.4584,305.4393 L 646.6488,303.8092 C 646.9129,303.8854 647.1693,303.9235 647.4182,303.9235 648.0885,303.9235 648.6395,303.4156 649.0711,302.4 L 647.6619,294.3104"
+ inkscape:connector-curvature="0" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path6006"
+ d="M 633.8112,311.4529 638.6803,306.0707 M 640.6756,303.8172 643.8077,300.2111"
+ style="fill:none;stroke:#808080;stroke-width:0.5;stroke-linecap:round" />
+ <path
+ sodipodi:nodetypes="cccc"
+ inkscape:connector-curvature="0"
+ id="path6790"
+ d="M 647.196,304.4839 C 648.1015,304.4839 648.6777,304.1958 649.4598,302.8786 M 651.1062,300.4502 654.0491,294.9348"
+ style="fill:none;stroke:#82c2fe;stroke-width:0.5;stroke-linecap:round" />
+ </g>
+ </g>
+ <g
+ id="tool-measure"
+ transform="matrix(0,1,1,0,303.3594,23.95023)"
+ inkscape:label="#tool-measure">
+ <rect
+ transform="matrix(-0.5,0.8660254,0.8660254,0.5,0,0)"
+ style="fill:url(#linearGradient10236);fill-rule:evenodd;stroke:url(#linearGradient10238);stroke-width:0.9999998;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect10234"
+ width="9"
+ height="17"
+ x="-125.5174"
+ y="455.1053" />
+ <g
+ transform="matrix(-0.5,0.8660254,0.8660254,0.5,583.0174,-336.6053)"
+ id="g11186">
+ <rect
+ y="117.5082"
+ x="456.5083"
+ height="18.99178"
+ width="10.99167"
+ id="rect10232"
+ style="fill:none;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <g
+ id="g11166"
+ transform="matrix(-0.5,-0.8660254,-0.8660254,0.5,827.0362,462.4495)">
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round"
+ d="M 468.4443,154.4562 469.4443,156.1883"
+ id="path11168"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11170"
+ d="M 469.1764,151.7242 C 469.1764,151.7242 471.1764,155.1883 471.1764,155.1883"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round"
+ d="M 471.9085,152.4562 472.9085,154.1883"
+ id="path11172"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11174"
+ d="M 472.6405,149.7242 C 472.6405,149.7242 474.6405,153.1883 474.6405,153.1883"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11176"
+ d="M 475.3726,150.4562 476.3725,152.1883"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round"
+ sodipodi:nodetypes="cc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round"
+ d="M 476.1046,147.7242 C 476.1046,147.7242 478.1046,151.1883 478.1046,151.1883"
+ id="path11180"
+ inkscape:connector-curvature="0" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path11182"
+ d="M 478.8367,148.4562 479.8367,150.1883"
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round"
+ sodipodi:nodetypes="cc" />
+ <path
+ style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round"
+ d="M 479.5687,145.7242 C 479.5687,145.7242 481.5687,149.1883 481.5687,149.1883"
+ id="path11184"
+ inkscape:connector-curvature="0" />
+ </g>
+ </g>
+ </g>
+ <g
+ id="g7621-2"
+ transform="matrix(0.9357753,0,0,0.9333333,-316.6114,-22.53112)">
+ <rect
+ y="49.93628"
+ x="1310"
+ height="30"
+ width="29.92172"
+ id="rect6706-4"
+ style="fill:none" />
+ </g>
+ <g
+ id="snap-text-baseline"
+ inkscape:label="#toggle_snap_text_baseline">
+ <path
+ style="fill:none;stroke:#008000;stroke-width:0.9413574px;stroke-linecap:square"
+ d="M 912.5,44.98691 924.5,44.98691"
+ id="path13356"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc" />
+ <use
+ height="1250"
+ width="1250"
+ transform="translate(-363.3501,-20.14579)"
+ id="use11377-6"
+ y="0"
+ x="0"
+ xlink:href="#use3810" />
+ <rect
+ transform="rotate(-45)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#008000;stroke-width:0.9051017;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect3224-2-8-6-5-8"
+ width="3.584063"
+ height="3.621212"
+ x="611.2788"
+ y="674.8813" />
+ </g>
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.4532662"
+ id="rect2808-3"
+ width="24"
+ height="24"
+ x="930"
+ y="25" />
+ <g
+ id="snap-others"
+ inkscape:label="#toggle_snap_others">
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ id="path3570-5"
+ d="M 935,31.25 935,39.75"
+ style="fill:none;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="30.1269"
+ x="932.9951"
+ height="4.01786"
+ width="4.0099"
+ id="rect3568-1"
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+ <path
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path6498-1-8"
+ d="M 939,39 945,30"
+ style="color:#000000;fill:#c00000;stroke:#0065ff;stroke-width:1px" />
+ <circle
+ transform="matrix(0.8749999,0,0,0.875,282.6876,5.625)"
+ id="path6530-3-7-6"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.1428572;stroke-linecap:round"
+ cx="753.5"
+ cy="33"
+ r="2" />
+ <g
+ transform="translate(1.5,0.5)"
+ id="g13570">
+ <path
+ inkscape:connector-curvature="0"
+ id="path6380-5"
+ d="M 943,37.5 943,40.5"
+ style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6380-4-1"
+ d="M 943,41.5 943,44.5"
+ style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6380-8-4"
+ d="M 939.5,41 942.5,41"
+ style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path6380-4-0-5"
+ d="M 943.5,41 946.5,41"
+ style="color:#000000;fill:#000000;stroke:#000000;stroke-width:1px" />
+ </g>
+ <circle
+ transform="matrix(0.8749999,0,0,0.875,277.1876,14.625)"
+ id="path6530-3-7-6-0"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.1428572;stroke-linecap:round"
+ cx="753.5"
+ cy="33"
+ r="2" />
+ </g>
+ <g
+ inkscape:label="#mesh-gradient"
+ id="mesh-gradient"
+ transform="translate(507.9575,294.8933)">
+ <rect
+ style="color:#000000;fill:none"
+ id="box"
+ width="24"
+ height="24"
+ x="-19.9575"
+ y="90.10669" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ id="path6190"
+ d="M -0.4575,109.6067 C -3.9575,102.1067 4.0425,102.1067 -0.4575,94.60669 -7.9575,99.10669 -7.9575,91.10669 -15.4575,94.60669 -10.9575,102.1067 -18.9575,102.1067 -15.4575,109.6067 -7.9575,106.1067 -7.9575,114.1067 -0.4575,109.6067 Z"
+ style="fill:url(#linearGradient6212);stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ inkscape:connector-curvature="0" />
+ <rect
+ style="fill:#ffffff;stroke:#000000"
+ id="rect6105"
+ width="4"
+ height="4"
+ x="-17.4575"
+ y="92.60669" />
+ <use
+ transform="matrix(1,0,0,0.99644,13.7166,13.06755)"
+ xlink:href="#rect3568"
+ id="use3133"
+ x="0"
+ y="0"
+ width="100%"
+ height="100%" />
+ <use
+ transform="matrix(1,0,0,0.99644,13.7265,-1.932448)"
+ xlink:href="#rect3568"
+ id="use3135"
+ x="0"
+ y="0"
+ width="100%"
+ height="100%" />
+ <use
+ transform="matrix(1,0,0,0.99644,-1.2735,13.06755)"
+ xlink:href="#rect3568"
+ id="use3137"
+ x="0"
+ y="0"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ id="paint-gradient-mesh"
+ inkscape:label="#fill_mesh">
+ <rect
+ style="fill:#99b6d4"
+ height="9.5"
+ width="9.5"
+ y="347"
+ x="1095.5"
+ id="rect3140" />
+ <rect
+ style="fill:#ffffff"
+ height="9.5"
+ width="9.5"
+ y="357"
+ x="1095.5"
+ id="rect3142" />
+ <rect
+ style="fill:#99b6d4"
+ height="9.5"
+ width="9.5"
+ y="357"
+ x="1105"
+ id="rect3144" />
+ <rect
+ style="fill:#ffffff"
+ height="9.5"
+ width="9.5"
+ y="347"
+ x="1105"
+ id="rect3146" />
+ <use
+ xlink:href="#rect4381"
+ transform="translate(425.0351,282.0202)"
+ id="use3148"
+ x="0"
+ y="0"
+ width="100%"
+ height="100%" />
+ </g>
+ <g
+ id="paint-gradient-conical"
+ inkscape:label="#fill_conical">
+ <path
+ sodipodi:rx="9.5"
+ sodipodi:ry="9.5"
+ style="fill:#ffffff"
+ sodipodi:type="arc"
+ sodipodi:start="0"
+ sodipodi:cy="357"
+ sodipodi:cx="1135"
+ sodipodi:end="1.047198"
+ d="M 1144.5,357 A 9.5,9.5 0 0 1 1139.75,365.2272 L 1135,357 Z"
+ id="path3145" />
+ <path
+ sodipodi:rx="9.5"
+ sodipodi:ry="9.5"
+ style="fill:#ffffff"
+ sodipodi:type="arc"
+ sodipodi:start="4.18879"
+ sodipodi:cy="357"
+ sodipodi:cx="1135"
+ sodipodi:end="5.235988"
+ d="M 1130.25,348.7728 A 9.5,9.5 0 0 1 1139.75,348.7728 L 1135,357 Z"
+ id="path3147" />
+ <path
+ sodipodi:rx="9.5"
+ sodipodi:ry="9.5"
+ style="fill:#99b6d4"
+ sodipodi:type="arc"
+ sodipodi:start="1.047198"
+ sodipodi:cy="357"
+ sodipodi:cx="1135"
+ sodipodi:end="2.094395"
+ d="M 1139.75,365.2272 A 9.5,9.5 0 0 1 1130.25,365.2272 L 1135,357 Z"
+ id="path3149" />
+ <path
+ sodipodi:rx="9.5"
+ sodipodi:ry="9.5"
+ style="fill:#ffffff"
+ sodipodi:type="arc"
+ d="M 1130.25,365.2272 A 9.5,9.5 0 0 1 1125.5,357 L 1135,357 Z"
+ sodipodi:cy="357"
+ sodipodi:cx="1135"
+ sodipodi:end="3.141593"
+ sodipodi:start="2.094395"
+ id="path3151" />
+ <path
+ sodipodi:rx="9.5"
+ sodipodi:ry="9.5"
+ style="fill:#99b6d4"
+ sodipodi:type="arc"
+ sodipodi:start="3.141593"
+ sodipodi:cy="357"
+ sodipodi:cx="1135"
+ sodipodi:end="4.18879"
+ d="M 1125.5,357 A 9.5,9.5 0 0 1 1130.25,348.7728 L 1135,357 Z"
+ id="path3153" />
+ <path
+ sodipodi:rx="9.5"
+ sodipodi:ry="9.5"
+ style="fill:#99b6d4"
+ sodipodi:type="arc"
+ d="M 1139.75,348.7728 A 9.5,9.5 0 0 1 1144.5,357 L 1135,357 Z"
+ sodipodi:cy="357"
+ sodipodi:cx="1135"
+ sodipodi:end="6.283185"
+ sodipodi:start="5.235988"
+ id="path3155" />
+ <circle
+ style="fill:none;stroke:#000000"
+ id="path3157"
+ cx="1135"
+ cy="357"
+ r="9.5" />
+ </g>
+ <g
+ id="dialog-filters"
+ inkscape:label="#dialog-filters">
+ <path
+ sodipodi:nodetypes="cscccccc"
+ inkscape:connector-curvature="0"
+ id="path7138"
+ d="M 272.415,308.6281 C 272.509,305.3138 278.0595,305.1187 279.875,305.1077 281.8707,305.0957 287.2213,305.3694 287.3348,308.5442 L 281.3157,314.8308 281.3157,319.0217 C 279.8863,319.4867 279.7151,319.5463 278.3661,319.0217 L 278.3661,314.8308 Z"
+ style="opacity:0.909;fill:url(#linearGradient7163);stroke:#000000;stroke-width:0.9143469;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:10" />
+ <ellipse
+ id="path7140"
+ style="opacity:0.909;fill:url(#radialGradient7218);stroke:url(#radialGradient7220);stroke-width:3.5711801;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:10"
+ transform="matrix(0.115021,0,0,0.1903986,253.0723,212.7017)"
+ cx="234.355"
+ cy="496.273"
+ rx="60.6092"
+ ry="14.6472" />
+ <rect
+ style="fill:none"
+ id="rect4326-5"
+ width="16"
+ height="16"
+ x="272"
+ y="304" />
+ </g>
+ <g
+ id="symbols_old"
+ inkscape:label="#symbols"
+ transform="translate(0.6024061,-0.8334349)">
+ <path
+ transform="matrix(1.19879,-0.3146184,0.3093107,1.219499,-108.76,51.0626)"
+ d="m 339.00428,147.22297 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 -0.1749,0.6527 0.67983,4.86217 0.10312,5.21433 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0.1295655"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.807987"
+ sodipodi:arg1="1.047198"
+ sodipodi:r2="3.476299"
+ sodipodi:r1="6.964194"
+ sodipodi:cy="141.1918"
+ sodipodi:cx="335.5222"
+ sodipodi:sides="4"
+ id="path6040-9"
+ style="color:#000000;fill:none;stroke:#c80000;stroke-width:0.7902741;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:0.790274, 0.790274"
+ sodipodi:type="star" />
+ <path
+ transform="matrix(1.19879,-0.3146184,0.3093107,1.219499,-106.2295,53.36064)"
+ d="m 339.00428,147.22297 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 -0.1749,0.6527 0.67983,4.86217 0.10312,5.21433 z"
+ inkscape:randomized="0"
+ inkscape:rounded="0.1295655"
+ inkscape:flatsided="false"
+ sodipodi:arg2="1.807987"
+ sodipodi:arg1="1.047198"
+ sodipodi:r2="3.476299"
+ sodipodi:r1="6.964194"
+ sodipodi:cy="141.1918"
+ sodipodi:cx="335.5222"
+ sodipodi:sides="4"
+ id="path6040"
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.7902742;stroke-linejoin:round;stroke-miterlimit:0"
+ sodipodi:type="star" />
+ </g>
+ <g
+ transform="translate(10.12068,24.83988)"
+ inkscape:label="#symbols"
+ id="symbols">
+ <rect
+ style="color:#000000;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108"
+ id="rect14677"
+ width="16"
+ height="16"
+ x="319.423"
+ y="108.194" />
+ <path
+ style="color:#000000;fill:url(#linearGradient5545-0-70);fill-rule:evenodd;stroke:#000000;stroke-width:1.0000007;stroke-linejoin:round;stroke-miterlimit:0"
+ d="M 321.4694,109.627 C 325.4824,108.4924 329.457,108.3482 333.3766,109.627 332.4143,112.6883 333.2424,115.5915 332.8513,118.5393 332.529,120.9684 330.1322,122.4298 327.4581,123.6656 325.2231,122.4245 322.5151,121.4377 322.0298,118.5393 321.5371,115.5973 322.3342,111.8965 321.4694,109.627 Z"
+ id="path13801"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccscsc" />
+ <g
+ id="g14615"
+ style="color:#000000;fill:url(#linearGradient15270-5);fill-rule:evenodd"
+ transform="matrix(0.0362255,0,0,0.0374743,341.0312,112.2468)">
+ <path
+ sodipodi:nodetypes="czczc"
+ inkscape:connector-curvature="0"
+ id="path13803"
+ d="M -477.8634,129.033 C -525.6256,93.68458 -437.3889,30.32002 -406.5889,99.87521 -375.7888,169.4304 -429.5858,207.6033 -446.2757,164.6702 -428.8608,164.5632 -412.1147,145.3545 -432.5068,116.074 -452.899,86.79346 -476.4068,97.43427 -477.8634,129.033 Z" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0"
+ id="path13805"
+ d="M -406.5888,201.5225 C -363.777,163.166 -382.1057,79.29995 -426.0273,42.77461 -416.9104,15.273 -401.3604,-9.214447 -375.0013,-28.09496 -353.5282,-11.39881 -334.7341,8.935762 -323.9752,42.77461 -370.9234,76.33181 -386.2968,164.4648 -343.4137,201.5225 -351.1706,216.0243 -356.7218,232.671 -375.0012,238.7548 -389.3257,233.7161 -400.9014,219.5169 -406.5888,201.5225 Z" />
+ <path
+ inkscape:transform-center-y="-7.288905"
+ inkscape:transform-center-x="-68.84826"
+ d="M -273.4425,129.033 C -225.6803,93.68458 -313.917,30.32002 -344.717,99.87521 -375.5171,169.4304 -321.7201,207.6033 -305.0302,164.6702 -322.4451,164.5632 -339.1912,145.3545 -318.7991,116.074 -298.4069,86.79346 -274.8991,97.43427 -273.4425,129.033 Z"
+ id="path13807"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="czczc" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path13809"
+ d="M -443.0312,121.4688 A 10.001,10.001 0 1 0 -443.0312,141.4688 L -307.7812,141.4688 A 10.001,10.001 0 1 0 -307.7812,121.4688 L -443.0312,121.4688 Z"
+ style="-inkscape-font-specification:sans-serif;stroke-width:20" />
+ </g>
+ </g>
+ <g
+ id="symbol-add"
+ inkscape:label="#symbols"
+ transform="translate(10.12068,44.83988)">
+ <rect
+ y="108.194"
+ x="319.6498"
+ height="16"
+ width="16"
+ id="rect15227"
+ style="color:#000000;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" />
+ <ellipse
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linejoin:round;stroke-miterlimit:0"
+ id="path10909"
+ transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)"
+ cx="337.3443"
+ cy="163.0209"
+ rx="3.963478"
+ ry="4.113043" />
+ <path
+ inkscape:connector-curvature="0"
+ id="path4685-2"
+ d="M 319.522,118.6983 319.522,116.5755 327.1498,116.5755 327.1498,111.194 325.1498,111.194 328.0237,108.194 330.8976,111.194 328.8976,111.194 328.8976,118.6983 Z"
+ style="fill:#000000;fill-rule:evenodd"
+ sodipodi:nodetypes="cccccccccc" />
+ </g>
+ <g
+ 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;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" />
+ <g
+ id="g7224"
+ transform="translate(-0.0655561,0.8269009)">
+ <path
+ inkscape:connector-curvature="0"
+ id="path4011"
+ d="M 334.5089,115.0312 320.3373,115.0312"
+ style="fill:none;stroke:#000000;stroke-width:1.4" />
+ </g>
+ </g>
+ <g
+ transform="matrix(0,1,1,0,221.5126,-146.552)"
+ inkscape:label="#symbols"
+ id="symbol-remove">
+ <rect
+ style="color:#000000;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108"
+ id="rect10952"
+ width="16"
+ height="16"
+ x="319.6498"
+ y="108.194" />
+ <ellipse
+ transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)"
+ id="path10954"
+ style="color:#000000;fill:none;fill-rule:evenodd;stroke:#cc0000;stroke-width:0.9166216;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:0.9166216, 1.8332432"
+ cx="337.3443"
+ cy="163.0209"
+ rx="3.963478"
+ ry="4.113043" />
+ <path
+ sodipodi:nodetypes="cccccccccc"
+ style="fill:#000000;fill-rule:evenodd"
+ d="M 319.522,118.6983 319.522,116.5755 327.1498,116.5755 327.1498,111.194 325.1498,111.194 328.0237,108.194 330.8976,111.194 328.8976,111.194 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;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108"
+ id="rect10979"
+ width="16"
+ height="16"
+ x="319.6498"
+ y="108.194" />
+ <ellipse
+ style="color:#000000;fill:none;fill-rule:evenodd;stroke:#c80000;stroke-width:0.6086934;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:0.6086934, 0.6086934"
+ id="path10989"
+ transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)"
+ cx="337.3443"
+ cy="163.0209"
+ rx="3.963478"
+ ry="4.113043" />
+ <ellipse
+ transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)"
+ id="path10981"
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linejoin:round;stroke-miterlimit:0"
+ cx="337.3443"
+ cy="163.0209"
+ rx="3.963478"
+ ry="4.113043" />
+ </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;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke-width:0.9868108" />
+ <ellipse
+ transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)"
+ id="path11049"
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.6086935;stroke-linejoin:round;stroke-miterlimit:0"
+ cx="337.3443"
+ cy="163.0209"
+ rx="3.963478"
+ ry="4.113043" />
+ <ellipse
+ style="color:#000000;fill:none;fill-rule:evenodd;stroke:#c80000;stroke-width:0.9166215;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:0.9166215, 0.9166215"
+ id="path11051"
+ transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)"
+ cx="337.3443"
+ cy="163.0209"
+ rx="3.963478"
+ ry="4.113043" />
+ </g>
+ <g
+ transform="translate(30.12068,84.83988)"
+ inkscape:label="#symbols"
+ id="symbol-fit">
+ <rect
+ style="color:#000000;fill:url(#linearGradient15175-8);fill-rule:evenodd;stroke:#3465a4;stroke-width:1.0000001;stroke-linecap:square;stroke-dasharray:1.0000001, 2.0000002"
+ 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.30778,163.0209 a 3.9634781,4.1130428 0 0 1 -3.96348,4.11305 l 0,-4.11305 z"
+ sodipodi:ry="4.113043"
+ sodipodi:rx="3.963478"
+ sodipodi:cy="163.0209"
+ sodipodi:cx="337.3443"
+ id="path11111"
+ style="color:#000000;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.3492142;stroke-linejoin:round;stroke-miterlimit:0"
+ sodipodi:type="arc"
+ sodipodi:start="0"
+ sodipodi:end="1.570796" />
+ <ellipse
+ style="color:#000000;fill:none;stroke:#c80000;stroke-width:0.9166215;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:0.9166215, 0.9166215"
+ id="path11051-8"
+ transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)"
+ cx="337.3443"
+ cy="163.0209"
+ rx="3.963478"
+ ry="4.113043" />
+ </g>
+ <g
+ id="pack-more">
+ <rect
+ y="235"
+ x="350"
+ height="16"
+ width="16"
+ style="fill:none"
+ id="rect19733" />
+ <g
+ style="fill:#98b6d6;fill-opacity:0.7;stroke:#000000"
+ id="g19735">
+ <rect
+ x="351.5"
+ y="236.5"
+ width="3"
+ height="3"
+ id="rect19737" />
+ <rect
+ x="356.5"
+ y="236.5"
+ width="3"
+ height="3"
+ id="rect19739" />
+ <rect
+ x="361.5"
+ y="236.5"
+ width="3"
+ height="3"
+ id="rect19741" />
+ <rect
+ x="351.5"
+ y="241.5"
+ width="3"
+ height="3"
+ id="rect19743" />
+ <rect
+ x="356.5"
+ y="241.5"
+ width="3"
+ height="3"
+ id="rect19745" />
+ <rect
+ x="361.5"
+ y="241.5"
+ width="3"
+ height="3"
+ id="rect19747" />
+ <rect
+ x="351.5"
+ y="246.5"
+ width="3"
+ height="3"
+ id="rect19749" />
+ <rect
+ x="356.5"
+ y="246.5"
+ width="3"
+ height="3"
+ id="rect19751" />
+ <rect
+ x="361.5"
+ y="246.5"
+ width="3"
+ height="3"
+ id="rect19753" />
+ </g>
+ </g>
+ <g
+ id="pack-less">
+ <rect
+ y="215"
+ x="350"
+ height="16"
+ width="16"
+ style="fill:none"
+ id="rect19756" />
+ <g
+ style="fill:#98b6d6;fill-opacity:0.7;stroke:#000000"
+ id="g19758">
+ <rect
+ x="351.5"
+ y="216.5"
+ width="5"
+ height="5"
+ id="rect19760" />
+ <rect
+ x="359.5"
+ y="216.5"
+ width="5"
+ height="5"
+ id="rect19762" />
+ <rect
+ x="351.5"
+ y="224.5"
+ width="5"
+ height="5"
+ id="rect19764" />
+ <rect
+ x="359.5"
+ y="224.5"
+ width="5"
+ height="5"
+ id="rect19766" />
+ </g>
+ </g>
+ <g
+ id="boundingbox_top_left"
+ transform="translate(998.1471,-107)"
+ inkscape:label="#boundingbox_top_left">
+ <rect
+ y="475"
+ x="-262.1471"
+ height="16"
+ width="16"
+ id="rect7835"
+ style="fill:none" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0"
+ id="path7837"
+ d="M -257.6471,489.5 -257.6471,479.5 -247.6471,479.5 -247.6471,481.5 -255.6471,481.5 -255.6471,489.5 Z"
+ style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" />
+ <circle
+ transform="matrix(1.05938,0,0,1.05938,-645.2144,-1289.466)"
+ id="path7824"
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ id="boundingbox_top"
+ transform="translate(1022.147,-107)">
+ <rect
+ style="fill:none"
+ id="rect7846"
+ width="16"
+ height="16"
+ x="-262.1471"
+ y="475" />
+ <path
+ style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round"
+ d="M -260.6471,479.5 -247.6471,479.5 -247.6471,481.5 -260.6471,481.5 Z"
+ id="path7848"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <circle
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ id="path7850"
+ transform="matrix(1.05938,0,0,1.05938,-642.7144,-1289.466)"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ id="boundingbox_top_right"
+ transform="rotate(90,322.4265,952.5735)">
+ <rect
+ style="fill:none"
+ id="rect7856"
+ width="16"
+ height="16"
+ x="-262.1471"
+ y="475" />
+ <path
+ style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round"
+ d="M -257.6471,489.5 -257.6471,479.5 -247.6471,479.5 -247.6471,481.5 -255.6471,481.5 -255.6471,489.5 Z"
+ id="path7858"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc" />
+ <circle
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ id="path7860"
+ transform="matrix(1.05938,0,0,1.05938,-645.2144,-1289.466)"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ transform="rotate(90,310.4265,964.5735)"
+ id="boundingbox_right">
+ <rect
+ y="475"
+ x="-262.1471"
+ height="16"
+ width="16"
+ id="rect7864"
+ style="fill:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path7866"
+ d="M -260.6471,479.5 -247.6471,479.5 -247.6471,481.5 -260.6471,481.5 Z"
+ style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" />
+ <circle
+ transform="matrix(1.05938,0,0,1.05938,-642.7144,-1289.466)"
+ id="path7868"
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ transform="rotate(180,268.9265,453.5)"
+ id="boundingbox_bottom_right">
+ <rect
+ y="475"
+ x="-262.1471"
+ height="16"
+ width="16"
+ id="rect7876"
+ style="fill:none" />
+ <path
+ sodipodi:nodetypes="ccccccc"
+ inkscape:connector-curvature="0"
+ id="path7878"
+ d="M -257.6471,489.5 -257.6471,479.5 -247.6471,479.5 -247.6471,481.5 -255.6471,481.5 -255.6471,489.5 Z"
+ style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" />
+ <circle
+ transform="matrix(1.05938,0,0,1.05938,-645.2144,-1289.466)"
+ id="path7880"
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ id="boundingbox_bottom"
+ transform="rotate(180,256.9265,453.5)">
+ <rect
+ style="fill:none"
+ id="rect7884"
+ width="16"
+ height="16"
+ x="-262.1471"
+ y="475" />
+ <path
+ style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round"
+ d="M -260.6471,479.5 -247.6471,479.5 -247.6471,481.5 -260.6471,481.5 Z"
+ id="path7886"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccc" />
+ <circle
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ id="path7888"
+ transform="matrix(1.05938,0,0,1.05938,-642.7144,-1289.466)"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ id="boundingbox_bottom_left"
+ transform="rotate(-90,215.4265,-45.57354)">
+ <rect
+ style="fill:none"
+ id="rect7896"
+ width="16"
+ height="16"
+ x="-262.1471"
+ y="475" />
+ <path
+ style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round"
+ d="M -257.6471,489.5 -257.6471,479.5 -247.6471,479.5 -247.6471,481.5 -255.6471,481.5 -255.6471,489.5 Z"
+ id="path7898"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccccccc" />
+ <circle
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ id="path7900"
+ transform="matrix(1.05938,0,0,1.05938,-645.2144,-1289.466)"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ transform="rotate(-90,203.4265,-57.57354)"
+ id="boundingbox_left">
+ <rect
+ y="475"
+ x="-262.1471"
+ height="16"
+ width="16"
+ id="rect7905"
+ style="fill:none" />
+ <path
+ sodipodi:nodetypes="ccccc"
+ inkscape:connector-curvature="0"
+ id="path7907"
+ d="M -260.6471,479.5 -247.6471,479.5 -247.6471,481.5 -260.6471,481.5 Z"
+ style="fill:#ffffff;stroke:#888a85;stroke-width:1px;stroke-linejoin:round" />
+ <circle
+ transform="matrix(1.05938,0,0,1.05938,-642.7144,-1289.466)"
+ id="path7909"
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ transform="translate(1022.147,-83)"
+ id="boundingbox_center">
+ <rect
+ y="475"
+ x="-262.1471"
+ height="16"
+ width="16"
+ id="rect7917"
+ style="fill:none" />
+ <circle
+ transform="matrix(1.05938,0,0,1.05938,-642.7144,-1286.966)"
+ id="path7922"
+ style="fill:url(#radialSnotBall);stroke:#3a7304;stroke-width:0.9439481;stroke-miterlimit:3.3333333"
+ cx="366.7874"
+ cy="1670.756"
+ r="3.775792" />
+ </g>
+ <g
+ id="path-mode-bspline"
+ transform="matrix(1.395066,-1.366399,1.366399,1.395066,-466.9364,1306.511)"
+ inkscape:label="#bspline_mode">
+ <path
+ inkscape:connector-curvature="0"
+ style="color:#000000;fill:none;stroke:#0000ff;stroke-width:0.9960949;stroke-linecap:round;stroke-linejoin:round"
+ d="M 961.8604,56.03607 C 961.8604,56.03607 963.2385,54.53784 965.1208,54.27549 967.0031,54.01314 968.7049,56.05562 968.7049,56.05562"
+ id="path-mode-spiro-3-8-8"
+ sodipodi:nodetypes="czc"
+ inkscape:label="#spiro_splines_mode" />
+ <path
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="ccc"
+ id="path6177-8-2"
+ d="M 960.716,54.82044 965.2198,50.24637 969.7936,54.72621"
+ style="fill:none;stroke:#646464;stroke-width:0.7501467;stroke-linecap:round;stroke-linejoin:round" />
+ <rect
+ y="-639.9971"
+ x="724.2002"
+ height="1.022964"
+ width="1.022542"
+ id="rect8372-9-8"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ transform="rotate(44.40522)" />
+ <rect
+ transform="rotate(44.40522)"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ id="rect6941"
+ width="1.022542"
+ height="1.022964"
+ x="724.2002"
+ y="-633.3398" />
+ <rect
+ y="-639.9971"
+ x="730.8575"
+ height="1.022964"
+ width="1.022542"
+ id="rect6954"
+ style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.2557612;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
+ transform="rotate(44.40522)" />
+ </g>
+ <g
+ id="on"
+ transform="translate(658.5112,-35.5352)">
+ <ellipse
+ style="color:#000000;fill:url(#linearGradient33206);fill-rule:evenodd;stroke:url(#linearGradient33208);stroke-linejoin:round"
+ id="ellipse10646"
+ cx="18.48884"
+ cy="207.5353"
+ rx="6.611154"
+ ry="6.515604"
+ transform="translate(-1.031494e-7,-4.35791e-5)" />
+ <path
+ sodipodi:nodetypes="ccc"
+ inkscape:connector-curvature="0"
+ id="path10653"
+ d="M 15.35239,207.5955 17.38434,209.4915 21.62529,205.579"
+ style="color:#000000;fill:none;stroke:url(#linearGradient33214)" />
+ <ellipse
+ transform="matrix(0.8723531,0,0,0.8723531,2.360043,26.49119)"
+ ry="6.515604"
+ rx="6.611154"
+ cy="207.5353"
+ cx="18.48884"
+ id="ellipse10289"
+ style="color:#000000;fill:none;stroke:url(#linearGradient33204);stroke-linejoin:round" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.531496"
+ id="rect9056-1"
+ width="15.99999"
+ height="15.99999"
+ x="10.48884"
+ y="199.5352" />
+ </g>
+ <g
+ id="off"
+ transform="translate(634.5112,-18.0497)">
+ <ellipse
+ ry="6.515604"
+ rx="6.611154"
+ cy="190.0497"
+ cx="18.48884"
+ id="path10622"
+ style="color:#000000;fill:url(#linearGradient33193);fill-rule:evenodd;stroke:url(#linearGradient33195);stroke-linejoin:round" />
+ <path
+ inkscape:transform-center-y="3.571599"
+ inkscape:transform-center-x="-5.253213"
+ sodipodi:nodetypes="cc"
+ inkscape:connector-curvature="0"
+ id="path10677"
+ d="M 15.90515,187.466 21.07254,192.6334"
+ style="color:#000000;fill:none;stroke:url(#linearGradient33210)" />
+ <path
+ style="color:#000000;fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient33212)"
+ d="M 21.07254,187.466 15.90515,192.6334"
+ id="path10688"
+ inkscape:connector-curvature="0"
+ sodipodi:nodetypes="cc"
+ inkscape:transform-center-x="3.571613"
+ inkscape:transform-center-y="5.253199" />
+ <ellipse
+ style="color:#000000;fill:none;stroke:url(#linearGradient33191);stroke-linejoin:round"
+ id="ellipse10324"
+ cx="18.48884"
+ cy="207.5353"
+ rx="6.611154"
+ ry="6.515604"
+ transform="matrix(0.8723531,0,0,0.8723531,2.360048,9.005643)" />
+ <rect
+ style="color:#000000;fill:none;stroke-width:0.531496"
+ id="rect9056-0"
+ width="15.99999"
+ height="15.99999"
+ x="10.48885"
+ y="182.0497" />
+ </g>
+ <g
+ inkscape:label="dialog-templates"
+ id="dialog-templates"
+ transform="translate(10,185)">
+ <rect
+ y="0"
+ x="0"
+ height="16"
+ width="16"
+ id="rect20201"
+ style="fill:none;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:1, 1" />
+ <path
+ style="fill:url(#linearGradient20197);fill-rule:evenodd;stroke:url(#linearGradient20199);stroke-linejoin:round;stroke-dasharray:1, 1;stroke-dashoffset:0.5"
+ d="M 12.5,15.5 2.5,15.5 2.5,1.5"
+ id="path4679-4" />
+ <path
+ style="fill:url(#linearGradient20188);fill-rule:evenodd;stroke:url(#linearGradient20190);stroke-linecap:square;stroke-linejoin:round"
+ d="m 2.5,1.5 0,-1 7,0 4,4 0,11 -1,0"
+ id="path20168" />
+ <path
+ style="fill:none;stroke:#c8c8c8;stroke-dasharray:1, 1;stroke-dashoffset:1"
+ d="M 3,14.5 12.5,14.5"
+ id="path20172" />
+ <path
+ style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square"
+ d="m 12.5,14.5 0,-9"
+ id="path5602-7" />
+ <path
+ style="fill:#ffffff;fill-rule:evenodd;stroke:url(#linearGradient5799-9);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round"
+ d="m 9.5,0.5 4,4 -4,0 0,-4 z"
+ id="path4681-4" />
+ </g>
+ <g
+ inkscape:label="#interactive_simplify"
+ id="interactive_simplify"
+ transform="translate(212.4641,-329.0092)">
+ <rect
+ style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none"
+ id="rect17937"
+ width="24"
+ height="24"
+ x="284.96881"
+ y="527.33087" />
+ <path
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.29999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+ d="m 291.8638,531.1819 c -0.9589,-0.0225 -1.8212,0.2671 -2.4022,0.8478 -0.5809,0.5804 -0.8415,1.3501 -0.949,2.1401 -0.2153,1.5801 0.1166,3.4151 0.4589,5.2243 0.3424,1.8092 0.7093,3.5928 0.7126,4.7538 0.002,0.5803 -0.1057,0.9751 -0.1888,1.1067 -0.083,0.1314 -0.0538,0.1555 -0.4139,0.1465 -0.8149,-0.0207 -1.0935,-0.2916 -1.3828,-0.8956 -0.2892,-0.6041 -0.4179,-1.5834 -0.3915,-2.5994 0.053,-2.0319 0.6394,-4.137 0.6394,-4.137 l -1.8025,-0.5098 c 0,0 -0.6485,2.2477 -0.7097,4.599 -0.0306,1.1756 0.0664,2.3974 0.5746,3.4583 0.5082,1.0609 1.5988,1.9211 3.0246,1.9573 0.8287,0.0209 1.6451,-0.3825 2.0474,-1.0195 0.4023,-0.6371 0.481,-1.3539 0.4789,-2.1123 -0.005,-1.5162 -0.4098,-3.3186 -0.7464,-5.0972 -0.3365,-1.7787 -0.5908,-3.5308 -0.4422,-4.6215 0.0744,-0.5456 0.2337,-0.8843 0.4169,-1.0673 0.1831,-0.1831 0.4291,-0.3127 1.0308,-0.2986 0.5934,0.0139 0.902,0.1424 1.0729,0.2732 0.1709,0.1307 0.2696,0.2902 0.3407,0.6083 0.1422,0.6361 -0.0148,1.8136 -0.276,3.0414 -0.2611,1.2281 -0.6033,2.4956 -0.5717,3.6753 0.0158,0.59 0.1295,1.2038 0.5407,1.7235 0.4114,0.5199 1.0945,0.8133 1.8193,0.8505 0.6009,0.031 1.1498,-0.0577 1.6138,-0.3126 0.464,-0.2549 0.7989,-0.6741 0.9828,-1.0954 0.3679,-0.8427 0.3088,-1.6926 0.276,-2.4643 -0.0327,-0.7717 -0.0522,-1.4864 0.0282,-1.7967 0.0401,-0.1552 0.0722,-0.1769 0.0731,-0.1775 8e-4,-6e-4 0.0285,-0.0397 0.262,-0.0338 0.2843,0.007 0.3121,0.049 0.3549,0.0845 0.0428,0.0355 0.1199,0.1398 0.2534,0.369 0.1334,0.2292 0.3239,0.5798 0.7012,0.8842 0.3774,0.3045 0.9176,0.5006 1.5292,0.5267 1.5208,0.0649 2.2952,-0.5299 2.9233,-0.8731 1.0682,-0.583 2.7809,-0.4337 4.199,0.0366 l 0.5914,-1.777 c -1.6907,-0.5609 -3.8586,-0.9062 -5.6888,0.0929 -0.8628,0.4715 -0.8252,0.6955 -1.946,0.6477 -0.3132,-0.0132 -0.3746,-0.0672 -0.4308,-0.1126 -0.0563,-0.0454 -0.1303,-0.1475 -0.2592,-0.3688 -0.1289,-0.2215 -0.3074,-0.5645 -0.6758,-0.8703 -0.3685,-0.3058 -0.9078,-0.4974 -1.5039,-0.5126 -0.5396,-0.0136 -1.0734,0.1219 -1.4757,0.4421 -0.4024,0.3205 -0.6154,0.7635 -0.721,1.1717 -0.2113,0.8161 -0.1184,1.6155 -0.0873,2.3486 0.0312,0.7334 -0.0102,1.3795 -0.1211,1.6334 -0.0554,0.1271 -0.0867,0.1563 -0.1661,0.2 -0.0796,0.0438 -0.2549,0.103 -0.614,0.0846 -0.3595,-0.0186 -0.4001,-0.0807 -0.4477,-0.141 -0.0477,-0.06 -0.1284,-0.2472 -0.138,-0.611 -0.0195,-0.7276 0.262,-1.9651 0.5322,-3.2359 0.2702,-1.2706 0.5525,-2.5888 0.2732,-3.8384 -0.1397,-0.6249 -0.4675,-1.2539 -1.0335,-1.687 -0.5661,-0.4331 -1.3044,-0.6416 -2.1658,-0.6618 z"
+ id="path14318-5"
+ inkscape:connector-curvature="0" />
+ </g>
+ <path
+ inkscape:connector-curvature="0"
+ id="path17973"
+ d="m 530.63737,204.94308 c -0.63926,-0.015 -1.21413,0.17807 -1.60146,0.5652 -0.38727,0.38693 -0.561,0.90007 -0.63267,1.42673 -0.14353,1.0534 0.0777,2.27674 0.30593,3.48287 0.22827,1.20613 0.47287,2.3952 0.47507,3.1692 0.001,0.38687 -0.0705,0.65007 -0.12587,0.7378 -0.0553,0.0876 -0.0359,0.10367 -0.27593,0.0977 -0.54327,-0.0138 -0.729,-0.1944 -0.92187,-0.59707 -0.1928,-0.40273 -0.2786,-1.0556 -0.261,-1.73293 0.0353,-1.3546 0.42627,-2.758 0.42627,-2.758 l -1.20167,-0.33987 c 0,0 -0.43233,1.49847 -0.47313,3.066 -0.0204,0.78374 0.0443,1.59827 0.38307,2.30554 0.3388,0.70726 1.06586,1.28073 2.0164,1.30486 0.55246,0.0139 1.09673,-0.255 1.36493,-0.67966 0.2682,-0.42474 0.32067,-0.9026 0.31927,-1.4082 -0.003,-1.0108 -0.2732,-2.2124 -0.4976,-3.39814 -0.22434,-1.1858 -0.39387,-2.35386 -0.2948,-3.081 0.0496,-0.36373 0.1558,-0.58953 0.27793,-0.71153 0.12207,-0.12207 0.28607,-0.20847 0.6872,-0.19907 0.3956,0.009 0.60133,0.0949 0.71527,0.18214 0.11393,0.0871 0.17973,0.19346 0.22713,0.40553 0.0948,0.42407 -0.01,1.20907 -0.184,2.0276 -0.17407,0.81873 -0.4022,1.66373 -0.38113,2.4502 0.0105,0.39333 0.0863,0.80253 0.36046,1.149 0.27427,0.3466 0.72967,0.5422 1.21287,0.567 0.4006,0.0207 0.76653,-0.0385 1.07587,-0.2084 0.30933,-0.16993 0.5326,-0.4494 0.6552,-0.73027 0.24526,-0.5618 0.20586,-1.1284 0.184,-1.64286 -0.0218,-0.51447 -0.0348,-0.99094 0.0188,-1.1978 0.0267,-0.10347 0.0481,-0.11794 0.0487,-0.11834 5.3e-4,-4e-4 0.019,-0.0265 0.17466,-0.0225 0.18954,0.005 0.20807,0.0327 0.2366,0.0563 0.0285,0.0237 0.0799,0.0932 0.16894,0.246 0.0889,0.1528 0.21593,0.38654 0.46746,0.58947 0.2516,0.203 0.61174,0.33373 1.01947,0.35113 1.01387,0.0433 1.53013,-0.35326 1.94887,-0.58206 0.71213,-0.38867 1.85393,-0.28914 2.79933,0.0244 l 0.39427,-1.18467 c -1.12714,-0.37393 -2.5724,-0.60413 -3.79254,0.0619 -0.5752,0.31433 -0.55013,0.46367 -1.29733,0.4318 -0.2088,-0.009 -0.24973,-0.0448 -0.2872,-0.0751 -0.0375,-0.0303 -0.0869,-0.0983 -0.1728,-0.24586 -0.0859,-0.14767 -0.20493,-0.37634 -0.45053,-0.5802 -0.24567,-0.20387 -0.6052,-0.3316 -1.0026,-0.34174 -0.35974,-0.009 -0.7156,0.0813 -0.9838,0.29474 -0.26827,0.21366 -0.41027,0.509 -0.48067,0.78113 -0.14087,0.54407 -0.0789,1.077 -0.0582,1.56573 0.0208,0.48894 -0.007,0.91967 -0.0807,1.08894 -0.0369,0.0847 -0.0578,0.1042 -0.11073,0.13333 -0.0531,0.0292 -0.16994,0.0687 -0.40934,0.0564 -0.23966,-0.0124 -0.26673,-0.0538 -0.29846,-0.094 -0.0318,-0.04 -0.0856,-0.1648 -0.092,-0.40733 -0.013,-0.48507 0.17466,-1.31007 0.3548,-2.15727 0.18013,-0.84707 0.36833,-1.72587 0.18213,-2.55894 -0.0931,-0.4166 -0.31167,-0.83593 -0.689,-1.12466 -0.3774,-0.28874 -0.8696,-0.42774 -1.44387,-0.4412 z"
+ style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;white-space:normal;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.29999995;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;paint-order:normal;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
</svg>
diff --git a/share/icons/symbolic_icons.svg b/share/icons/symbolic_icons.svg
index 8e172661f..52cb519c8 100644
--- a/share/icons/symbolic_icons.svg
+++ b/share/icons/symbolic_icons.svg
@@ -1,19 +1,15 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
-<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns: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" width="1250" height="540" id="svg15638" version="1.1" inkscape:version="0.91 r13725" sodipodi:docname="symbolic_icons.svg" viewBox="0 0 1250 540">
+<svg xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns: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" width="1320" height="660" id="svg15638" version="1.1" inkscape:version="0.91+devel r14057" sodipodi:docname="symbolic_icons.svg" viewBox="0 0 1320 660">
<title id="title9623">Inkscape Icon Theme</title>
<defs id="defs15640">
<inkscape:path-effect effect="spiro" id="path-effect36695" is_visible="true" />
-<linearGradient id="linearGradient19282" osb:paint="solid" gradientTransform="matrix(-2.73658,0.4081035,-0.1890831,-1.446856,239.5401,-1703.69)">
+<linearGradient id="linearGradient19282" osb:paint="solid" gradientTransform="matrix(1.166667,0,0,1,627.6667,1787.362)">
<stop style="stop-color:#666666;stop-opacity:1;" offset="0" id="stop19284" />
</linearGradient>
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29515" gradientTransform="translate(0,-12)" gradientUnits="userSpaceOnUse" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29994" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29996" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />
-<linearGradient inkscape:collect="always" xlink:href="#linearGradient19282" id="linearGradient29998" gradientTransform="translate(0,796.7244)" gradientUnits="userSpaceOnUse" />
</defs>
-<sodipodi:namedview id="base" pagecolor="#f2f2f2" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:zoom="3.041115" inkscape:cx="355.7796" inkscape:cy="392.3716" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1280" inkscape:window-height="958" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="1" inkscape:snap-bbox="true" inkscape:bbox-paths="false" inkscape:bbox-nodes="false" inkscape:snap-global="true" showguides="true" inkscape:guide-bbox="true" inkscape:snap-nodes="false" inkscape:snap-object-midpoints="false" inkscape:snap-grids="true" inkscape:snap-to-guides="true" borderlayer="true" inkscape:showpageshadow="false" showborder="false" inkscape:snap-bbox-edge-midpoints="false">
+<sodipodi:namedview id="base" pagecolor="#f2f2f2" bordercolor="#666666" borderopacity="1.0" inkscape:pageopacity="1" inkscape:pageshadow="2" inkscape:zoom="3.041115" inkscape:cx="355.7796" inkscape:cy="392.3716" inkscape:document-units="px" inkscape:current-layer="layer1" showgrid="false" inkscape:window-width="1280" inkscape:window-height="958" inkscape:window-x="0" inkscape:window-y="27" inkscape:window-maximized="1" inkscape:snap-bbox="true" inkscape:bbox-paths="false" inkscape:bbox-nodes="true" inkscape:snap-global="false" showguides="false" inkscape:guide-bbox="true" inkscape:snap-nodes="false" inkscape:snap-object-midpoints="false" inkscape:snap-grids="true" inkscape:snap-to-guides="true" borderlayer="true" inkscape:showpageshadow="false" showborder="true" inkscape:snap-bbox-edge-midpoints="false" inkscape:object-nodes="true" inkscape:snap-intersection-paths="false" inkscape:snap-center="true">
<inkscape:grid type="xygrid" id="grid15646" empspacing="5" visible="true" enabled="true" snapvisiblegridlinesonly="true" />
</sodipodi:namedview>
<metadata id="metadata15643">
@@ -36,3614 +32,3586 @@
</rdf:RDF>
</metadata>
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="translate(0,-512.3622)">
+<flowRoot xml:space="preserve" id="flowRoot19296" style="font-size:16px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;letter-spacing:0px;word-spacing:0px;fill:#000000" transform="translate(18.104,520.7221)"><flowRegion id="flowRegion19298"><rect id="rect19300" width="230" height="230" x="-287" y="209" style="-inkscape-font-specification:Cantarell" /></flowRegion><flowPara id="flowPara19302">Use the swatch palette to change color globally</flowPara></flowRoot><rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.9999999" id="rect18772" width="197" height="197" x="-276" y="517.3622" />
<g id="document-open-recent" inkscape:label="#file_open_recent">
-<rect y="527.3622" x="15" height="16" width="16" id="rect16726" style="opacity:0.3;fill:none;stroke:none" />
-<path id="path1234" d="M 19.8125,528.3622 C 19.3541,528.4497 18.99178,528.8956 19,529.3622 L 19,530.3622 C 19.12649,530.3622 19.25149,530.3834 19.375,530.3935 19.42621,530.3975 19.48056,530.3875 19.53125,530.3935 19.68374,530.3819 19.84454,530.3622 20,530.3622 20.33809,530.3622 20.67716,530.3085 21,530.3622 L 21,530.3622 26,530.3622 26,533.3622 29,533.3622 29,541.3622 23.3125,541.3622 C 22.36221,541.994 21.22671,542.3622 20,542.3622 19.66191,542.3622 19.32284,542.3222 19,542.2685 L 19,542.3622 C 19.00005,542.8858 19.47642,543.3621 20,543.3622 L 30,543.3622 C 30.52358,543.3621 30.99995,542.8858 31,542.3622 L 31,532.9247 C 31.0061,532.6606 30.90246,532.3957 30.71875,532.2059 L 27.15625,528.6434 C 26.96647,528.4597 26.70156,528.3561 26.4375,528.3622 L 20,528.3622 C 19.96877,528.3612 19.93748,528.3612 19.90625,528.3622 19.87502,528.3612 19.84373,528.3612 19.8125,528.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.9999999;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccscccccccscccccccccccc" />
-<path sodipodi:nodetypes="sssssccccccccc" inkscape:connector-curvature="0" id="path28902" d="M 20,531.3622 C 17.23858,531.3622 15,533.6008 15,536.3622 15,539.1236 17.23858,541.3622 20,541.3622 22.76142,541.3622 25,539.1236 25,536.3622 25,533.6008 22.76142,531.3622 20,531.3622 Z M 21,533.3309 21,536.3622 21,537.3622 20,537.3622 17,537.3622 17,536.3622 20,536.3622 20,533.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="527.3622" x="15" height="16" width="16" id="rect16726" style="opacity:0.3;fill:none" />
+<path id="path1234" d="M 19.8125,528.3622 C 19.3541,528.4497 18.99178,528.8956 19,529.3622 L 19,530.3622 C 19.12649,530.3622 19.25149,530.3834 19.375,530.3935 19.42621,530.3975 19.48056,530.3875 19.53125,530.3935 19.68374,530.3819 19.84454,530.3622 20,530.3622 20.33809,530.3622 20.67716,530.3085 21,530.3622 L 21,530.3622 26,530.3622 26,533.3622 29,533.3622 29,541.3622 23.3125,541.3622 C 22.36221,541.994 21.22671,542.3622 20,542.3622 19.66191,542.3622 19.32284,542.3222 19,542.2685 L 19,542.3622 C 19.00005,542.8858 19.47642,543.3621 20,543.3622 L 30,543.3622 C 30.52358,543.3621 30.99995,542.8858 31,542.3622 L 31,532.9247 C 31.0061,532.6606 30.90246,532.3957 30.71875,532.2059 L 27.15625,528.6434 C 26.96647,528.4597 26.70156,528.3561 26.4375,528.3622 L 20,528.3622 C 19.96877,528.3612 19.93748,528.3612 19.90625,528.3622 19.87502,528.3612 19.84373,528.3612 19.8125,528.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.9999999" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccscccccccscccccccccccc" />
+<path sodipodi:nodetypes="sssssccccccccc" inkscape:connector-curvature="0" id="path28902" d="M 20,531.3622 C 17.23858,531.3622 15,533.6008 15,536.3622 15,539.1236 17.23858,541.3622 20,541.3622 22.76142,541.3622 25,539.1236 25,536.3622 25,533.6008 22.76142,531.3622 20,531.3622 Z M 21,533.3309 21,536.3622 21,537.3622 20,537.3622 17,537.3622 17,536.3622 20,536.3622 20,533.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="document-import" inkscape:label="#file_import" transform="matrix(1,0,0,0.9999531,0,0.0264064)">
-<g id="g29039">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.9999999;marker:none;enable-background:accumulate" d="M 18.8125,547.3622 C 18.3541,547.4497 17.99178,547.8956 18,548.3622 L 18,549.3622 18,560.3622 18,561.3622 C 18.00005,561.8858 18.47642,562.3621 19,562.3622 L 29,562.3622 C 29.52358,562.3621 29.99995,561.8858 30,561.3622 L 30,551.9247 C 30.0061,551.6606 29.90246,551.3957 29.71875,551.2059 L 26.15625,547.6434 C 25.96647,547.4597 25.70156,547.3561 25.4375,547.3622 L 19,547.3622 C 18.96877,547.3612 18.93748,547.3612 18.90625,547.3622 18.87502,547.3612 18.84373,547.3612 18.8125,547.3622 Z M 20,549.3622 25,549.3622 25,552.3622 28,552.3622 28,560.3622 20,560.3622 20,549.3622 Z" id="path29020" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccc" style="display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 16,554.3622 22,554.3622 22,552.3622 25,555.3622 22,558.3622 22,556.3622 16,556.3622 Z" id="path4685" inkscape:connector-curvature="0" />
-<rect style="fill:none;stroke:none" id="rect29018" width="16" height="16" x="15" y="35" transform="translate(0,512.3622)" />
-</g>
+<rect y="547.3622" x="15" height="16" width="16" id="rect29018" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path29020" d="m 18.8125,547.3622 c -0.4584,0.087 -0.82072,0.5334 -0.8125,1 l 0,1 0,11 0,1 c 5e-5,0.5236 0.47642,0.9999 1,1 l 10,0 c 0.52358,-10e-5 0.99995,-0.4764 1,-1 l 0,-9.4375 c 0.006,-0.2641 -0.0975,-0.529 -0.28125,-0.7188 l -3.5625,-3.5625 c -0.18978,-0.1837 -0.45469,-0.2873 -0.71875,-0.2812 l -6.4375,0 c -0.0312,-10e-4 -0.0625,-10e-4 -0.0937,0 -0.0312,-10e-4 -0.0625,-10e-4 -0.0937,0 z m 1.1875,2 5,0 0,3 3,0 0,8 -8,0 0,-11 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.9999999" />
+<path inkscape:connector-curvature="0" id="path4685" d="m 16,554.3622 6,0 0,-2 3,3 -3,3 0,-2 -6,0 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" sodipodi:nodetypes="cccccccc" />
</g>
<g id="document-export" inkscape:label="#file_export" transform="matrix(1,0,0,0.9999593,0,1.023812)">
-<path sodipodi:nodetypes="ccccccccccccccccccccccccc" inkscape:connector-curvature="0" id="path29073" transform="translate(0,512.3622)" d="M 15.8125,54 C 15.3541,54.0875 14.99178,54.5334 15,55 L 15,56 15,67 15,68 C 15.00005,68.52358 15.47642,68.99995 16,69 L 26,69 C 26.52358,68.99995 26.99995,68.52358 27,68 L 27,65 25,65 25,67 17,67 17,56 22,56 22,59 25,59 25,61 27,61 27,58.5625 C 27.0061,58.29844 26.90246,58.03353 26.71875,57.84375 L 23.15625,54.28125 C 22.96647,54.09755 22.70156,53.99388 22.4375,54 L 16,54 C 15.96877,53.999 15.93748,53.999 15.90625,54 15.87502,53.999 15.84373,53.999 15.8125,54 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.9999999;marker:none;enable-background:accumulate" />
-<path sodipodi:nodetypes="cccccccc" style="display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 22,574.3622 28,574.3622 28,572.3622 31,575.3622 28,578.3622 28,576.3622 22,576.3622 Z" id="path29075" inkscape:connector-curvature="0" />
-<rect style="fill:none;stroke:none" id="rect29077" width="16" height="15.9999" x="15" y="566.3622" />
+<rect style="fill:none" id="rect29077" width="16" height="15.9999" x="15" y="566.3622" />
+<path sodipodi:nodetypes="ccccccccccccccccccccccccc" inkscape:connector-curvature="0" id="path29073" transform="translate(0,512.3622)" d="M 15.8125,54 C 15.3541,54.0875 14.99178,54.5334 15,55 L 15,56 15,67 15,68 C 15.00005,68.52358 15.47642,68.99995 16,69 L 26,69 C 26.52358,68.99995 26.99995,68.52358 27,68 L 27,65 25,65 25,67 17,67 17,56 22,56 22,59 25,59 25,61 27,61 27,58.5625 C 27.0061,58.29844 26.90246,58.03353 26.71875,57.84375 L 23.15625,54.28125 C 22.96647,54.09755 22.70156,53.99388 22.4375,54 L 16,54 C 15.96877,53.999 15.93748,53.999 15.90625,54 15.87502,53.999 15.84373,53.999 15.8125,54 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.9999999" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 22,574.3622 28,574.3622 28,572.3622 31,575.3622 28,578.3622 28,576.3622 22,576.3622 Z" id="path29075" inkscape:connector-curvature="0" />
</g>
<g id="document-cleanup" inkscape:label="#file_vacuum" transform="matrix(0.9969006,0,0,1,0.0464916,2.00012)">
-<path sodipodi:nodetypes="ccsscsscccccsccssccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 24.73364,588.1804 C 24.73364,588.1804 24.72083,588.727 24.43039,589.2713 24.13991,589.8155 23.62846,590.3622 22.30763,590.3622 21.19098,590.3622 19,590.3622 18.42601,590.4986 17.78757,590.6502 17.18739,590.9395 16.72781,591.4531 16.26822,591.9667 16,592.7068 16,593.6349 16,594.3424 16.1302,594.9076 16.39423,595.3395 16.65826,595.7713 17.04939,596.0485 17.42529,596.1917 18.17708,596.4783 18.96053,596.3622 19.39642,596.3622 L 19.39642,595.2713 C 18.8619,595.2713 18.18975,595.3449 17.72854,595.169 17.49793,595.0811 17.34321,594.9388 17.21301,594.7258 17.08281,594.5129 16.97041,594.1846 16.97041,593.6349 16.97041,592.9267 17.15278,592.5076 17.42529,592.2031 17.69779,591.8985 18.1094,591.713 18.63829,591.5894 19,591.3622 21.12278,591.4531 22.30763,591.4531 23.89801,591.4531 24.84217,590.6361 25.27949,589.8167 25.71681,588.9973 25.70404,588.1804 25.70404,588.1804 L 24.73364,588.1804 Z" id="path11319" inkscape:connector-curvature="0" />
-<ellipse transform="matrix(0.16,0,0,0.1538459,-23.79999,585.3622)" id="path11327" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:8.8780499;marker:none" cx="273.75" cy="97.5" rx="6.25" ry="6.5" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="scccs" id="rect11314" d="M 19,595.3622 C 23,593.3622 29,594.3622 29,594.3622 L 29,600.3625 C 29,600.3625 29.01874,600.3445 18,600.3622 16,600.3622 17,596.3622 19,595.3622 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" />
-<ellipse transform="matrix(0.3895133,0,0,0.3813021,-78.01398,561.7065)" id="path11312" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2.5406296;marker:none" cx="273.75" cy="97.5" rx="6.25" ry="6.5" />
-<rect y="586.4013" x="21.29354" height="2.034293" width="7.850454" id="rect11317" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999993;marker:none" />
-<rect y="585.3622" x="15" height="16" width="16" id="rect29219" style="fill:none;stroke:none" />
+<rect y="585.3622" x="15" height="16" width="16" id="rect29219" style="fill:none" />
+<path sodipodi:nodetypes="ccsscsscccccsccssccc" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 24.73364,588.1804 C 24.73364,588.1804 24.72083,588.727 24.43039,589.2713 24.13991,589.8155 23.62846,590.3622 22.30763,590.3622 21.19098,590.3622 19,590.3622 18.42601,590.4986 17.78757,590.6502 17.18739,590.9395 16.72781,591.4531 16.26822,591.9667 16,592.7068 16,593.6349 16,594.3424 16.1302,594.9076 16.39423,595.3395 16.65826,595.7713 17.04939,596.0485 17.42529,596.1917 18.17708,596.4783 18.96053,596.3622 19.39642,596.3622 L 19.39642,595.2713 C 18.8619,595.2713 18.18975,595.3449 17.72854,595.169 17.49793,595.0811 17.34321,594.9388 17.21301,594.7258 17.08281,594.5129 16.97041,594.1846 16.97041,593.6349 16.97041,592.9267 17.15278,592.5076 17.42529,592.2031 17.69779,591.8985 18.1094,591.713 18.63829,591.5894 19,591.3622 21.12278,591.4531 22.30763,591.4531 23.89801,591.4531 24.84217,590.6361 25.27949,589.8167 25.71681,588.9973 25.70404,588.1804 25.70404,588.1804 L 24.73364,588.1804 Z" id="path11319" inkscape:connector-curvature="0" />
+<ellipse transform="matrix(0.16,0,0,0.1538459,-23.79999,585.3622)" id="path11327" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:8.8780499" cx="273.75" cy="97.5" rx="6.25" ry="6.5" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="scccs" id="rect11314" d="M 19,595.3622 C 23,593.3622 29,594.3622 29,594.3622 L 29,600.3625 C 29,600.3625 29.01874,600.3445 18,600.3622 16,600.3622 17,596.3622 19,595.3622 Z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd" />
+<ellipse transform="matrix(0.3895133,0,0,0.3813021,-78.01398,561.7065)" id="path11312" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:2.5406296" cx="273.75" cy="97.5" rx="6.25" ry="6.5" />
+<rect y="586.4013" x="21.29354" height="2.034293" width="7.850454" id="rect11317" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999993" />
</g>
<g id="document-metadata" inkscape:label="#document_metadata">
-<rect style="fill:none;stroke:none" id="rect10285" width="16" height="16" x="14.97644" y="607.3622" />
-<path sodipodi:nodetypes="cccccccccccccccccc" inkscape:connector-curvature="0" id="path10293" d="M 17.8125,613.3622 C 17.3541,613.4497 16.9918,613.8956 17,614.3622 L 17,615.3622 17,623.3622 19,623.3622 19,615.3622 24,615.3622 24,618.3622 27,618.3622 27,623.3622 29,623.3622 29,617.9247 C 29.0061,617.6606 28.90246,617.3957 28.71875,617.2059 L 25.15625,613.6434 C 24.96647,613.4598 24.70156,613.3562 24.4375,613.3622 L 18,613.3622 C 17.96877,613.3612 17.93748,613.3612 17.90625,613.3622 17.87502,613.3612 17.84373,613.3612 17.8125,613.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path10291" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="15" height="16" width="1" id="rect10298" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="15" height="1" width="16" id="rect10300" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="30" height="16" width="1" id="rect10302" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="622.3622" x="15" height="1" width="16" id="rect10304" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect10285" width="16" height="16" x="14.97644" y="607.3622" />
+<path sodipodi:nodetypes="cccccccccccccccccc" inkscape:connector-curvature="0" id="path10293" d="M 17.8125,613.3622 C 17.3541,613.4497 16.9918,613.8956 17,614.3622 L 17,615.3622 17,623.3622 19,623.3622 19,615.3622 24,615.3622 24,618.3622 27,618.3622 27,623.3622 29,623.3622 29,617.9247 C 29.0061,617.6606 28.90246,617.3957 28.71875,617.2059 L 25.15625,613.6434 C 24.96647,613.4598 24.70156,613.3562 24.4375,613.3622 L 18,613.3622 C 17.96877,613.3612 17.93748,613.3612 17.90625,613.3622 17.87502,613.3612 17.84373,613.3612 17.8125,613.3622 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path10291" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="16" width="1" id="rect10298" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="1" width="16" id="rect10300" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="30" height="16" width="1" id="rect10302" style="fill:url(#linearGradient19282)" />
+<rect y="622.3622" x="15" height="1" width="16" id="rect10304" style="fill:url(#linearGradient19282)" />
</g>
<g id="dialog-input-devices" inkscape:label="#input_devices">
-<rect width="16" height="16.00002" x="15" y="627.3622" id="rect13775" style="display:inline;overflow:visible;visibility:visible;opacity:0;fill:#000000;stroke:none;stroke-width:1.781;marker:none;enable-background:new" ry="0" />
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path13779" d="M 27.02642,627.3622 C 27.02642,627.3622 25.20334,631.1456 24.07557,633.3622 L 23.59924,634.3622 23.59924,635.3622 23,636.3622 24,636.3622 24.76701,635.3622 25.566,634.9403 25.68892,634.3622 29.01562,627.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:new" />
-<path sodipodi:nodetypes="cccccccccccccccccccc" inkscape:transform-center-y="-0.4456815" inkscape:transform-center-x="-0.2450515" inkscape:connector-curvature="0" id="rect7357-4" d="M 16.22651,635.3887 C 15.56103,635.3877 15.00323,635.6659 15,636.3622 15.013,636.9014 15.0055,637.8102 15,638.3622 L 17.01592,638.3522 17.01588,635.3943 16.22546,635.3893 Z M 18.01064,635.3947 18.01064,638.3526 20,638.3626 C 20.0102,637.8084 19.9953,636.8956 20,636.3626 20.00099,635.6664 19.51677,635.4075 18.85124,635.4041 L 18.01068,635.3951 Z M 15.02629,639.3383 C 15.01729,639.9407 15.00019,640.1652 14.99999,640.7197 14.99399,642.1765 16.10866,643.355 17.5011,643.3622 18.89352,643.3692 20.02002,642.2023 20.02688,640.7455 20.00158,640.1396 19.99398,639.9129 20.00018,639.3383 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccccccccccc" inkscape:connector-curvature="0" id="path13869" d="M 18,630.3622 17,634.3622 18.40625,634.3622 C 18.54234,634.3628 18.39044,634.3622 19.46875,634.3622 L 20,632.3622 23,632.3622 24,630.3622 Z M 29,630.3622 28,632.3622 28.60938,638.3622 21,638.3622 21,640.3622 31,640.3622 30,630.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect width="16" height="16" x="15" y="627.3622" id="rect13775" style="opacity:0;fill:#000000;stroke-width:1.781" ry="0" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path13779" d="M 27.02642,627.3622 C 27.02642,627.3622 25.20334,631.1456 24.07557,633.3622 L 23.59924,634.3622 23.59924,635.3622 23,636.3622 24,636.3622 24.76701,635.3622 25.566,634.9403 25.68892,634.3622 29.01562,627.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2" />
+<path sodipodi:nodetypes="cccccccccccccccccccc" inkscape:transform-center-y="-0.4456815" inkscape:transform-center-x="-0.2450515" inkscape:connector-curvature="0" id="rect7357-4" d="M 16.22651,635.3887 C 15.56103,635.3877 15.00323,635.6659 15,636.3622 15.013,636.9014 15.0055,637.8102 15,638.3622 L 17.01592,638.3522 17.01588,635.3943 16.22546,635.3893 Z M 18.01064,635.3947 18.01064,638.3526 20,638.3626 C 20.0102,637.8084 19.9953,636.8956 20,636.3626 20.00099,635.6664 19.51677,635.4075 18.85124,635.4041 L 18.01068,635.3951 Z M 15.02629,639.3383 C 15.01729,639.9407 15.00019,640.1652 14.99999,640.7197 14.99399,642.1765 16.10866,643.355 17.5011,643.3622 18.89352,643.3692 20.02002,642.2023 20.02688,640.7455 20.00158,640.1396 19.99398,639.9129 20.00018,639.3383 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccccccccccc" inkscape:connector-curvature="0" id="path13869" d="M 18,630.3622 17,634.3622 18.40625,634.3622 C 18.54234,634.3628 18.39044,634.3622 19.46875,634.3622 L 20,632.3622 23,632.3622 24,630.3622 Z M 29,630.3622 28,632.3622 28.60938,638.3622 21,638.3622 21,640.3622 31,640.3622 30,630.3622 Z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="document-import-ocal" transform="translate(15.02581,647.3622)">
+<rect y="0" x="0" height="16" width="16" id="rect36698" style="fill:none" />
+<g transform="matrix(0.0516129,0,0,0.0516129,-2.732087,-2.70722)" id="g36700">
+<rect y="72.45241" x="52.93418" height="290" width="310" id="rect36702" style="fill:none" />
+<g id="g36704" style="fill:url(#linearGradient19282)">
+<path id="path36706" d="m 71.46756,319.058 c 2.16608,0 4.11753,0.361 5.85433,1.083 1.75628,0.7221 3.23938,1.7466 4.4493,3.0736 1.22938,1.327 2.16608,2.9369 2.81008,4.8298 0.66346,1.8734 0.99521,3.9712 0.99524,6.2934 -3e-5,2.3417 -0.33178,4.4493 -0.99524,6.3227 -0.644,1.8734 -1.5807,3.4736 -2.81008,4.8005 -1.20992,1.327 -2.69302,2.3515 -4.4493,3.0736 -1.7368,0.7025 -3.68825,1.0537 -5.85433,1.0537 -2.16612,0 -4.12732,-0.3512 -5.88361,-1.0537 -1.7368,-0.7221 -3.21989,-1.7466 -4.4493,-3.0736 -1.22941,-1.327 -2.17586,-2.9271 -2.83935,-4.8005 -0.66349,-1.8734 -0.99524,-3.981 -0.99524,-6.3227 0,-2.3222 0.33175,-4.42 0.99524,-6.2934 0.66349,-1.8929 1.60994,-3.5028 2.83935,-4.8298 1.22941,-1.327 2.7125,-2.3515 4.4493,-3.0736 1.75629,-0.722 3.71749,-1.083 5.88361,-1.083 m 0,26.4616 c 2.92714,0 5.11276,-0.9758 6.55686,-2.9272 1.44404,-1.971 2.16607,-4.7127 2.1661,-8.2253 -3e-5,-3.5321 -0.72206,-6.2837 -2.1661,-8.2547 -1.4441,-1.9709 -3.62972,-2.9564 -6.55686,-2.9564 -1.48312,0 -2.77107,0.2537 -3.86387,0.7611 -1.09281,0.5074 -2.00999,1.2392 -2.75154,2.1953 -0.72203,0.9563 -1.26844,2.1369 -1.63921,3.5419 -0.35127,1.3856 -0.5269,2.9565 -0.52689,4.7128 -1e-5,1.7563 0.17562,3.3272 0.52689,4.7127 0.37077,1.3855 0.91718,2.5564 1.63921,3.5126 0.74155,0.9367 1.65873,1.6587 2.75154,2.1661 1.0928,0.5074 2.38075,0.7611 3.86387,0.7611" inkscape:connector-curvature="0" />
+<path id="path36708" d="m 93.13468,359.2187 0,-39.6924 3.1028,0 c 0.74154,0 1.20989,0.3611 1.40504,1.0831 l 0.43907,3.5126 c 1.26844,-1.5416 2.71251,-2.7808 4.33221,-3.7175 1.6392,-0.9367 3.5223,-1.405 5.6494,-1.4051 1.6978,1e-4 3.2394,0.3318 4.625,0.9953 1.3855,0.644 2.5661,1.6099 3.5418,2.8979 0.9757,1.2684 1.727,2.8491 2.254,4.742 0.5268,1.8929 0.7903,4.0688 0.7903,6.5276 0,2.1856 -0.2928,4.2249 -0.8782,6.1177 -0.5854,1.8734 -1.4245,3.5029 -2.5173,4.8884 -1.0929,1.366 -2.4393,2.4491 -4.0395,3.2492 -1.5807,0.7805 -3.3663,1.1708 -5.3567,1.1708 -1.8344,0 -3.4053,-0.3024 -4.7128,-0.9074 -1.2879,-0.6049 -2.42953,-1.4636 -3.42476,-2.5759 l 0,13.1137 -5.21036,0 m 13.20152,-36.0041 c -1.6978,0 -3.1906,0.3903 -4.4786,1.1708 -1.2684,0.7806 -2.43928,1.8832 -3.51256,3.3077 l 0,14.3431 c 0.9562,1.288 2.00026,2.1954 3.13206,2.7223 1.1514,0.5269 2.4295,0.7903 3.8346,0.7903 2.7515,0 4.8688,-0.9854 6.352,-2.9564 1.483,-1.9709 2.2246,-4.781 2.2246,-8.4302 0,-1.932 -0.1757,-3.5907 -0.5269,-4.9762 -0.3318,-1.3855 -0.8196,-2.5174 -1.4636,-3.3955 -0.644,-0.8977 -1.4343,-1.5514 -2.371,-1.9612 -0.9367,-0.4098 -2.0002,-0.6147 -3.1906,-0.6147" inkscape:connector-curvature="0" />
+<path id="path36710" d="m 138.4268,319.058 c 1.7758,0 3.415,0.3025 4.9176,0.9074 1.5026,0.5855 2.8003,1.4441 3.8932,2.5759 1.0928,1.1124 1.9416,2.4979 2.5466,4.1566 0.6244,1.6392 0.9367,3.5126 0.9367,5.6201 0,0.8197 -0.088,1.3661 -0.2634,1.6393 -0.1757,0.2732 -0.5074,0.4098 -0.9953,0.4098 l -19.7291,0 c 0.039,1.8734 0.2927,3.5028 0.7611,4.8883 0.4683,1.3856 1.1123,2.5467 1.9319,3.4834 0.8196,0.9171 1.7953,1.6099 2.9272,2.0783 1.1318,0.4488 2.4002,0.6732 3.8053,0.6732 1.3074,0 2.4295,-0.1464 3.3662,-0.4391 0.9562,-0.3122 1.7758,-0.6439 2.4589,-0.9952 0.6829,-0.3513 1.2489,-0.6733 1.6977,-0.966 0.4683,-0.3122 0.8684,-0.4683 1.2001,-0.4683 0.4294,0 0.7611,0.1659 0.9953,0.4976 l 1.4636,1.9027 c -0.644,0.7805 -1.4148,1.4635 -2.3125,2.049 -0.8977,0.5659 -1.8637,1.0342 -2.8979,1.405 -1.0148,0.3708 -2.0685,0.644 -3.1613,0.8196 -1.0928,0.1952 -2.1759,0.2927 -3.2492,0.2927 -2.049,0 -3.9419,-0.3415 -5.6787,-1.0245 -1.7173,-0.7025 -3.2101,-1.7172 -4.4785,-3.0442 -1.249,-1.3465 -2.2247,-3.0052 -2.9272,-4.9762 -0.7025,-1.971 -1.0538,-4.2346 -1.0538,-6.791 0,-2.0686 0.3122,-4.0005 0.9367,-5.7958 0.644,-1.7953 1.5611,-3.3467 2.7515,-4.6542 1.1904,-1.327 2.6442,-2.3613 4.3615,-3.1028 1.7173,-0.7611 3.6492,-1.1416 5.7958,-1.1416 m 0.1171,3.8346 c -2.5174,0 -4.4981,0.7318 -5.9422,2.1953 -1.444,1.4441 -2.3417,3.4541 -2.693,6.03 l 16.1287,0 c 0,-1.2099 -0.1659,-2.3124 -0.4976,-3.3077 -0.3317,-1.0147 -0.8196,-1.8831 -1.4636,-2.6052 -0.644,-0.7415 -1.4343,-1.3074 -2.371,-1.6977 -0.9172,-0.4098 -1.9709,-0.6147 -3.1613,-0.6147" inkscape:connector-curvature="0" />
+<path id="path36712" d="m 158.6422,349.1785 0,-29.6522 3.1028,0 c 0.7416,0 1.2099,0.3611 1.4051,1.0831 l 0.4098,3.2199 c 1.2879,-1.4246 2.7222,-2.5759 4.3029,-3.4541 1.6002,-0.8781 3.4443,-1.3172 5.5324,-1.3172 1.6196,0 3.0442,0.2732 4.2736,0.8196 1.2489,0.5269 2.2832,1.288 3.1028,2.2832 0.8391,0.9757 1.4733,2.1563 1.9027,3.5418 0.4293,1.3856 0.6439,2.9175 0.644,4.5957 l 0,18.8802 -5.2104,0 0,-18.8802 c 0,-2.2441 -0.5172,-3.9809 -1.5514,-5.2104 -1.0148,-1.2489 -2.5759,-1.8733 -4.6835,-1.8733 -1.5416,0 -2.9857,0.3708 -4.3322,1.1123 -1.327,0.7415 -2.5564,1.7465 -3.6882,3.015 l 0,21.8366 -5.2104,0" inkscape:connector-curvature="0" />
+<path id="path36714" d="m 212.5375,324.7952 c -0.1562,0.2147 -0.3123,0.3806 -0.4684,0.4976 -0.1561,0.1171 -0.3805,0.1757 -0.6732,0.1757 -0.2928,0 -0.6147,-0.1171 -0.966,-0.3513 -0.3318,-0.2537 -0.7611,-0.5269 -1.2879,-0.8196 -0.527,-0.2927 -1.1709,-0.5561 -1.932,-0.7903 -0.7415,-0.2537 -1.6587,-0.3805 -2.7515,-0.3806 -1.4441,10e-5 -2.7223,0.2635 -3.8346,0.7904 -1.1123,0.5074 -2.049,1.2489 -2.8101,2.2246 -0.7415,0.9758 -1.3075,2.1564 -1.6977,3.5419 -0.3708,1.3855 -0.5562,2.9369 -0.5562,4.6542 0,1.7953 0.2049,3.3955 0.6147,4.8005 0.4098,1.3856 0.9855,2.5564 1.727,3.5126 0.7416,0.9367 1.6392,1.6588 2.693,2.1661 1.0733,0.4879 2.2734,0.7318 3.6004,0.7318 1.2685,0 2.3125,-0.1463 3.1321,-0.439 0.8196,-0.3123 1.5026,-0.6538 2.049,-1.0245 0.5464,-0.3708 0.9952,-0.7026 1.3465,-0.9953 0.3513,-0.3122 0.7025,-0.4683 1.0538,-0.4683 0.4488,0 0.7806,0.1658 0.9952,0.4976 l 1.4636,1.9026 c -1.2879,1.5807 -2.8979,2.7418 -4.8298,3.4834 -1.9319,0.722 -3.9712,1.083 -6.1178,1.083 -1.8539,0 -3.5809,-0.3415 -5.1811,-1.0245 -1.5806,-0.683 -2.9564,-1.6685 -4.1273,-2.9564 -1.1708,-1.3075 -2.0978,-2.9077 -2.7808,-4.8006 -0.6635,-1.8929 -0.9952,-4.0492 -0.9952,-6.469 0,-2.2051 0.3025,-4.2444 0.9074,-6.1178 0.6245,-1.8734 1.5221,-3.4833 2.693,-4.8298 1.1904,-1.366 2.654,-2.4295 4.3908,-3.1906 1.7367,-0.7611 3.7272,-1.1416 5.9714,-1.1416 2.0685,0 3.9028,0.3415 5.5031,1.0245 1.6001,0.6635 3.0149,1.6099 4.2443,2.8393 l -1.3757,1.8734" inkscape:connector-curvature="0" />
+<path id="path36716" d="m 226.6296,306.0613 0,43.1172 -5.2103,0 0,-43.1172 5.2103,0" inkscape:connector-curvature="0" />
+<path id="path36718" d="m 242.8037,319.5263 0,29.6522 -5.2103,0 0,-29.6522 5.2103,0 m 1.1709,-9.3084 c 0,0.5074 -0.1073,0.9855 -0.322,1.4343 -0.1951,0.4294 -0.4683,0.8197 -0.8196,1.1709 -0.3317,0.3318 -0.722,0.5952 -1.1708,0.7903 -0.4489,0.1952 -0.927,0.2928 -1.4344,0.2928 -0.5073,0 -0.9854,-0.098 -1.4343,-0.2928 -0.4293,-0.1951 -0.8196,-0.4585 -1.1708,-0.7903 -0.3318,-0.3512 -0.5952,-0.7415 -0.7904,-1.1709 -0.1951,-0.4488 -0.2927,-0.9269 -0.2927,-1.4343 0,-0.5073 0.098,-0.9854 0.2927,-1.4343 0.1952,-0.4683 0.4586,-0.8683 0.7904,-1.2001 0.3512,-0.3512 0.7415,-0.6244 1.1708,-0.8196 0.4489,-0.1951 0.927,-0.2927 1.4343,-0.2927 0.5074,0 0.9855,0.098 1.4344,0.2927 0.4488,0.1952 0.8391,0.4684 1.1708,0.8196 0.3513,0.3318 0.6245,0.7318 0.8196,1.2001 0.2147,0.4489 0.322,0.927 0.322,1.4343" inkscape:connector-curvature="0" />
+<path id="path36720" d="m 253.1821,359.2187 0,-39.6924 3.1028,0 c 0.7415,0 1.2098,0.3611 1.405,1.0831 l 0.4391,3.5126 c 1.2684,-1.5416 2.7125,-2.7808 4.3322,-3.7175 1.6392,-0.9367 3.5223,-1.405 5.6494,-1.4051 1.6978,1e-4 3.2394,0.3318 4.6249,0.9953 1.3855,0.644 2.5662,1.6099 3.5419,2.8979 0.9757,1.2684 1.727,2.8491 2.2539,4.742 0.5269,1.8929 0.7903,4.0688 0.7904,6.5276 -1e-4,2.1856 -0.2928,4.2249 -0.8782,6.1177 -0.5854,1.8734 -1.4246,3.5029 -2.5173,4.8884 -1.0929,1.366 -2.4394,2.4491 -4.0395,3.2492 -1.5807,0.7805 -3.3663,1.1708 -5.3568,1.1708 -1.8343,0 -3.4052,-0.3024 -4.7127,-0.9074 -1.288,-0.6049 -2.4296,-1.4636 -3.4248,-2.5759 l 0,13.1137 -5.2103,0 m 13.2015,-36.0041 c -1.6978,0 -3.1906,0.3903 -4.4786,1.1708 -1.2684,0.7806 -2.4393,1.8832 -3.5126,3.3077 l 0,14.3431 c 0.9562,1.288 2.0002,2.1954 3.1321,2.7223 1.1513,0.5269 2.4295,0.7903 3.8346,0.7903 2.7515,0 4.8688,-0.9854 6.3519,-2.9564 1.4831,-1.9709 2.2247,-4.781 2.2247,-8.4302 0,-1.932 -0.1757,-3.5907 -0.5269,-4.9762 -0.3318,-1.3855 -0.8196,-2.5174 -1.4636,-3.3955 -0.644,-0.8977 -1.4343,-1.5514 -2.371,-1.9612 -0.9367,-0.4098 -2.0002,-0.6147 -3.1906,-0.6147" inkscape:connector-curvature="0" />
+<path id="path36722" d="m 308.5144,349.1785 -2.3125,0 c -0.5074,0 -0.9172,-0.078 -1.2294,-0.2341 -0.3122,-0.1562 -0.5172,-0.4879 -0.6147,-0.9953 l -0.5854,-2.7515 c -0.7806,0.7025 -1.5417,1.3367 -2.2832,1.9026 -0.7416,0.5465 -1.5222,1.0148 -2.3418,1.4051 -0.8196,0.3708 -1.6977,0.6537 -2.6344,0.8488 -0.9172,0.1952 -1.9417,0.2928 -3.0735,0.2928 -1.1514,0 -2.2345,-0.1561 -3.2492,-0.4684 -0.9952,-0.3317 -1.8636,-0.8196 -2.6052,-1.4636 -0.7415,-0.6439 -1.3367,-1.4538 -1.7855,-2.4295 -0.4294,-0.9952 -0.644,-2.1661 -0.644,-3.5126 0,-1.1709 0.322,-2.2929 0.966,-3.3663 0.6439,-1.0928 1.6782,-2.0587 3.1027,-2.8979 1.4441,-0.839 3.3272,-1.5221 5.6495,-2.049 2.3222,-0.5464 5.1615,-0.8586 8.518,-0.9367 l 0,-2.3124 c 0,-2.3027 -0.4976,-4.0395 -1.4928,-5.2104 -0.9758,-1.1903 -2.4296,-1.7855 -4.3615,-1.7856 -1.2685,1e-4 -2.3417,0.1659 -3.2199,0.4977 -0.8586,0.3122 -1.6099,0.6732 -2.2539,1.083 -0.6245,0.3903 -1.1709,0.7513 -1.6392,1.0831 -0.4489,0.3122 -0.8977,0.4683 -1.3465,0.4683 -0.3513,0 -0.6635,-0.088 -0.9367,-0.2634 -0.2537,-0.1952 -0.4586,-0.4293 -0.6147,-0.7026 l -0.9367,-1.6684 c 1.6392,-1.5807 3.4052,-2.7613 5.2982,-3.5419 1.8929,-0.7806 3.9906,-1.1708 6.2934,-1.1709 1.6587,1e-4 3.132,0.2733 4.42,0.8196 1.2879,0.5465 2.371,1.3075 3.2492,2.2832 0.8781,0.9758 1.5416,2.1564 1.9904,3.5419 0.4488,1.3855 0.6733,2.9077 0.6733,4.5664 l 0,18.968 m -13.5235,-3.1906 c 0.9171,0 1.7563,-0.088 2.5173,-0.2634 0.7611,-0.1952 1.4734,-0.4586 2.1369,-0.7904 0.6829,-0.3512 1.3269,-0.7708 1.9319,-1.2587 0.6244,-0.4878 1.2294,-1.044 1.8148,-1.6684 l 0,-6.1764 c -2.4003,0.078 -4.4395,0.2733 -6.1177,0.5855 -1.6783,0.2927 -3.0443,0.683 -4.0981,1.1708 -1.0538,0.4879 -1.8246,1.0636 -2.3124,1.7271 -0.4684,0.6635 -0.7026,1.405 -0.7026,2.2246 0,0.7806 0.1269,1.4539 0.3806,2.0198 0.2536,0.5659 0.5952,1.0342 1.0245,1.405 0.4293,0.3513 0.9367,0.6147 1.5221,0.7903 0.5854,0.1562 1.2197,0.2342 1.9027,0.2342" inkscape:connector-curvature="0" />
+<path id="path36724" d="m 317.6605,349.1785 0,-29.6522 2.9857,0 c 0.566,0 0.9563,0.1074 1.1709,0.322 0.2147,0.2147 0.361,0.5855 0.4391,1.1123 l 0.3512,4.6249 c 1.0148,-2.0685 2.2637,-3.6784 3.7468,-4.8298 1.5026,-1.1708 3.2589,-1.7562 5.2689,-1.7563 0.8196,1e-4 1.5612,0.098 2.2247,0.2927 0.6634,0.1757 1.2782,0.4294 1.8441,0.7611 l -0.6733,3.8931 c -0.1366,0.4879 -0.4391,0.7318 -0.9074,0.7318 -0.2732,0 -0.6928,-0.088 -1.2587,-0.2634 -0.5659,-0.1951 -1.3562,-0.2927 -2.371,-0.2927 -1.8148,0 -3.337,0.5269 -4.5664,1.5806 -1.2099,1.0538 -2.2246,2.5857 -3.0442,4.5957 l 0,18.8802 -5.2104,0" inkscape:connector-curvature="0" />
+<path id="path36726" d="m 351.3967,349.6469 c -2.3417,0 -4.1468,-0.6538 -5.4152,-1.9612 -1.2489,-1.3075 -1.8734,-3.1906 -1.8734,-5.6495 l 0,-18.1484 -3.5711,0 c -0.3123,0 -0.5757,-0.088 -0.7904,-0.2634 -0.2146,-0.1952 -0.322,-0.4879 -0.322,-0.8782 l 0,-2.0783 4.8591,-0.6147 1.2002,-9.162 c 0.039,-0.2927 0.1658,-0.5269 0.3805,-0.7025 0.2147,-0.1951 0.4879,-0.2927 0.8196,-0.2928 l 2.6345,0 0,10.2159 8.4888,0 0,3.776 -8.4888,0 0,17.7972 c 0,1.2489 0.3024,2.1759 0.9074,2.7808 0.6049,0.6049 1.3855,0.9074 2.3417,0.9074 0.5464,0 1.0148,-0.068 1.4051,-0.2049 0.4098,-0.1561 0.761,-0.322 1.0537,-0.4976 0.2927,-0.1756 0.5367,-0.3317 0.7318,-0.4684 0.2147,-0.1561 0.4,-0.2341 0.5562,-0.2341 0.2732,0 0.5171,0.1659 0.7318,0.4976 l 1.5221,2.4881 c -0.8977,0.8391 -1.9807,1.5026 -3.2492,1.9905 -1.2684,0.4683 -2.5759,0.7025 -3.9224,0.7025" inkscape:connector-curvature="0" />
+</g>
+<path sodipodi:nodetypes="cccccccccccccsssccsczcccccccczsccccssccsccccccsssccscc" inkscape:connector-curvature="0" id="path36728" d="m 98.91514,75.68813 c -16.44957,-0.14125 -33.33875,7.08437 -38.2833,20.5713 -7.34821,16.27277 4.44382,35.28397 24.57962,41.14267 0.0643,0.017 0.15755,-0.016 0.21694,0 21.9585,7.9366 49.2877,11.8121 73.0865,36.4357 l 8.9183,9.2396 -8.0482,8.1937 c -23.8677,24.5816 -51.1055,28.3635 -73.08656,36.2613 -0.048,0.024 -0.16106,-0.024 -0.21697,0 -20.08023,5.8018 -31.72655,24.7212 -24.57956,40.9683 0.025,0.048 -0.025,0.1237 0,0.1742 6.10887,16.4418 30.1016,23.7208 49.37689,19.351 0.064,-0.012 0.152,0.012 0.2169,0 19.7409,-3.4414 35.904,-19.5033 31.3228,-35.7383 -2.2602,-8.0101 -5.1525,-11.7296 -7.8306,-13.9467 -1.3392,-1.1085 -2.5077,-1.8009 -3.2628,-2.4406 -0.755,-0.6397 -3.932,-2.4204 -3.932,-2.4204 1.9658,-1.4308 3.1141,-2.1077 4.8017,-3.1582 2.5214,-1.6431 6.9262,-3.6619 12.6161,-6.1017 11.2801,-4.8369 27.8928,-11.6662 46.9841,-22.6634 34.5292,19.6275 79.3941,45.0469 104.1915,59.0987 24.7974,14.0519 50.1775,6.9647 60.6878,0.5227 L 223.6884,183.1203 357.4356,104.2999 c -20.7303,-12.78477 -44.3864,-7.37089 -60.144,0.3268 -35.0332,19.8694 -70.1778,39.6441 -105.2791,59.4473 -16.0058,-8.7485 -33.1811,-16.7697 -48.071,-23.1863 -5.6952,-2.4537 -10.0897,-4.4507 -12.6161,-6.1017 -1.2633,-0.8255 -4.4591,-2.615 -4.4591,-2.615 2.9215,-1.7028 6.0172,-4.8406 8.2659,-7.2348 2.2489,-2.3942 4.8956,-5.9398 6.417,-12.1162 4.0224,-16.33059 -11.5896,-32.4356 -31.3229,-35.91266 -3.8138,-0.84394 -7.9348,-0.96797 -11.31064,-1.22028 z m -2.17507,13.77231 c 7.34253,-0.34487 14.92053,1.66319 19.79423,5.57867 7.3015,5.86589 8.6922,13.94569 5.873,20.57129 -2.8193,6.6258 -9.5767,11.5234 -19.1417,11.506 l -0.217,0 c -8.76711,0.4062 -17.31734,-3.6434 -22.4045,-9.5883 -5.08701,-5.9449 -6.53717,-13.3385 -1.52254,-19.69966 l 0,-0.17448 c 3.46452,-5.27748 10.28137,-7.84907 17.61903,-8.19363 z m 5.65543,148.35766 c 0.6504,-0.012 1.3216,-0.024 1.7401,0 9.5665,-5e-4 16.339,4.8824 19.1417,11.5059 2.8029,6.6235 1.4453,14.7181 -5.873,20.5714 -4.879,3.9022 -12.6658,6.0977 -20.01167,5.7529 -7.34599,-0.3448 -13.95071,-3.0829 -17.40159,-8.368 l -0.21695,-0.1742 c -4.83904,-6.169 -3.43406,-13.1483 1.30513,-19.0023 4.73908,-5.854 12.86737,-10.1629 21.31688,-10.2857 z" style="fill:url(#linearGradient19282)" />
+</g>
+</g>
+<g id="dialog-templates" transform="translate(15.02581,667.3622)">
+<title id="title33388">folder-templates</title>
+<rect id="folder-templates" style="fill:none" width="16" height="16" x="0" y="0" />
+<rect id="rect33392" y="9" x="3" height="1" width="1" style="fill:url(#linearGradient19282)" />
+<rect id="rect33394" y="10" x="2" height="1" width="1" style="fill:url(#linearGradient19282)" />
+<rect id="rect33396" style="fill:url(#linearGradient19282)" width="1" height="1" x="3" y="11" />
+<rect id="rect33398" style="fill:url(#linearGradient19282)" width="1" height="1" x="2" y="12" />
+<rect id="rect33400" y="13" x="3" height="1" width="1" style="fill:url(#linearGradient19282)" />
+<rect id="rect33402" y="14" x="2" height="1" width="1" style="fill:url(#linearGradient19282)" />
+<rect id="rect33404" style="fill:url(#linearGradient19282)" width="1" height="1" x="4" y="14" />
+<rect id="rect33406" y="14" x="6" height="1" width="1" style="fill:url(#linearGradient19282)" />
+<rect id="rect33408" style="fill:url(#linearGradient19282)" width="1" height="1" x="8" y="14" />
+<rect id="rect33410" y="14" x="10" height="1" width="1" style="fill:url(#linearGradient19282)" />
+<rect id="rect33412" style="fill:url(#linearGradient19282)" width="1" height="1" x="3" y="15" />
+<rect id="rect33414" y="15" x="5" height="1" width="1" style="fill:url(#linearGradient19282)" />
+<rect id="rect33416" style="fill:url(#linearGradient19282)" width="1" height="1" x="7" y="15" />
+<rect id="rect33418" y="15" x="9" height="1" width="1" style="fill:url(#linearGradient19282)" />
+<rect id="rect33420" style="fill:url(#linearGradient19282)" width="1" height="1" x="11" y="15" />
+<rect id="rect33422" style="fill:url(#linearGradient19282)" width="1" height="1" x="12" y="14" />
+<path id="path33424" d="m 2.8127,0.99988 c -0.4584,0.0875 -0.82072,0.5334 -0.8125,1 L 2,10 l 2,0 0,-7 5,0 0,3 3,0 0,8 2,0 2e-4,-8.43762 C 14.0062,5.29832 13.9026,5.03341 13.71895,4.84363 l -3.5625,-3.5625 C 9.96667,1.09743 9.70176,0.99376 9.4377,0.99988 l -6.4375,0 c -0.0312,-0.002 -0.0625,-0.002 -0.0937,0 -0.0312,-0.002 -0.0625,-0.002 -0.0937,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="edit-undo-history" inkscape:label="#edit_undo_history">
-<path id="path2640" transform="translate(0,512.3622)" d="M 49,20 45,25.46875 49,30 49,27 53,27 53,31 57,31 57,25.90625 C 56.67716,25.95999 56.33809,26 56,26 53.77918,26 51.84994,24.79337 50.8125,23 L 49,23 49,20 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
-<rect y="527.3622" x="45" height="16" width="16" id="rect16161" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 56,527.3622 C 53.23858,527.3622 51,529.6008 51,532.3622 51,535.1236 53.23858,537.3622 56,537.3622 58.76142,537.3622 61,535.1236 61,532.3622 61,529.6008 58.76142,527.3622 56,527.3622 Z M 57,529.3309 57,532.3622 57,533.3622 56,533.3622 53,533.3622 53,532.3622 56,532.3622 56,529.3622 Z" id="path16169" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssccccccccc" />
+<rect y="527.3622" x="45" height="16" width="16" id="rect16161" style="fill:none" />
+<path id="path2640" transform="translate(0,512.3622)" d="M 49,20 45,25.46875 49,30 49,27 53,27 53,31 57,31 57,25.90625 C 56.67716,25.95999 56.33809,26 56,26 53.77918,26 51.84994,24.79337 50.8125,23 L 49,23 49,20 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 56,527.3622 C 53.23858,527.3622 51,529.6008 51,532.3622 51,535.1236 53.23858,537.3622 56,537.3622 58.76142,537.3622 61,535.1236 61,532.3622 61,529.6008 58.76142,527.3622 56,527.3622 Z M 57,529.3309 57,532.3622 57,533.3622 56,533.3622 53,533.3622 53,532.3622 56,532.3622 56,529.3622 Z" id="path16169" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssccccccccc" />
</g>
<g id="edit-paste-in-place" inkscape:label="#selection_paste_in_place">
-<rect rx="0" y="547.4825" x="45.07034" height="15.93773" width="16" id="rect14038" style="fill:none;stroke:none" />
-<rect ry="0.5303301" rx="0.5303301" y="547.4247" x="50" height="2.988324" width="6" id="rect6874" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path6973" d="M 49,552.4052 49,560.3741 55,560.3741 57,558.3819 57,552.4052 49,552.4052 Z M 52,553.4013 54,553.4013 54,556.3897 56,556.3897 53,559.378 50,556.3897 52,556.3897 52,553.4013 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path6977" d="M 46.53125,548.4208 C 46.48865,548.4208 46.44598,548.4425 46.40625,548.4519 46.17199,548.5073 45.99874,548.6997 46,548.95 L 46.03125,555.9227 46,562.8955 C 45.9987,563.1457 46.17199,563.3381 46.40625,563.3935 46.46971,563.4202 46.5203,563.4251 46.59375,563.4247 L 49,563.4247 59.46875,563.3623 C 59.76255,563.361 60,563.1259 60,562.8332 L 60,557.448 60,554.3975 60,549.0122 C 60,548.7196 59.76255,548.4841 59.46875,548.4831 L 57,548.4831 57,549.4792 58.46875,549.4792 C 58.76255,549.4807 59,549.7157 59,550.0083 L 59,554.3974 59,557.448 59,561.8371 C 59,562.1298 58.76255,562.3647 58.46875,562.3663 L 49,562.4286 47.59375,562.4286 C 47.56993,562.4287 47.55421,562.4316 47.53125,562.4286 47.48865,562.4286 47.44599,562.4069 47.40625,562.3975 47.21593,562.3175 47.06379,562.1189 47.0625,561.8994 L 47.03125,555.9228 47.0625,549.9461 C 47.0638,549.7266 47.21593,549.528 47.40625,549.4481 47.44599,549.4391 47.48865,549.417 47.53125,549.417 L 49,549.417 49,548.4209 46.53125,548.4209 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect rx="0" y="547.4825" x="45.07034" height="15.93773" width="16" id="rect14038" style="fill:none" />
+<rect ry="0.5303301" rx="0.5303301" y="547.4247" x="50" height="2.988324" width="6" id="rect6874" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path6973" d="M 49,552.4052 49,560.3741 55,560.3741 57,558.3819 57,552.4052 49,552.4052 Z M 52,553.4013 54,553.4013 54,556.3897 56,556.3897 53,559.378 50,556.3897 52,556.3897 52,553.4013 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path6977" d="M 46.53125,548.4208 C 46.48865,548.4208 46.44598,548.4425 46.40625,548.4519 46.17199,548.5073 45.99874,548.6997 46,548.95 L 46.03125,555.9227 46,562.8955 C 45.9987,563.1457 46.17199,563.3381 46.40625,563.3935 46.46971,563.4202 46.5203,563.4251 46.59375,563.4247 L 49,563.4247 59.46875,563.3623 C 59.76255,563.361 60,563.1259 60,562.8332 L 60,557.448 60,554.3975 60,549.0122 C 60,548.7196 59.76255,548.4841 59.46875,548.4831 L 57,548.4831 57,549.4792 58.46875,549.4792 C 58.76255,549.4807 59,549.7157 59,550.0083 L 59,554.3974 59,557.448 59,561.8371 C 59,562.1298 58.76255,562.3647 58.46875,562.3663 L 49,562.4286 47.59375,562.4286 C 47.56993,562.4287 47.55421,562.4316 47.53125,562.4286 47.48865,562.4286 47.44599,562.4069 47.40625,562.3975 47.21593,562.3175 47.06379,562.1189 47.0625,561.8994 L 47.03125,555.9228 47.0625,549.9461 C 47.0638,549.7266 47.21593,549.528 47.40625,549.4481 47.44599,549.4391 47.48865,549.417 47.53125,549.417 L 49,549.417 49,548.4209 46.53125,548.4209 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="edit-paste-style" inkscape:label="#selection_paste_style">
-<g transform="translate(0,19.9375)" id="g27706" inkscape:label="#selection_paste_in_place">
-<rect rx="0" y="547.4825" x="45.07034" height="15.93773" width="16" id="rect27708" style="fill:none;stroke:none" />
-<rect ry="0.5303301" rx="0.5303301" y="547.4247" x="50" height="2.988324" width="6" id="rect27710" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path27712" d="M 49,552.4052 49,560.3741 55,560.3741 57,558.3819 57,552.4052 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path27714" d="M 46.53125,548.4208 C 46.48865,548.4208 46.44598,548.4425 46.40625,548.4519 46.17199,548.5073 45.99874,548.6997 46,548.95 L 46.03125,555.9227 46,562.8955 C 45.9987,563.1457 46.17199,563.3381 46.40625,563.3935 46.46971,563.4202 46.5203,563.4251 46.59375,563.4247 L 49,563.4247 59.46875,563.3623 C 59.76255,563.361 60,563.1259 60,562.8332 L 60,557.448 60,554.3975 60,549.0122 C 60,548.7196 59.76255,548.4841 59.46875,548.4831 L 57,548.4831 57,549.4792 58.46875,549.4792 C 58.76255,549.4807 59,549.7157 59,550.0083 L 59,554.3974 59,557.448 59,561.8371 C 59,562.1298 58.76255,562.3647 58.46875,562.3663 L 49,562.4286 47.59375,562.4286 C 47.56993,562.4287 47.55421,562.4316 47.53125,562.4286 47.48865,562.4286 47.44599,562.4069 47.40625,562.3975 47.21593,562.3175 47.06379,562.1189 47.0625,561.8994 L 47.03125,555.9228 47.0625,549.9461 C 47.0638,549.7266 47.21593,549.528 47.40625,549.4481 47.44599,549.4391 47.48865,549.417 47.53125,549.417 L 49,549.417 49,548.4209 46.53125,548.4209 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
+<rect style="fill:none" id="rect27708" width="16" height="15.93773" x="45.07034" y="567.42" />
+<rect style="fill:url(#linearGradient19282)" id="rect27710" width="6" height="2.988324" x="50" y="567.3622" rx="0.5303301" ry="0.5303301" />
+<path style="fill:url(#linearGradient19282)" d="m 49,572.3427 0,7.9689 6,0 2,-1.9922 0,-5.9767 z" id="path27712" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc" />
+<path style="fill:url(#linearGradient19282)" d="m 46.53125,568.3583 c -0.0426,0 -0.0853,0.022 -0.125,0.031 -0.23426,0.055 -0.40751,0.2478 -0.40625,0.4981 l 0.0312,6.9727 L 46,582.833 c -10e-4,0.2502 0.17199,0.4426 0.40625,0.498 0.0635,0.027 0.11405,0.032 0.1875,0.031 l 2.40625,0 10.46875,-0.062 c 0.2938,-0 0.53125,-0.2366 0.53125,-0.5293 l 0,-5.3852 0,-3.0505 0,-5.3853 c 0,-0.2926 -0.23745,-0.5281 -0.53125,-0.5291 l -2.46875,0 0,0.9961 1.46875,0 c 0.2938,0 0.53125,0.2365 0.53125,0.5291 l 0,4.3891 0,3.0506 0,4.3891 c 0,0.2927 -0.23745,0.5276 -0.53125,0.5292 L 49,582.3661 l -1.40625,0 c -0.0238,1e-4 -0.0395,0 -0.0625,0 -0.0426,0 -0.0853,-0.022 -0.125,-0.031 -0.19032,-0.08 -0.34246,-0.2786 -0.34375,-0.4981 l -0.0312,-5.9766 0.0312,-5.9767 c 10e-4,-0.2195 0.15343,-0.4181 0.34375,-0.498 0.0397,-0.01 0.0824,-0.031 0.125,-0.031 l 1.46875,0 0,-0.9961 -2.46875,0 z" id="path27714" inkscape:connector-curvature="0" />
</g>
<g id="edit-duplicate" inkscape:label="#edit_duplicate">
-<rect y="587.3622" x="45" height="16" width="16" id="rect4989" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" id="rect4993" d="M 60,602.3622 60,593.3622 50,593.3622 50,602.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" id="path4998" d="M 49,597.3622 49,596.3622 49,592.3622 55,592.3622 55,592.3622 55,588.3622 45,588.3622 45,597.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="ccccccccc" />
+<rect y="587.3622" x="45" height="16" width="16" id="rect4989" style="fill:none" />
+<path inkscape:connector-curvature="0" id="rect4993" d="M 60,602.3622 60,593.3622 50,593.3622 50,602.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" id="path4998" d="M 49,597.3622 49,596.3622 49,592.3622 55,592.3622 55,592.3622 55,588.3622 45,588.3622 45,597.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="ccccccccc" />
</g>
<g id="edit-clone" inkscape:label="#edit_clone">
-<path inkscape:connector-curvature="0" id="path27786" d="M 50,612.3622 50,623.3622 60,623.3622 60,612.3622 50,612.3622 Z M 54.46875,614.3622 55.46875,614.3622 C 56.32017,614.3622 57,615.0721 57,615.9247 L 57,617.3622 57.46875,617.3622 C 57.74372,617.3622 57.96875,617.6115 57.96875,617.9247 L 57.96875,618.2372 57.96875,621.3309 52,621.3309 52,618.2372 52,617.9247 C 52,617.6115 52.22503,617.3622 52.5,617.3622 L 52.96875,617.3622 52.96875,615.9247 C 52.96875,615.0721 53.61733,614.3622 54.46875,614.3622 Z M 54.46875,615.3934 C 54.21133,615.3934 54,615.5915 54,615.9247 L 54,617.3622 55.96875,617.3622 55.96875,615.9247 C 55.96875,615.5915 55.72617,615.3934 55.46875,615.3934 L 54.46875,615.3934 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 49,616.3622 49,615.3622 49,611.3622 55,611.3622 55,611.3622 55,607.3622 45,607.3622 45,616.3622 Z" id="path27788" inkscape:connector-curvature="0" />
-<path id="path45837" d="M 45,607.3622 45,623.3622 61,623.3622 61,607.3622 45,607.3622 Z" style="fill:none;stroke:none" inkscape:connector-curvature="0" />
+<path id="path45837" d="M 45,607.3622 45,623.3622 61,623.3622 61,607.3622 45,607.3622 Z" style="fill:none" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path27786" d="M 50,612.3622 50,623.3622 60,623.3622 60,612.3622 50,612.3622 Z M 54.46875,614.3622 55.46875,614.3622 C 56.32017,614.3622 57,615.0721 57,615.9247 L 57,617.3622 57.46875,617.3622 C 57.74372,617.3622 57.96875,617.6115 57.96875,617.9247 L 57.96875,618.2372 57.96875,621.3309 52,621.3309 52,618.2372 52,617.9247 C 52,617.6115 52.22503,617.3622 52.5,617.3622 L 52.96875,617.3622 52.96875,615.9247 C 52.96875,615.0721 53.61733,614.3622 54.46875,614.3622 Z M 54.46875,615.3934 C 54.21133,615.3934 54,615.5915 54,615.9247 L 54,617.3622 55.96875,617.3622 55.96875,615.9247 C 55.96875,615.5915 55.72617,615.3934 55.46875,615.3934 L 54.46875,615.3934 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccccccc" style="fill:url(#linearGradient19282)" d="M 49,616.3622 49,615.3622 49,611.3622 55,611.3622 55,611.3622 55,607.3622 45,607.3622 45,616.3622 Z" id="path27788" inkscape:connector-curvature="0" />
</g>
<g id="edit-clone-unlink" inkscape:label="#edit_unlink_clone">
-<g transform="translate(0,20)" id="g45865" inkscape:label="#edit_clone">
-<path id="path45877" transform="translate(0,492.3622)" d="M 50,120 50,131 60,131 60,120 50,120 Z M 54.46875,122 55.46875,122 C 56.32017,122 57,122.7099 57,123.5625 L 57,125 57.46875,125 C 57.74372,125 57.96875,125.2494 57.96875,125.5625 L 57.96875,125.875 57.96875,128.9687 52,128.9687 52,125.875 52,125.5625 C 52,125.2494 52.22503,125 52.5,125 L 52.96875,125 54,125 55,125 55.96875,125 55.96875,123.5625 C 55.96875,123.2293 55.72617,123.0313 55.46875,123.0313 L 54.46875,123.0313 C 54.21133,123.0313 54,123.2293 54,123.5625 L 54,124 52.96875,124 52.96875,123.5625 C 52.96875,122.7099 53.61733,122 54.46875,122 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 49,616.3622 49,615.3622 49,611.3622 55,611.3622 55,611.3622 55,607.3622 45,607.3622 45,616.3622 Z" id="path45869" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path45871" d="M 45,607.3622 45,623.3622 61,623.3622 61,607.3622 45,607.3622 Z" style="fill:none;stroke:none" />
-</g>
+<path style="fill:none" d="m 45,627.3622 0,16 16,0 0,-16 -16,0 z" id="path45871" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 50,632.3622 0,11 10,0 0,-11 -10,0 z m 4.46875,2 1,0 c 0.85142,0 1.53125,0.7099 1.53125,1.5625 l 0,1.4375 0.46875,0 c 0.27497,0 0.5,0.2494 0.5,0.5625 l 0,0.3125 0,3.0937 -5.96875,0 0,-3.0937 0,-0.3125 c 0,-0.3131 0.22503,-0.5625 0.5,-0.5625 l 0.46875,0 1.03125,0 1,0 0.96875,0 0,-1.4375 c 0,-0.3332 -0.24258,-0.5312 -0.5,-0.5312 l -1,0 c -0.25742,0 -0.46875,0.198 -0.46875,0.5312 l 0,0.4375 -1.03125,0 0,-0.4375 c 0,-0.8526 0.64858,-1.5625 1.5,-1.5625 z" id="path45877" />
+<path inkscape:connector-curvature="0" id="path45869" d="m 49,636.3622 0,-1 0,-4 6,0 0,0 0,-4 -10,0 0,9 z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="ccccccccc" />
</g>
<g id="selection-make-bitmap-copy" inkscape:label="#bitmap_copy">
-<g style="display:inline" inkscape:label="camera-photo" id="g11537" transform="translate(25,371.3622)">
-<rect style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:1;marker:none" id="rect11539" width="16" height="16" x="20" y="276" inkscape:label="a" />
-<path inkscape:connector-curvature="0" id="rect5238" d="M 26,278 C 25.45004,278 25,278.45 25,279 L 25,280 22,280 C 21.44799,280 21,280.45 21,281 L 21,289 C 21,289.55 21.44799,290 22,290 L 34,290 C 34.55201,290 35,289.55 35,289 L 35,281 C 35,280.45 34.55201,280 34,280 L 31,280 31,279 C 31,278.45 30.54996,278 30,278 L 26,278 Z M 28,281 C 30.20914,281 32,282.7909 32,285 32,287.2091 30.20914,289 28,289 25.79086,289 24,287.2091 24,285 24,282.7909 25.79086,281 28,281 Z M 28,283 C 26.89543,283 26,283.8954 26,285 26,286.1046 26.89543,287 28,287 29.10457,287 30,286.1046 30,285 30,283.8954 29.10457,283 28,283 Z" style="display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" />
+<g inkscape:label="camera-photo" id="g11537" transform="translate(25,371.3622)">
+<rect style="fill:none" id="rect11539" width="16" height="16" x="20" y="276" />
+<path inkscape:connector-curvature="0" id="rect5238" d="M 26,278 C 25.45004,278 25,278.45 25,279 L 25,280 22,280 C 21.44799,280 21,280.45 21,281 L 21,289 C 21,289.55 21.44799,290 22,290 L 34,290 C 34.55201,290 35,289.55 35,289 L 35,281 C 35,280.45 34.55201,280 34,280 L 31,280 31,279 C 31,278.45 30.54996,278 30,278 L 26,278 Z M 28,281 C 30.20914,281 32,282.7909 32,285 32,287.2091 30.20914,289 28,289 25.79086,289 24,287.2091 24,285 24,282.7909 25.79086,281 28,281 Z M 28,283 C 26.89543,283 26,283.8954 26,285 26,286.1046 26.89543,287 28,287 29.10457,287 30,286.1046 30,285 30,283.8954 29.10457,283 28,283 Z" style="fill:url(#linearGradient19282);stroke-width:3" />
</g>
</g>
<g id="dialog-xml-editor" inkscape:label="#xml_editor">
-<g inkscape:label="#document_metadata" id="document-metadata-7" transform="matrix(0.9985297,0,0,1,30.02202,59.99998)">
-<rect y="607.3622" x="14.97644" height="16" width="16" id="rect10285-1" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" id="path10291-8" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect10298-7" width="1" height="16" x="15" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect10300-4" width="16" height="1" x="15" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect10302-5" width="1" height="16" x="30" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect10304-6" width="16" height="1" x="15" y="622.3622" />
+<g transform="matrix(0.9985297,0,0,1,30.02202,59.99998)" id="g2966">
+<rect y="607.3622" x="14.97644" height="16" width="16" id="rect10285-1" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 17,609.3622 12,0 0,2 -12,0 0,-2 z" id="path10291-8" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect10298-7" width="1" height="16" x="15" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect10300-4" width="16" height="1" x="15" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect10302-5" width="1" height="16" x="30" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect10304-6" width="16" height="1" x="15" y="622.3622" />
</g>
-<path sodipodi:nodetypes="ccc" transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path51524" d="M 52,162 48,165 52,168" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 54,674.3622 58,677.3622 54,680.3622" id="path51526" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" />
+<path sodipodi:nodetypes="ccc" transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path51524" d="M 52,162 48,165 52,168" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px" />
+<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px" d="M 54,674.3622 58,677.3622 54,680.3622" id="path51526" inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" />
</g>
<g id="edit-select-all-layers" inkscape:label="#selection_select_all_in_all_layers">
-<rect y="687.3622" x="45" height="16" width="16" id="rect11958" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path11964" d="M 47,692.3622 50,689.3622 58,689.3622 55,692.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="175" x="45" height="1" width="1" id="rect55305" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<rect transform="translate(0,512.3622)" y="175" x="47" height="1" width="1" id="rect55307" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="175" x="49" height="1" width="1" id="rect55309" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="175" x="51" height="1" width="1" id="rect55311" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="175" x="53" height="1" width="1" id="rect55313" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="175" x="55" height="1" width="1" id="rect55315" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="175" x="57" height="1" width="1" id="rect55317" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="175" x="59" height="1" width="1" id="rect55319" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="177" x="45" height="1" width="1" id="rect55321" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="179" x="45" height="1" width="1" id="rect55323" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="181" x="45" height="1" width="1" id="rect55325" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="183" x="45" height="1" width="1" id="rect55327" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="697.3622" x="45" height="1" width="1" id="rect55329" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="187" x="45" height="1" width="1" id="rect55331" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="189" x="45" height="1" width="1" id="rect55333" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 47,696.3622 50,693.3622 58,693.3622 55,696.3622 Z" id="path55339" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path55341" d="M 47,700.3622 50,697.3622 58,697.3622 55,700.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="177" x="59" height="1" width="1" id="rect55343" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="179" x="59" height="1" width="1" id="rect55345" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="181" x="59" height="1" width="1" id="rect55347" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="183" x="59" height="1" width="1" id="rect55349" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="185" x="59" height="1" width="1" id="rect55351" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="187" x="59" height="1" width="1" id="rect55353" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="189" x="59" height="1" width="1" id="rect55355" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="189" x="47" height="1" width="1" id="rect55357" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="189" x="49" height="1" width="1" id="rect55359" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="189" x="51" height="1" width="1" id="rect55361" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="189" x="53" height="1" width="1" id="rect55363" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="189" x="55" height="1" width="1" id="rect55365" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="189" x="57" height="1" width="1" id="rect55367" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="687.3622" x="45" height="16" width="16" id="rect11958" style="fill:none" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path11964" d="M 47,692.3622 50,689.3622 58,689.3622 55,692.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="175" x="45" height="1" width="1" id="rect55305" style="fill:url(#linearGradient19282);stroke-linecap:round;stroke-linejoin:round" />
+<rect transform="translate(0,512.3622)" y="175" x="47" height="1" width="1" id="rect55307" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="175" x="49" height="1" width="1" id="rect55309" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="175" x="51" height="1" width="1" id="rect55311" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="175" x="53" height="1" width="1" id="rect55313" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="175" x="55" height="1" width="1" id="rect55315" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="175" x="57" height="1" width="1" id="rect55317" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="175" x="59" height="1" width="1" id="rect55319" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="177" x="45" height="1" width="1" id="rect55321" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="179" x="45" height="1" width="1" id="rect55323" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="181" x="45" height="1" width="1" id="rect55325" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="183" x="45" height="1" width="1" id="rect55327" style="fill:url(#linearGradient19282)" />
+<rect y="697.3622" x="45" height="1" width="1" id="rect55329" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="187" x="45" height="1" width="1" id="rect55331" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="189" x="45" height="1" width="1" id="rect55333" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 47,696.3622 50,693.3622 58,693.3622 55,696.3622 Z" id="path55339" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path55341" d="M 47,700.3622 50,697.3622 58,697.3622 55,700.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="177" x="59" height="1" width="1" id="rect55343" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="179" x="59" height="1" width="1" id="rect55345" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="181" x="59" height="1" width="1" id="rect55347" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="183" x="59" height="1" width="1" id="rect55349" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="185" x="59" height="1" width="1" id="rect55351" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="187" x="59" height="1" width="1" id="rect55353" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="189" x="59" height="1" width="1" id="rect55355" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="189" x="47" height="1" width="1" id="rect55357" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="189" x="49" height="1" width="1" id="rect55359" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="189" x="51" height="1" width="1" id="rect55361" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="189" x="53" height="1" width="1" id="rect55363" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="189" x="55" height="1" width="1" id="rect55365" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="189" x="57" height="1" width="1" id="rect55367" style="fill:url(#linearGradient19282)" />
</g>
<g id="edit-select-all" inkscape:label="#selection_select_all">
-<rect style="fill:none;stroke:none" id="rect55443" width="16" height="16" x="45" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55447" width="1" height="1" x="45" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55449" width="1" height="1" x="47" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55451" width="1" height="1" x="49" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55453" width="1" height="1" x="51" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55455" width="1" height="1" x="53" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55457" width="1" height="1" x="55" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55459" width="1" height="1" x="57" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55461" width="1" height="1" x="59" y="707.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55463" width="1" height="1" x="45" y="709.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55465" width="1" height="1" x="45" y="711.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55467" width="1" height="1" x="45" y="713.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55469" width="1" height="1" x="45" y="715.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55471" width="1" height="1" x="45" y="717.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55473" width="1" height="1" x="45" y="719.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55475" width="1" height="1" x="45" y="721.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55481" width="1" height="1" x="59" y="709.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55483" width="1" height="1" x="59" y="711.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55485" width="1" height="1" x="59" y="713.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55487" width="1" height="1" x="59" y="715.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55489" width="1" height="1" x="59" y="717.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55491" width="1" height="1" x="59" y="719.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55493" width="1" height="1" x="59" y="721.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55495" width="1" height="1" x="47" y="721.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55497" width="1" height="1" x="49" y="721.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55499" width="1" height="1" x="51" y="721.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55501" width="1" height="1" x="53" y="721.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55503" width="1" height="1" x="55" y="721.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55505" width="1" height="1" x="57" y="721.3622" />
-<path id="rect55539" transform="translate(0,512.3622)" d="M 47,203 47,208 55,208 55,205.5 C 54.83323,205.519 54.67178,205.5625 54.5,205.5625 52.72345,205.5625 51.20038,204.5157 50.46875,203 L 47,203 Z" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<ellipse transform="matrix(1,0,0,1.166667,0.9999829,478.8622)" id="path55541" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="53.5" cy="201" rx="3.5" ry="3" />
+<rect style="fill:none" id="rect55443" width="16" height="16" x="45" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55447" width="1" height="1" x="45" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55449" width="1" height="1" x="47" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55451" width="1" height="1" x="49" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55453" width="1" height="1" x="51" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55455" width="1" height="1" x="53" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55457" width="1" height="1" x="55" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55459" width="1" height="1" x="57" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55461" width="1" height="1" x="59" y="707.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55463" width="1" height="1" x="45" y="709.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55465" width="1" height="1" x="45" y="711.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55467" width="1" height="1" x="45" y="713.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55469" width="1" height="1" x="45" y="715.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55471" width="1" height="1" x="45" y="717.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55473" width="1" height="1" x="45" y="719.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55475" width="1" height="1" x="45" y="721.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55481" width="1" height="1" x="59" y="709.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55483" width="1" height="1" x="59" y="711.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55485" width="1" height="1" x="59" y="713.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55487" width="1" height="1" x="59" y="715.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55489" width="1" height="1" x="59" y="717.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55491" width="1" height="1" x="59" y="719.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55493" width="1" height="1" x="59" y="721.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55495" width="1" height="1" x="47" y="721.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55497" width="1" height="1" x="49" y="721.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55499" width="1" height="1" x="51" y="721.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55501" width="1" height="1" x="53" y="721.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55503" width="1" height="1" x="55" y="721.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55505" width="1" height="1" x="57" y="721.3622" />
+<path id="rect55539" transform="translate(0,512.3622)" d="M 47,203 47,208 55,208 55,205.5 C 54.83323,205.519 54.67178,205.5625 54.5,205.5625 52.72345,205.5625 51.20038,204.5157 50.46875,203 L 47,203 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<ellipse transform="matrix(1,0,0,1.166667,0.9999829,478.8622)" id="path55541" style="fill:url(#linearGradient19282)" cx="53.5" cy="201" rx="3.5" ry="3" />
</g>
<g id="edit-select-none" inkscape:label="#selection_deselect">
-<g transform="translate(0,20)" id="g55605" inkscape:label="#selection_select_all">
-<rect style="fill:none;stroke:none" id="rect55607" width="16" height="16" x="45" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55609" width="1" height="1" x="45" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55611" width="1" height="1" x="47" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55613" width="1" height="1" x="49" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55615" width="1" height="1" x="51" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55617" width="1" height="1" x="53" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55619" width="1" height="1" x="55" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55621" width="1" height="1" x="57" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55623" width="1" height="1" x="59" y="707.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55625" width="1" height="1" x="45" y="709.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55627" width="1" height="1" x="45" y="711.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55629" width="1" height="1" x="45" y="713.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55631" width="1" height="1" x="45" y="715.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55633" width="1" height="1" x="45" y="717.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55635" width="1" height="1" x="45" y="719.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55637" width="1" height="1" x="45" y="721.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55639" width="1" height="1" x="59" y="709.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55641" width="1" height="1" x="59" y="711.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55643" width="1" height="1" x="59" y="713.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55645" width="1" height="1" x="59" y="715.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55647" width="1" height="1" x="59" y="717.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55649" width="1" height="1" x="59" y="719.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55651" width="1" height="1" x="59" y="721.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55653" width="1" height="1" x="47" y="721.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55655" width="1" height="1" x="49" y="721.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55657" width="1" height="1" x="51" y="721.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55659" width="1" height="1" x="53" y="721.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55661" width="1" height="1" x="55" y="721.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55663" width="1" height="1" x="57" y="721.3622" />
-<path inkscape:connector-curvature="0" id="path55665" transform="translate(0,512.3622)" d="M 47,203 47,208 55,208 55,205.5 C 54.83323,205.519 54.67178,205.5625 54.5,205.5625 52.72345,205.5625 51.20038,204.5157 50.46875,203 L 47,203 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<ellipse transform="matrix(1,0,0,1.166667,0.9999829,478.8622)" id="path55667" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="53.5" cy="201" rx="3.5" ry="3" />
-</g>
+<rect y="727.3622" x="45" height="16" width="16" id="rect55607" style="fill:none" />
+<rect y="727.3622" x="45" height="1" width="1" id="rect55609" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="727.3622" x="47" height="1" width="1" id="rect55611" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="727.3622" x="49" height="1" width="1" id="rect55613" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="727.3622" x="51" height="1" width="1" id="rect55615" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="727.3622" x="53" height="1" width="1" id="rect55617" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="727.3622" x="55" height="1" width="1" id="rect55619" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="727.3622" x="57" height="1" width="1" id="rect55621" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="727.3622" x="59" height="1" width="1" id="rect55623" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="729.3622" x="45" height="1" width="1" id="rect55625" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="731.3622" x="45" height="1" width="1" id="rect55627" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="733.3622" x="45" height="1" width="1" id="rect55629" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="735.3622" x="45" height="1" width="1" id="rect55631" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="737.3622" x="45" height="1" width="1" id="rect55633" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="739.3622" x="45" height="1" width="1" id="rect55635" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="741.3622" x="45" height="1" width="1" id="rect55637" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="729.3622" x="59" height="1" width="1" id="rect55639" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="731.3622" x="59" height="1" width="1" id="rect55641" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="733.3622" x="59" height="1" width="1" id="rect55643" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="735.3622" x="59" height="1" width="1" id="rect55645" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="737.3622" x="59" height="1" width="1" id="rect55647" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="739.3622" x="59" height="1" width="1" id="rect55649" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="741.3622" x="59" height="1" width="1" id="rect55651" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="741.3622" x="47" height="1" width="1" id="rect55653" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="741.3622" x="49" height="1" width="1" id="rect55655" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="741.3622" x="51" height="1" width="1" id="rect55657" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="741.3622" x="53" height="1" width="1" id="rect55659" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="741.3622" x="55" height="1" width="1" id="rect55661" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="741.3622" x="57" height="1" width="1" id="rect55663" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="m 47,735.3622 0,5 8,0 0,-2.5 c -0.16677,0.019 -0.32822,0.062 -0.5,0.062 -1.77655,0 -3.29962,-1.0468 -4.03125,-2.5625 L 47,735.3622 Z" id="path55665" inkscape:connector-curvature="0" />
+<ellipse ry="3.500001" rx="3.5" cy="733.3622" cx="54.49998" style="opacity:0.3;fill:url(#linearGradient19282);stroke-width:1.0801237" id="path55667" />
</g>
<g id="edit-select-invert" inkscape:label="#selection_invert">
-<rect style="opacity:1;fill:none;fill-opacity:1;stroke:none" id="rect55726" width="16" height="16" x="45.0625" y="747.4872" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55728" width="1" height="1" x="45" y="747.3622" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55730" width="1" height="1" x="47.0625" y="747.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55732" width="1" height="1" x="49.0625" y="747.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55734" width="1" height="1" x="51.0625" y="747.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55736" width="1" height="1" x="53.0625" y="747.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55738" width="1" height="1" x="55.0625" y="747.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55740" width="1" height="1" x="57.0625" y="747.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55742" width="1" height="1" x="59.0625" y="747.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55744" width="1" height="1" x="45.0625" y="749.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55746" width="1" height="1" x="45.0625" y="751.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55748" width="1" height="1" x="45.0625" y="753.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55750" width="1" height="1" x="45.0625" y="755.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55752" width="1" height="1" x="45.0625" y="757.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55754" width="1" height="1" x="45.0625" y="759.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55756" width="1" height="1" x="45.0625" y="761.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55758" width="1" height="1" x="59.0625" y="749.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55760" width="1" height="1" x="59.0625" y="751.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55762" width="1" height="1" x="59.0625" y="753.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55764" width="1" height="1" x="59.0625" y="755.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55766" width="1" height="1" x="59.0625" y="757.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55768" width="1" height="1" x="59.0625" y="759.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55770" width="1" height="1" x="59.0625" y="761.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55772" width="1" height="1" x="47.0625" y="761.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55774" width="1" height="1" x="49.0625" y="761.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55776" width="1" height="1" x="51.0625" y="761.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55778" width="1" height="1" x="53.0625" y="761.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55780" width="1" height="1" x="55.0625" y="761.4872" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect55782" width="1" height="1" x="57.0625" y="761.4872" />
-<rect transform="translate(0,512.3622)" y="238" x="48" height="1" width="1" id="rect55861" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="240" x="48" height="1" width="1" id="rect55863" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="242" x="48" height="1" width="1" id="rect55865" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="244" x="48" height="1" width="1" id="rect55867" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="246" x="48" height="1" width="1" id="rect55869" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="238" x="50" height="1" width="1" id="rect55871" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="238" x="52" height="1" width="1" id="rect55873" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="750.3622" x="54" height="1" width="1" id="rect55875" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="238" x="56" height="1" width="1" id="rect55877" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="240" x="56" height="1" width="1" id="rect55879" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="242" x="56" height="1" width="1" id="rect55881" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="244" x="56" height="1" width="1" id="rect55883" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="246" x="56" height="1" width="1" id="rect55885" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="246" x="50" height="1" width="1" id="rect55887" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="246" x="52" height="1" width="1" id="rect55889" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="246" x="54" height="1" width="1" id="rect55891" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect55726" width="16" height="16" x="45.0625" y="747.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55728" width="1" height="1" x="45" y="747.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect55730" width="1" height="1" x="47.0625" y="747.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55732" width="1" height="1" x="49.0625" y="747.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55734" width="1" height="1" x="51.0625" y="747.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55736" width="1" height="1" x="53.0625" y="747.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55738" width="1" height="1" x="55.0625" y="747.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55740" width="1" height="1" x="57.0625" y="747.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55742" width="1" height="1" x="59.0625" y="747.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55744" width="1" height="1" x="45.0625" y="749.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55746" width="1" height="1" x="45.0625" y="751.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55748" width="1" height="1" x="45.0625" y="753.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55750" width="1" height="1" x="45.0625" y="755.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55752" width="1" height="1" x="45.0625" y="757.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55754" width="1" height="1" x="45.0625" y="759.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55756" width="1" height="1" x="45.0625" y="761.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55758" width="1" height="1" x="59.0625" y="749.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55760" width="1" height="1" x="59.0625" y="751.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55762" width="1" height="1" x="59.0625" y="753.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55764" width="1" height="1" x="59.0625" y="755.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55766" width="1" height="1" x="59.0625" y="757.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55768" width="1" height="1" x="59.0625" y="759.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55770" width="1" height="1" x="59.0625" y="761.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55772" width="1" height="1" x="47.0625" y="761.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55774" width="1" height="1" x="49.0625" y="761.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55776" width="1" height="1" x="51.0625" y="761.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55778" width="1" height="1" x="53.0625" y="761.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55780" width="1" height="1" x="55.0625" y="761.4872" />
+<rect style="fill:url(#linearGradient19282)" id="rect55782" width="1" height="1" x="57.0625" y="761.4872" />
+<rect transform="translate(0,512.3622)" y="238" x="48" height="1" width="1" id="rect55861" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="240" x="48" height="1" width="1" id="rect55863" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="242" x="48" height="1" width="1" id="rect55865" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="244" x="48" height="1" width="1" id="rect55867" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="246" x="48" height="1" width="1" id="rect55869" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="238" x="50" height="1" width="1" id="rect55871" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="238" x="52" height="1" width="1" id="rect55873" style="fill:url(#linearGradient19282)" />
+<rect y="750.3622" x="54" height="1" width="1" id="rect55875" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="238" x="56" height="1" width="1" id="rect55877" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="240" x="56" height="1" width="1" id="rect55879" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="242" x="56" height="1" width="1" id="rect55881" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="244" x="56" height="1" width="1" id="rect55883" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="246" x="56" height="1" width="1" id="rect55885" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="246" x="50" height="1" width="1" id="rect55887" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="246" x="52" height="1" width="1" id="rect55889" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="246" x="54" height="1" width="1" id="rect55891" style="fill:url(#linearGradient19282)" />
</g>
<g id="dialog-tile-clones" inkscape:label="#edit_create_tiled_clones">
-<g transform="matrix(0.9985297,0,0,1,30.02353,160)" id="g55961" inkscape:label="#document_metadata">
-<rect style="fill:none;stroke:none" id="rect55963" width="16" height="16" x="14.97644" y="607.3622" />
-<path inkscape:connector-curvature="0" id="path55965" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="15" height="16" width="1" id="rect55967" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="15" height="1" width="16" id="rect55969" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="30" height="16" width="1" id="rect55971" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="622.3622" x="15" height="1" width="16" id="rect55973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g transform="matrix(0.9985297,0,0,1,30.02353,160)" id="g55961">
+<rect style="fill:none" id="rect55963" width="16" height="16" x="14.97644" y="607.3622" />
+<path inkscape:connector-curvature="0" id="path55965" d="m 17,609.3622 12,0 0,2 -12,0 0,-2 z" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="16" width="1" id="rect55967" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="1" width="16" id="rect55969" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="30" height="16" width="1" id="rect55971" style="fill:url(#linearGradient19282)" />
+<rect y="622.3622" x="15" height="1" width="16" id="rect55973" style="fill:url(#linearGradient19282)" />
</g>
-<path transform="translate(0,512.3622)" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="rect55988" d="M 47,261 47,266 51,266 51,262 53,262 53,261 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect55990" transform="translate(0,512.3622)" d="M 52,263 52,269 59,269 59,263 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<path transform="translate(0,512.3622)" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="rect55988" d="M 47,261 47,266 51,266 51,262 53,262 53,261 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect55990" transform="translate(0,512.3622)" d="M 52,263 52,269 59,269 59,263 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="edit-select-original">
-<path id="path56059" transform="translate(0,512.3622)" d="M 55,280 55,282.0937 C 55.14783,282.0436 55.30201,282 55.46875,282 L 56.46875,282 C 57.32017,282 58,282.7099 58,283.5625 L 58,285 58.46875,285 C 58.74372,285 58.96875,285.2493 58.96875,285.5625 L 58.96875,285.875 58.96875,288.9687 53,288.9687 53,286 51,286 51,291 61,291 61,280 55,280 Z M 55.5,283.0312 C 55.24258,283.0312 55.03125,283.2293 55.03125,283.5625 L 55.03125,285 57,285 57,283.5625 C 57,283.2293 56.75742,283.0312 56.5,283.0312 L 55.5,283.0312 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path56048" d="M 49,797.3622 49,797.3622 54,797.3622 54,792.3622 54,792.3622 54,788.3622 45,788.3622 45,797.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="ccccccccc" />
-<path style="fill:none;stroke:none" d="M 45,787.3622 45,803.3622 61,803.3622 61,787.3622 45,787.3622 Z" id="path56050" inkscape:connector-curvature="0" />
-</g>
-<g transform="translate(-24.5,501.8622)" id="zoom-original" inkscape:label="#g6809">
-<g transform="matrix(0.996399,0,0,1,95.08523,-222.9354)" id="zoom_1_to_1">
-<use xlink:href="#g5796" transform="matrix(1,0,0,0.997925,-0.04089,0.477615)" x="0" y="0" id="use5816" width="1250" height="1250" />
-</g>
-</g>
-<g transform="matrix(0.9921895,0,0,1,-23.1633,502.4247)" id="zoom-half-size" inkscape:label="#g6895">
-<use xlink:href="#g5796" height="1250" width="1250" id="use5818" y="0" x="0" transform="matrix(0.996399,0,0,0.997925,95.04449,-202.4578)" />
-</g>
-<g id="g11074" transform="matrix(1,0,0,0.9980195,0,21.07621)" />
-<g id="g11109" />
-<g id="g11198" />
-<g id="g11329" transform="translate(20)" />
-<g id="g11555">
-<rect y="527.3622" x="75" height="16" width="16" id="rect10213" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 82.5,527.3622 C 78.35787,527.3622 75,530.6993 75,534.7997 75,538.9001 78.35787,542.2059 82.5,542.2059 83.97335,542.2059 85.34092,541.7761 86.5,541.0497 L 88.46875,542.9872 C 88.98674,543.4988 89.80212,543.4752 90.3125,542.9559 L 90.5625,542.7059 C 91.07288,542.1866 91.08049,541.3425 90.5625,540.8309 L 88.65625,538.9871 C 89.49555,537.7882 90,536.3689 90,534.7997 90,530.6993 86.64213,527.3622 82.5,527.3622 Z M 78,531.3622 79.5,531.3622 80,531.3622 80,531.8622 80,538.3622 79,538.3622 79,532.3622 78,532.3622 78,531.3622 Z M 84,531.3622 85.5,531.3622 86,531.3622 86,531.8622 86,538.3622 85,538.3622 85,532.3622 84,532.3622 84,531.3622 Z M 82,534.3622 83,534.3622 83,535.3622 82,535.3622 82,534.3622 Z M 82,537.3622 83,537.3622 83,538.3622 82,538.3622 82,537.3622 Z" id="path11337" />
-</g>
-<g id="zoom-double-size" transform="translate(-21,20)" inkscape:label="#g11422">
-<g transform="translate(21)" id="g11410">
-<g transform="translate(0,20)" id="g11412">
-<g id="g11414">
-<rect style="fill:none;stroke:none" id="rect11416" width="16" height="16" x="75" y="15" transform="translate(0,512.3622)" />
-</g>
-<g id="g11418">
-<path sodipodi:nodetypes="sssccccccssccccccccccccccccccccccccccccccccc" inkscape:connector-curvature="0" id="path11420" transform="translate(0,492.3622)" d="M 82.5,35 C 78.35787,35 75,38.33709 75,42.4375 75,46.53789 78.35787,49.84375 82.5,49.84375 83.97335,49.84375 85.34092,49.41397 86.5,48.6875 L 88.46875,50.625 C 88.98674,51.13661 89.80212,51.11299 90.3125,50.59375 L 90.5625,50.34375 C 91.07288,49.82451 91.08049,48.98035 90.5625,48.46875 L 88.65625,46.625 C 89.49555,45.42604 90,44.00669 90,42.4375 90,38.3371 86.64213,35 82.5,35 Z M 85,39 86.5,39 87,39 87,39.5 87,46 86,46 86,40 85,40 Z M 78,39 81,39 81,43 79,43 79,45 81,45 81,46 79.5,46 78,46 78,42 80,42 80,40 78,40 Z M 83,42 84,42 84,43 83,43 Z M 83,45 84,45 84,46 83,46 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-</g>
-<g id="zoom-fit-selection" inkscape:label="#g15477">
-<g id="g15464">
-<g transform="translate(0,40)" id="g11432">
-<g transform="translate(0,20)" id="g11434">
-<g id="g11436">
-<rect style="fill:none;stroke:none" id="rect11438" width="16" height="16" x="75" y="15" transform="translate(0,512.3622)" />
-</g>
-<g id="g11440">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 82.5,75 C 78.35787,75 75,78.33709 75,82.4375 75,86.53789 78.35787,89.84375 82.5,89.84375 83.97335,89.84375 85.34092,89.41397 86.5,88.6875 L 88.46875,90.625 C 88.98674,91.13661 89.80212,91.11299 90.3125,90.59375 L 90.5625,90.34375 C 91.07288,89.82451 91.08049,88.98035 90.5625,88.46875 L 88.65625,86.625 C 89.49555,85.42604 90,84.00669 90,82.4375 90,78.3371 86.64213,75 82.5,75 Z M 78,78 79,78 79,79 78,79 78,78 Z M 80,78 81,78 81,79 80,79 80,78 Z M 82,78 83,78 83,79 82,79 82,78 Z M 84,78 85,78 85,79 84,79 84,78 Z M 86,78 87,78 87,79 86,79 86,78 Z M 78,80 79,80 79,81 78,81 78,80 Z M 86,80 87,80 87,81 86,81 86,80 Z M 78,82 79,82 79,83 78,83 78,82 Z M 86,82 87,82 87,83 86,83 86,82 Z M 78,84 79,84 79,85 78,85 78,84 Z M 86,84 87,84 87,85 86,85 86,84 Z M 78,86 79,86 79,87 78,87 78,86 Z M 80,86 81,86 81,87 80,87 80,86 Z M 82,86 83,86 83,87 82,87 82,86 Z M 84,86 85,86 85,87 84,87 84,86 Z M 86,86 87,86 87,87 86,87 86,86 Z" transform="translate(0,452.3622)" id="path11442" inkscape:connector-curvature="0" />
-</g>
-</g>
-</g>
-</g>
-</g>
-<g id="zoom-fit-drawing" inkscape:label="#g11534">
-<g transform="translate(0,20)" id="g11478" inkscape:label="#zoom_select">
-<g transform="translate(-23,19.5)" inkscape:label="#zoom_select" id="g11480">
-<g id="g11482" inkscape:label="#zoom_selection">
-<g transform="translate(0,20)" id="g11484" inkscape:label="#g11150">
-<g transform="translate(0,19.96825)" id="g11486">
-<g transform="matrix(1,0,0,0.9980195,0,21.07621)" id="g11488" />
-</g>
-</g>
-</g>
-</g>
-<g id="g11492" transform="translate(-21,40)">
-<g transform="translate(21)" id="g11494">
-<g transform="translate(0,20)" id="g11496">
-<g id="g11498">
-<rect style="fill:none;stroke:none" id="rect11500" width="16" height="16" x="75" y="15" transform="translate(0,512.3622)" />
-</g>
-<g id="g11502">
-<path id="path11504" transform="translate(0,432.3622)" d="M 82.5,95 C 78.35787,95 75,98.33709 75,102.4375 75,106.5379 78.35787,109.8438 82.5,109.8438 83.97335,109.8438 85.34092,109.414 86.5,108.6875 L 88.46875,110.625 C 88.98674,111.1366 89.80212,111.113 90.3125,110.5938 L 90.5625,110.3438 C 91.07288,109.8245 91.08049,108.9804 90.5625,108.4688 L 88.65625,106.625 C 89.49555,105.426 90,104.0067 90,102.4375 90,98.3371 86.64213,95 82.5,95 Z M 78,98 87,98 87,107 78,107 78,98 Z M 79,99 79,106 86,106 86,99 79,99 Z M 80,100 85,100 85,105 80,105 80,100 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-</g>
-</g>
-</g>
-</g>
-</g>
-<g id="g11563" inkscape:label="#zoom_select" transform="translate(-23,59.5)">
-<g inkscape:label="#zoom_selection" id="g11565">
-<g inkscape:label="#g11150" id="g11567" transform="translate(0,20)">
-<g id="g11569" transform="translate(0,19.96825)">
-<g id="g11571" transform="matrix(1,0,0,0.9980195,0,21.07621)" />
-</g>
-</g>
-</g>
-</g>
-<g transform="translate(-21,80)" id="zoom-fit-page" inkscape:label="#g11573">
-<g id="g11575" transform="translate(21)">
-<g id="g11577" transform="translate(0,20)">
-<g id="g11579">
-<rect transform="translate(0,512.3622)" y="15" x="75" height="16" width="16" id="rect11581" style="fill:none;stroke:none" />
-</g>
-<g id="g11583">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 82.5,115 C 78.35787,115 75,118.3371 75,122.4375 75,126.5379 78.35787,129.8437 82.5,129.8437 83.97335,129.8437 85.34092,129.414 86.5,128.6875 L 88.46875,130.625 C 88.98674,131.1366 89.80212,131.1131 90.3125,130.5937 L 90.5625,130.3437 C 91.07288,129.8245 91.08049,128.9803 90.5625,128.4687 L 88.65625,126.625 C 89.49555,125.426 90,124.0067 90,122.4375 90,118.3371 86.64213,115 82.5,115 Z M 79,117 86,117 86,128 79,128 Z M 80,118 80,127 85,127 85,125 85,120 85,118 84,118 Z" transform="translate(0,412.3622)" id="path11585" inkscape:connector-curvature="0" sodipodi:nodetypes="sssccccccssccccccccccccc" />
-</g>
-</g>
-</g>
-</g>
-<g inkscape:label="#g11573" id="zoom-fit-width" transform="translate(-21,100)">
-<g transform="translate(21)" id="g11633">
-<g transform="translate(0,20)" id="g11635">
-<g id="g11637">
-<rect style="fill:none;stroke:none" id="rect11639" width="16" height="16" x="75" y="15" transform="translate(0,512.3622)" />
-</g>
-<g id="g11641">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 82.5,135 C 78.35787,135 75,138.3371 75,142.4375 75,146.5379 78.35787,149.8437 82.5,149.8437 83.97335,149.8437 85.34092,149.414 86.5,148.6875 L 88.46875,150.625 C 88.98674,151.1366 89.80212,151.1131 90.3125,150.5937 L 90.5625,150.3437 C 91.07288,149.8245 91.08049,148.9803 90.5625,148.4687 L 88.65625,146.625 C 89.49555,145.426 90,144.0067 90,142.4375 90,138.3371 86.64213,135 82.5,135 Z M 80,139 80,141 85,141 85,139 88,142 85,145 85,143 80,143 80,145 77,142 Z" transform="translate(0,392.3622)" id="path11643" inkscape:connector-curvature="0" sodipodi:nodetypes="sssccccccssccccccccccc" />
-</g>
-</g>
-</g>
-</g>
-<g id="g11647" transform="translate(63,100)" />
-<g transform="matrix(-1,0,0,1,102,100)" id="g11659" />
-<g id="zoom-next" inkscape:label="#g11691">
-<g id="g11667" transform="translate(0,120)">
-<g id="g11669" transform="translate(0,20)">
-<g id="g11671">
-<rect transform="translate(0,512.3622)" y="15" x="75" height="16" width="16" id="rect11673" style="fill:none;stroke:none" />
-</g>
-<g id="g11675">
-<path sodipodi:nodetypes="sssccccccssccccccccc" inkscape:connector-curvature="0" id="path11677" transform="translate(0,372.3622)" d="M 82.5,155 C 78.35787,155 75,158.3371 75,162.4375 75,166.5379 78.35787,169.8437 82.5,169.8437 83.97335,169.8437 85.34092,169.414 86.5,168.6875 L 88.46875,170.625 C 88.98674,171.1366 89.80212,171.1132 90.3125,170.5937 L 90.5625,170.3437 C 91.07288,169.8245 91.08049,168.9803 90.5625,168.4687 L 88.65625,166.625 C 89.49555,165.426 90,164.0067 90,162.4375 90,158.3371 86.64213,155 82.5,155 Z M 79,158 85,162 85,159 86,159 C 86,161.3333 86,159 86,165 L 85,165 85,162 79,166 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-</g>
-<g id="zoom-previous" inkscape:label="#g11721">
-<g transform="translate(0,20)" id="g11699" inkscape:label="#g11691">
-<g id="g11701" transform="translate(0,120)">
-<g id="g11703" transform="translate(0,20)">
-<g id="g11705">
-<rect transform="translate(0,512.3622)" y="15" x="75" height="16" width="16" id="rect11707" style="fill:none;stroke:none" />
-</g>
-<g id="g11709">
-<path id="path11715" transform="translate(0,352.3622)" d="M 82.5,175 C 78.35787,175 75,178.3371 75,182.4375 75,186.5379 78.35787,189.8437 82.5,189.8437 83.97335,189.8437 85.34092,189.414 86.5,188.6875 L 88.46875,190.625 C 88.98674,191.1366 89.80212,191.1132 90.3125,190.5937 L 90.5625,190.3437 C 91.07288,189.8245 91.08049,188.9803 90.5625,188.4687 L 88.65625,186.625 C 89.49555,185.426 90,184.0067 90,182.4375 90,178.3371 86.64213,175 82.5,175 Z M 85,179 85,187 79,183 79,186 78,186 78,180 79,180 79,183 85,179 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<g transform="matrix(-1,0,0,1,164,1)" id="g11717" />
-</g>
-</g>
-</g>
-</g>
-</g>
-<g id="show-dialogs" inkscape:label="#g17353">
-<rect transform="scale(-1,1)" y="707.3622" x="-90.99706" height="16" width="15.97647" id="rect11754" style="fill:none;stroke:none" />
-<path id="rect11760" transform="translate(0,512.3622)" d="M 75,195 75,211 90.09375,211 A 0.7182403,0.7182403 0 0 1 89.78125,210.8125 L 87.1875,208.375 C 86.55604,208.7963 85.8092,209.0312 85,209.0312 82.80077,209.0312 81,207.2136 81,205 81,202.7864 82.80077,200.9687 85,200.9687 87.19923,200.9687 89,202.7864 89,205 89,205.87 88.7212,206.6824 88.25,207.3437 L 90.78125,209.7812 A 0.7182403,0.7182403 0 0 1 90.96875,210.125 L 90.96875,195 75,195 Z M 77.03125,196 89,196 89,198 77.03125,198 77.03125,196 Z M 85,202.4375 C 83.58604,202.4375 82.46875,203.5768 82.46875,205 82.46875,206.4232 83.58604,207.5625 85,207.5625 86.41396,207.5625 87.53125,206.4232 87.53125,205 87.53125,203.5768 86.41396,202.4375 85,202.4375 Z M 90.96875,210.5312 A 0.7182403,0.7182403 0 0 1 90.4375,211 L 90.96875,211 90.96875,210.5312 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="show-grid" inkscape:label="#g17424">
-<rect transform="translate(0,512.3622)" y="215" x="75" height="16" width="16" id="rect17376" style="fill:none;fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="215" x="75" height="16" width="1" id="rect17397" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="215" x="75" height="1" width="16" id="rect17399" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="215" x="90" height="16" width="1" id="rect17401" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="230" x="75" height="1" width="16" id="rect17403" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="218" x="75" height="1" width="16" id="rect17408" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="221" x="75" height="1" width="16" id="rect17410" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="224" x="75" height="1" width="16" id="rect17412" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="739.3622" x="75" height="1" width="16" id="rect17414" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="215" x="78" height="16" width="1" id="rect17416" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="215" x="81" height="16" width="1" id="rect17418" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="215" x="84" height="16" width="1" id="rect17420" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="215" x="87" height="16" width="1" id="rect17422" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="show-guides" inkscape:label="#g17464">
-<rect transform="translate(0,512.3622)" y="235" x="75" height="16" width="16" id="rect17458" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="747.3622" x="78" height="16" width="1" id="rect17460" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="247" x="75" height="1" width="16" id="rect17462" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-opacity:1" />
-</g>
-<g id="view-fullscreen" inkscape:label="#g17518">
-<rect transform="translate(0,512.3622)" y="255" x="75" height="16" width="16" id="rect17488" style="fill:none;fill-opacity:1;stroke:none" />
-<g transform="translate(-1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1" id="g17494">
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17490" width="1" height="5" x="76" y="256" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17492" width="5" height="1" x="76" y="768.3622" />
-</g>
-<g style="fill:url(#linearGradient19282);fill-opacity:1" transform="matrix(-1,0,0,1,167,-1)" id="g17498">
-<rect transform="translate(0,512.3622)" y="256" x="76" height="5" width="1" id="rect17500" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="768.3622" x="76" height="1" width="5" id="rect17502" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g style="fill:url(#linearGradient19282);fill-opacity:1" id="g17504" transform="rotate(180,83.5,775.8622)">
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17506" width="1" height="5" x="76" y="256" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17508" width="5" height="1" x="76" y="768.3622" />
-</g>
-<g style="fill:url(#linearGradient19282);fill-opacity:1" transform="matrix(1,0,0,-1,-1,1551.724)" id="g17510">
-<rect transform="translate(0,512.3622)" y="256" x="76" height="5" width="1" id="rect17512" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="768.3622" x="76" height="1" width="5" id="rect17514" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<rect y="771.3622" x="78" height="7.999998" width="10" id="rect17516" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="window-next" inkscape:label="#g17625">
-<g inkscape:label="#document_metadata" id="g17555" transform="matrix(0.9985297,0,0,1,60.04264,180)">
-<rect y="607.3622" x="14.97644" height="16" width="16" id="rect17557" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" id="path17559" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17561" width="1" height="16" x="15" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17563" width="16" height="1" x="15" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17565" width="1" height="16" x="30" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17567" width="16" height="1" x="15" y="622.3622" />
-</g>
-<g transform="translate(1,243)" id="g17584">
-<g transform="translate(0,20)" id="g17586">
-<g id="g17588" />
-<g id="g17592">
-<path inkscape:connector-curvature="0" id="path17594" d="M 79,530.3622 85,534.3622 85,531.3622 86,531.3622 C 86,533.6955 86,531.3622 86,537.3622 L 85,537.3622 85,534.3622 79,538.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-</g>
-<g id="window-previous" inkscape:label="#g17665">
-<g transform="translate(0,20)" id="g17639" inkscape:label="#g17625">
-<g inkscape:label="#document_metadata" id="g17641" transform="matrix(0.9985297,0,0,1,60.04264,180)">
-<rect y="607.3622" x="14.97644" height="16" width="16" id="rect17643" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" id="path17645" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17647" width="1" height="16" x="15" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17649" width="16" height="1" x="15" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17651" width="1" height="16" x="30" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17653" width="16" height="1" x="15" y="622.3622" />
-</g>
-<g transform="translate(1,243)" id="g17655">
-<g transform="translate(0,20)" id="g17657">
-<g id="g17659" />
-<g id="g17661">
-<path inkscape:connector-curvature="0" id="path17663" d="M 85,530.3622 79,534.3622 79,531.3622 78,531.3622 C 78,533.6955 78,531.3622 78,537.3622 L 79,537.3622 79,534.3622 85,538.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-</g>
-</g>
-<g id="window-new" inkscape:label="#g17731">
-<g transform="translate(-1.000001e-8,20)" id="g17699" inkscape:label="#g17665">
-<g transform="translate(0,20)" id="g17701" inkscape:label="#g17625">
-<g inkscape:label="#document_metadata" id="g17703" transform="matrix(0.9985297,0,0,1,60.04264,180)">
-<rect y="607.3622" x="14.97644" height="16" width="16" id="rect17705" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 17,615.3622 22.99117,615.3622 22.99117,616.3622 17,616.3622 17,615.3622 Z" id="path17707" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17709" width="1" height="10" x="15" y="613.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17711" width="8.992638" height="1" x="15" y="613.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17713" width="1" height="10" x="23.99264" y="613.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17715" width="8.992638" height="1" x="15" y="622.3622" />
-</g>
-<g transform="translate(1,243)" id="g17717">
-<g transform="translate(0,20)" id="g17719">
-<g id="g17721" />
-<g id="g17723" />
-</g>
-</g>
-</g>
-</g>
-<rect y="830.3622" x="83" height="2" width="8" id="rect17727" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="827.3622" x="86" height="7.999998" width="2" id="rect17729" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="dialog-scripts" inkscape:label="#g17777">
-<g transform="translate(30.00298,180)" id="g17748" inkscape:label="#xml_editor">
-<g inkscape:label="#document_metadata" id="g17750" transform="matrix(0.9985297,0,0,1,30.02202,59.99998)">
-<rect y="607.3622" x="14.97644" height="16" width="16" id="rect17752" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" id="path17754" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17756" width="1" height="16" x="15" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17758" width="16" height="1" x="15" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17760" width="1" height="16" x="30" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17762" width="16" height="1" x="15" y="622.3622" />
-</g>
-</g>
-<path id="rect17768" transform="translate(0,512.3622)" d="M 78,341 78,342 78,347 78,348 82,348 82,347 79,347 79,342 82,342 82,341 79,341 78,341 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 88,853.3622 88,854.3622 88,859.3622 88,860.3622 84,860.3622 84,859.3622 87,859.3622 87,854.3622 84,854.3622 84,853.3622 87,853.3622 88,853.3622 Z" id="path17775" />
-</g>
-<g id="g17847">
-<g inkscape:label="#g17834" id="dialog-messages">
-<g inkscape:label="#g17777" id="g17808" transform="translate(0,20)">
-<g inkscape:label="#xml_editor" id="g17810" transform="translate(30.00298,180)">
-<g transform="matrix(0.9985297,0,0,1,30.02202,59.99998)" id="g17812" inkscape:label="#document_metadata">
-<rect style="fill:none;stroke:none" id="rect17814" width="16" height="16" x="14.97644" y="607.3622" />
-<path inkscape:connector-curvature="0" id="path17816" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="15" height="16" width="1" id="rect17818" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="15" height="1" width="16" id="rect17820" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="30" height="16" width="1" id="rect17822" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="622.3622" x="15" height="1" width="16" id="rect17824" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17830" width="10" height="4.999998" x="78" y="873.3622" ry="1" rx="1" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 83,878.3622 86,881.3622 86,878.3622 Z" id="path17832" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-</g>
-</g>
-<g id="dialog-icon-preview" inkscape:label="#g23491">
-<g transform="translate(0.017644,20)" id="g17861">
-<g inkscape:label="#g17834" id="g17863">
-<g inkscape:label="#g17777" id="g17865" transform="translate(0,20)">
-<g inkscape:label="#xml_editor" id="g17867" transform="translate(30.00298,180)">
-<g transform="matrix(0.9985297,0,0,1,30.02202,59.99998)" id="g17869" inkscape:label="#document_metadata">
-<rect style="fill:none;stroke:none" id="rect17871" width="16" height="16" x="14.97644" y="607.3622" />
-<path inkscape:connector-curvature="0" id="path17873" d="M 17,609.3622 29,609.3622 29,611.3622 17,611.3622 17,609.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="15" height="16" width="1" id="rect17875" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="15" height="1" width="16" id="rect17877" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="30" height="16" width="1" id="rect17879" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="622.3622" x="15" height="1" width="16" id="rect17881" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-</g>
-</g>
-<path id="path23473" transform="translate(0,512.3622)" d="M 83,381 C 79.68629,381 79,383 77,384.5 79,386 79.68629,388 83,388 86.31371,388 87,386 89,384.5 87,383 86.31371,381 83,381 Z M 83,382 C 84.65685,382 86,383.1193 86,384.5 86,385.8807 84.65685,387 83,387 81.34315,387 80,385.8807 80,384.5 80,383.1193 81.34315,382 83,382 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<circle transform="matrix(1.21875,0,0,1.5,-18.125,319.3622)" id="path23477" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="83" cy="385" r="1" />
+<path style="fill:none" d="M 45,787.3622 45,803.3622 61,803.3622 61,787.3622 45,787.3622 Z" id="path56050" inkscape:connector-curvature="0" />
+<path id="path56059" transform="translate(0,512.3622)" d="M 55,280 55,282.0937 C 55.14783,282.0436 55.30201,282 55.46875,282 L 56.46875,282 C 57.32017,282 58,282.7099 58,283.5625 L 58,285 58.46875,285 C 58.74372,285 58.96875,285.2493 58.96875,285.5625 L 58.96875,285.875 58.96875,288.9687 53,288.9687 53,286 51,286 51,291 61,291 61,280 55,280 Z M 55.5,283.0312 C 55.24258,283.0312 55.03125,283.2293 55.03125,283.5625 L 55.03125,285 57,285 57,283.5625 C 57,283.2293 56.75742,283.0312 56.5,283.0312 L 55.5,283.0312 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path56048" d="M 49,797.3622 49,797.3622 54,797.3622 54,792.3622 54,792.3622 54,788.3622 45,788.3622 45,797.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="ccccccccc" />
+</g>
+<g id="zoom-original" inkscape:label="zoom_1_to_1">
+<rect y="527.3622" x="75" height="16" width="16" id="rect10213" style="fill:none" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 82.5,527.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4062 7.5,7.4062 1.47335,0 2.84092,-0.4298 4,-1.1562 l 1.96875,1.9375 c 0.51799,0.5116 1.33337,0.488 1.84375,-0.031 l 0.25,-0.25 c 0.51038,-0.5193 0.51799,-1.3634 0,-1.875 l -1.90625,-1.8438 C 89.49555,537.7882 90,536.3689 90,534.7997 c 0,-4.1004 -3.35787,-7.4375 -7.5,-7.4375 z m -4.5,4 1.5,0 0.5,0 0,0.5 0,6.5 -1,0 0,-6 -1,0 0,-1 z m 6,0 1.5,0 0.5,0 0,0.5 0,6.5 -1,0 0,-6 -1,0 0,-1 z m -2,3 1,0 0,1 -1,0 0,-1 z m 0,3 1,0 0,1 -1,0 0,-1 z" id="path11337" />
+</g>
+<g id="zoom-half-size" inkscape:label="#zoom_half_size">
+<rect y="547.3622" x="75" height="16" width="16" id="rect11378" style="fill:none" />
+<path id="path11382" d="m 82.5,547.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4063 7.5,7.4063 1.47335,0 2.84092,-0.4298 4,-1.1563 l 1.96875,1.9375 c 0.51799,0.5116 1.33337,0.488 1.84375,-0.031 l 0.25,-0.25 c 0.51038,-0.5192 0.51799,-1.3634 0,-1.875 l -1.90625,-1.8438 C 89.49555,557.7882 90,556.3689 90,554.7997 c 0,-4.1004 -3.35787,-7.4375 -7.5,-7.4375 z m -4.5,4 1.5,0 0.5,0 0,0.5 0,6.5 -1,0 0,-6 -1,0 0,-1 z m 6,0 3,0 0,4 -2,0 0,2 2,0 0,1 -1.5,0 -1.5,0 0,-4 2,0 0,-2 -2,0 0,-1 z m -3,3 1,0 0,1 -1,0 0,-1 z m 0,3 1,0 0,1 -1,0 0,-1 z" inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="zoom-double-size" transform="translate(-21,20)">
+<rect y="547.3622" x="96" height="16" width="16" id="rect11416" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 103.5,547.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4063 7.5,7.4063 1.4733,0 2.8409,-0.4298 4,-1.1563 l 1.9688,1.9375 c 0.5179,0.5116 1.3333,0.488 1.8437,-0.031 l 0.25,-0.25 c 0.5104,-0.5192 0.518,-1.3634 0,-1.875 l -1.9062,-1.8438 c 0.8392,-1.199 1.3437,-2.6183 1.3437,-4.1875 0,-4.1004 -3.3579,-7.4375 -7.5,-7.4375 z m 2.5,4 1.5,0 0.5,0 0,0.5 0,6.5 -1,0 0,-6 -1,0 z m -7,0 3,0 0,4 -2,0 0,2 2,0 0,1 -1.5,0 -1.5,0 0,-4 2,0 0,-2 -2,0 z m 5,3 1,0 0,1 -1,0 z m 0,3 1,0 0,1 -1,0 z" id="path11420" inkscape:connector-curvature="0" sodipodi:nodetypes="sssccccccssccccccccccccccccccccccccccccccccc" />
+</g>
+<g id="zoom-fit-selection" inkscape:label="#zoom_select">
+<rect style="fill:none" id="rect11438" width="16" height="16" x="75" y="587.3622" />
+<path style="fill:url(#linearGradient19282)" d="m 82.5,587.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4063 7.5,7.4063 1.47335,0 2.84092,-0.4298 4,-1.1563 l 1.96875,1.9375 c 0.51799,0.5116 1.33337,0.488 1.84375,-0.031 l 0.25,-0.25 c 0.51038,-0.5192 0.51799,-1.3634 0,-1.875 l -1.90625,-1.8438 C 89.49555,597.7882 90,596.3689 90,594.7997 c 0,-4.1004 -3.35787,-7.4375 -7.5,-7.4375 z m -4.5,3 1,0 0,1 -1,0 0,-1 z m 2,0 1,0 0,1 -1,0 0,-1 z m 2,0 1,0 0,1 -1,0 0,-1 z m 2,0 1,0 0,1 -1,0 0,-1 z m 2,0 1,0 0,1 -1,0 0,-1 z m -8,2 1,0 0,1 -1,0 0,-1 z m 8,0 1,0 0,1 -1,0 0,-1 z m -8,2 1,0 0,1 -1,0 0,-1 z m 8,0 1,0 0,1 -1,0 0,-1 z m -8,2 1,0 0,1 -1,0 0,-1 z m 8,0 1,0 0,1 -1,0 0,-1 z m -8,2 1,0 0,1 -1,0 0,-1 z m 2,0 1,0 0,1 -1,0 0,-1 z m 2,0 1,0 0,1 -1,0 0,-1 z m 2,0 1,0 0,1 -1,0 0,-1 z m 2,0 1,0 0,1 -1,0 0,-1 z" id="path11442" inkscape:connector-curvature="0" />
+</g>
+<g id="zoom-fit-drawing" inkscape:label="#zoom_draw">
+<rect y="607.3622" x="75" height="16" width="16" id="rect11500" style="fill:none" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 82.5,607.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4063 7.5,7.4063 1.47335,0 2.84092,-0.4298 4,-1.1563 l 1.96875,1.9375 c 0.51799,0.5116 1.33337,0.488 1.84375,-0.031 l 0.25,-0.25 c 0.51038,-0.5193 0.51799,-1.3634 0,-1.875 l -1.90625,-1.844 C 89.49555,617.7882 90,616.3689 90,614.7997 c 0,-4.1004 -3.35787,-7.4375 -7.5,-7.4375 z m -4.5,3 9,0 0,9 -9,0 0,-9 z m 1,1 0,7 7,0 0,-7 -7,0 z m 1,1 5,0 0,5 -5,0 0,-5 z" id="path11504" />
+</g>
+<g transform="translate(-21,80)" id="zoom-fit-page" inkscape:label="#zoom_page">
+<rect style="fill:none" id="rect11581" width="16" height="16" x="96" y="547.3622" />
+<path sodipodi:nodetypes="sssccccccssccccccccccccc" inkscape:connector-curvature="0" id="path11585" d="m 103.5,547.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4062 7.5,7.4062 1.4733,0 2.8409,-0.4297 4,-1.1562 l 1.9688,1.9375 c 0.5179,0.5116 1.3333,0.4881 1.8437,-0.031 l 0.25,-0.25 c 0.5104,-0.5192 0.518,-1.3634 0,-1.875 l -1.9062,-1.844 c 0.8392,-1.199 1.3437,-2.6183 1.3437,-4.1875 0,-4.1004 -3.3579,-7.4375 -7.5,-7.4375 z m -3.5,2 7,0 0,11 -7,0 z m 1,1 0,9 5,0 0,-2 0,-5 0,-2 -1,0 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="zoom-fit-width" transform="translate(-21,100)" inkscape:label="#zoom_pagewidth">
+<rect y="547.3622" x="96" height="16" width="16" id="rect11639" style="fill:none" />
+<path sodipodi:nodetypes="sssccccccssccccccccccc" inkscape:connector-curvature="0" id="path11643" d="m 103.5,547.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4062 7.5,7.4062 1.4733,0 2.8409,-0.4297 4,-1.1562 l 1.9688,1.9375 c 0.5179,0.5116 1.3333,0.4881 1.8437,-0.031 l 0.25,-0.25 c 0.5104,-0.5192 0.518,-1.3634 0,-1.875 l -1.9062,-1.844 c 0.8392,-1.199 1.3437,-2.6183 1.3437,-4.1875 0,-4.1004 -3.3579,-7.4375 -7.5,-7.4375 z m -2.5,4 0,2 5,0 0,-2 3,3 -3,3 0,-2 -5,0 0,2 -3,-3 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="zoom-next" inkscape:label="#zoom_next">
+<rect style="fill:none" id="rect11673" width="16" height="16" x="75" y="667.3622" />
+<path style="fill:url(#linearGradient19282)" d="m 82.5,667.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4062 7.5,7.4062 1.47335,0 2.84092,-0.4297 4,-1.1562 l 1.96875,1.9375 c 0.51799,0.5116 1.33337,0.4882 1.84375,-0.031 l 0.25,-0.25 c 0.51038,-0.5192 0.51799,-1.3634 0,-1.875 l -1.90625,-1.844 C 89.49555,677.7882 90,676.3689 90,674.7997 c 0,-4.1004 -3.35787,-7.4375 -7.5,-7.4375 z m -3.5,3 6,4 0,-3 1,0 c 0,2.3333 0,0 0,6 l -1,0 0,-3 -6,4 z" id="path11677" inkscape:connector-curvature="0" sodipodi:nodetypes="sssccccccssccccccccc" />
+</g>
+<g id="zoom-previous" inkscape:label="#zoom_previous">
+<rect y="687.3622" x="75" height="16" width="16" id="rect11707" style="fill:none" />
+<path id="path11715" d="m 82.5,687.3622 c -4.14213,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.35787,7.4062 7.5,7.4062 1.47335,0 2.84092,-0.4297 4,-1.1562 l 1.96875,1.9375 c 0.51799,0.5116 1.33337,0.4882 1.84375,-0.031 l 0.25,-0.25 c 0.51038,-0.5192 0.51799,-1.3634 0,-1.875 l -1.90625,-1.844 C 89.49555,697.7882 90,696.3689 90,694.7997 c 0,-4.1004 -3.35787,-7.4375 -7.5,-7.4375 z m 2.5,4 0,8 -6,-4 0,3 -1,0 0,-6 1,0 0,3 6,-4 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="show-dialogs" inkscape:label="#dialog_toggle">
+<rect transform="scale(-1,1)" y="707.3622" x="-90.99706" height="16" width="15.97647" id="rect11754" style="fill:none" />
+<path id="rect11760" transform="translate(0,512.3622)" d="m 75,195 0,16 15.09375,0 a 0.7182403,0.7182403 0 0 1 -0.3125,-0.1875 L 87.1875,208.375 c -0.63146,0.4213 -1.3783,0.6562 -2.1875,0.6562 -2.19923,0 -4,-1.8176 -4,-4.0312 0,-2.2136 1.80077,-4.0313 4,-4.0313 2.19923,0 4,1.8177 4,4.0313 0,0.87 -0.2788,1.6824 -0.75,2.3437 l 2.53125,2.4375 a 0.7182403,0.7182403 0 0 1 0.1875,0.3438 l 0,-15.125 L 75,195 Z m 2.03125,1 11.96875,0 0,2 -11.96875,0 0,-2 z M 85,202.4375 c -1.41396,0 -2.53125,1.1393 -2.53125,2.5625 0,1.4232 1.11729,2.5625 2.53125,2.5625 1.41396,0 2.53125,-1.1393 2.53125,-2.5625 0,-1.4232 -1.11729,-2.5625 -2.53125,-2.5625 z m 5.96875,8.0937 A 0.7182403,0.7182403 0 0 1 90.4375,211 l 0.53125,0 0,-0.4688 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="show-grid" inkscape:label="#grid">
+<rect transform="translate(0,512.3622)" y="215" x="75" height="16" width="16" id="rect17376" style="fill:none" />
+<rect transform="translate(0,512.3622)" y="215" x="75" height="16" width="1" id="rect17397" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="215" x="75" height="1" width="16" id="rect17399" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="215" x="90" height="16" width="1" id="rect17401" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="230" x="75" height="1" width="16" id="rect17403" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="218" x="75" height="1" width="16" id="rect17408" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="221" x="75" height="1" width="16" id="rect17410" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="224" x="75" height="1" width="16" id="rect17412" style="fill:url(#linearGradient19282)" />
+<rect y="739.3622" x="75" height="1" width="16" id="rect17414" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="215" x="78" height="16" width="1" id="rect17416" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="215" x="81" height="16" width="1" id="rect17418" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="215" x="84" height="16" width="1" id="rect17420" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="215" x="87" height="16" width="1" id="rect17422" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="show-guides" inkscape:label="#guides">
+<rect transform="translate(0,512.3622)" y="235" x="75" height="16" width="16" id="rect17458" style="fill:none" />
+<rect y="747.3622" x="78" height="16" width="1" id="rect17460" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="247" x="75" height="1" width="16" id="rect17462" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="view-fullscreen" inkscape:label="#fullscreen">
+<rect transform="translate(0,512.3622)" y="255" x="75" height="16" width="16" id="rect17488" style="fill:none" />
+<g transform="translate(-1,-1)" style="fill:url(#linearGradient19282)" id="g17494">
+<rect id="rect17490" width="1" height="5" x="76" y="256" transform="translate(0,512.3622)" />
+<rect id="rect17492" width="5" height="1" x="76" y="768.3622" />
+</g>
+<g style="fill:url(#linearGradient19282)" transform="matrix(-1,0,0,1,167,-1)" id="g17498">
+<rect transform="translate(0,512.3622)" y="256" x="76" height="5" width="1" id="rect17500" />
+<rect y="768.3622" x="76" height="1" width="5" id="rect17502" />
+</g>
+<g style="fill:url(#linearGradient19282)" id="g17504" transform="rotate(180,83.5,775.8622)">
+<rect id="rect17506" width="1" height="5" x="76" y="256" transform="translate(0,512.3622)" />
+<rect id="rect17508" width="5" height="1" x="76" y="768.3622" />
+</g>
+<g style="fill:url(#linearGradient19282)" transform="matrix(1,0,0,-1,-1,1551.724)" id="g17510">
+<rect transform="translate(0,512.3622)" y="256" x="76" height="5" width="1" id="rect17512" />
+<rect y="768.3622" x="76" height="1" width="5" id="rect17514" />
+</g>
+<rect y="771.3622" x="78" height="7.999998" width="10" id="rect17516" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="window-next" inkscape:label="#window_next">
+<g id="g17555" transform="matrix(0.9985297,0,0,1,60.04264,180)">
+<rect y="607.3622" x="14.97644" height="16" width="16" id="rect17557" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 17,609.3622 12,0 0,2 -12,0 0,-2 z" id="path17559" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect17561" width="1" height="16" x="15" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17563" width="16" height="1" x="15" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17565" width="1" height="16" x="30" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17567" width="16" height="1" x="15" y="622.3622" />
+</g>
+<path style="fill:url(#linearGradient19282)" d="m 80,793.3622 6,4 0,-3 1,0 c 0,2.3333 0,0 0,6 l -1,0 0,-3 -6,4 z" id="path17594" inkscape:connector-curvature="0" />
+</g>
+<g id="window-previous" inkscape:label="#window_previous">
+<g transform="matrix(0.9985297,0,0,1,60.04264,200)" id="g17641">
+<rect style="fill:none" id="rect17643" width="16" height="16" x="14.97644" y="607.3622" />
+<path inkscape:connector-curvature="0" id="path17645" d="m 17,609.3622 12,0 0,2 -12,0 0,-2 z" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="16" width="1" id="rect17647" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="1" width="16" id="rect17649" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="30" height="16" width="1" id="rect17651" style="fill:url(#linearGradient19282)" />
+<rect y="622.3622" x="15" height="1" width="16" id="rect17653" style="fill:url(#linearGradient19282)" />
+</g>
+<path inkscape:connector-curvature="0" id="path17663" d="m 86,813.3622 -6,4 0,-3 -1,0 c 0,2.3333 0,0 0,6 l 1,0 0,-3 6,4 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="window-new" inkscape:label="#view_new">
+<g id="g17703" transform="matrix(0.9985297,0,0,1,60.04264,220)">
+<rect y="607.3622" x="14.97644" height="16" width="16" id="rect17705" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 17,615.3622 5.99117,0 0,1 -5.99117,0 0,-1 z" id="path17707" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect17709" width="1" height="10" x="15" y="613.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17711" width="8.992638" height="1" x="15" y="613.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17713" width="1" height="10" x="23.99264" y="613.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17715" width="8.992638" height="1" x="15" y="622.3622" />
+</g>
+<rect y="830.3622" x="83" height="2" width="8" id="rect17727" style="fill:url(#linearGradient19282)" />
+<rect y="827.3622" x="86" height="7.999998" width="2" id="rect17729" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="dialog-scripts" inkscape:label="#scripts">
+<g transform="matrix(0.9985297,0,0,1,60.025,240)" id="g17750">
+<rect style="fill:none" id="rect17752" width="16" height="16" x="14.97644" y="607.3622" />
+<path inkscape:connector-curvature="0" id="path17754" d="m 17,609.3622 12,0 0,2 -12,0 0,-2 z" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="16" width="1" id="rect17756" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="1" width="16" id="rect17758" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="30" height="16" width="1" id="rect17760" style="fill:url(#linearGradient19282)" />
+<rect y="622.3622" x="15" height="1" width="16" id="rect17762" style="fill:url(#linearGradient19282)" />
+</g>
+<path id="rect17768" transform="translate(0,512.3622)" d="m 78,341 0,1 0,5 0,1 4,0 0,-1 -3,0 0,-5 3,0 0,-1 -3,0 -1,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 88,853.3622 0,1 0,5 0,1 -4,0 0,-1 3,0 0,-5 -3,0 0,-1 3,0 1,0 z" id="path17775" />
+</g>
+<g id="dialog-messages" inkscape:label="#messages">
+<g id="g17812" transform="matrix(0.9985297,0,0,1,60.025,260)">
+<rect y="607.3622" x="14.97644" height="16" width="16" id="rect17814" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 17,609.3622 12,0 0,2 -12,0 0,-2 z" id="path17816" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect17818" width="1" height="16" x="15" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17820" width="16" height="1" x="15" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17822" width="1" height="16" x="30" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17824" width="16" height="1" x="15" y="622.3622" />
+</g>
+<rect rx="1" ry="1" y="873.3622" x="78" height="4.999998" width="10" id="rect17830" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path17832" d="m 83,878.3622 3,3 0,-3 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="dialog-icon-preview" inkscape:label="#view_icon_preview">
+<g transform="matrix(0.9985297,0,0,1,60.04264,280)" id="g17869">
+<rect style="fill:none" id="rect17871" width="16" height="16" x="14.97644" y="607.3622" />
+<path inkscape:connector-curvature="0" id="path17873" d="m 17,609.3622 12,0 0,2 -12,0 0,-2 z" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="16" width="1" id="rect17875" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="15" height="1" width="16" id="rect17877" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="30" height="16" width="1" id="rect17879" style="fill:url(#linearGradient19282)" />
+<rect y="622.3622" x="15" height="1" width="16" id="rect17881" style="fill:url(#linearGradient19282)" />
+</g>
+<path id="path23473" transform="translate(0,512.3622)" d="m 83,381 c -3.31371,0 -4,2 -6,3.5 2,1.5 2.68629,3.5 6,3.5 3.31371,0 4,-2 6,-3.5 C 87,383 86.31371,381 83,381 Z m 0,1 c 1.65685,0 3,1.1193 3,2.5 0,1.3807 -1.34315,2.5 -3,2.5 -1.65685,0 -3,-1.1193 -3,-2.5 0,-1.3807 1.34315,-2.5 3,-2.5 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<circle transform="matrix(1.21875,0,0,1.5,-18.125,319.3622)" id="path23477" style="fill:url(#linearGradient19282)" cx="83" cy="385" r="1" />
</g>
<g id="layer-new" inkscape:label="#new_layer">
-<rect ry="1" rx="0" transform="translate(0,512.3622)" y="15" x="105" height="16" width="16" id="rect10817" style="fill:none;fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 106,541.3622 109,538.3622 120,538.3622 117,541.3622 Z" id="path11591" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<rect ry="0" y="528.3622" x="114" height="7.999998" width="2" id="rect11686" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="531.3622" x="111" height="2" width="8" id="rect11688" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect ry="1" rx="0" transform="translate(0,512.3622)" y="15" x="105" height="16" width="16" id="rect10817" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="M 106,541.3622 109,538.3622 120,538.3622 117,541.3622 Z" id="path11591" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<rect ry="0" y="528.3622" x="114" height="7.999998" width="2" id="rect11686" style="fill:url(#linearGradient19282)" />
+<rect y="531.3622" x="111" height="2" width="8" id="rect11688" style="fill:url(#linearGradient19282)" />
</g>
<g id="layer-rename" inkscape:label="#rename-layer">
-<rect style="fill:none;stroke:none" id="rect11721" width="16" height="16" x="105" y="547.3622" rx="0" ry="1" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path11723" d="M 106,561.3622 109,558.3622 120,558.3622 117,561.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect11733" d="M 107,548.3622 108,548.3622 108.5,548.9872 109,548.3622 110,548.3622 110,549.3622 107,549.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="549.3622" x="108" height="5.999998" width="1" id="rect11735" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 107,556.3622 108,556.3622 108.5,555.7372 109,556.3622 110,556.3622 110,555.3622 107,555.3622 Z" id="path11759" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
-<path id="path19245" transform="translate(0,512.3622)" d="M 116,37 C 116,42.11459 116.0007,39.60737 116.0313,42.5625 L 116.0313,43 116.5,43 118.7813,43 C 120.4621,43.0687 120.3864,38.87489 118.75,39 118.7384,39.00088 118.7305,38.999 118.7188,39 L 117,39 117,37 116,37 Z M 117,40 118.8125,40 118.8438,40 118.875,40 C 119.2428,39.9618 119.3096,42.0178 118.875,42 L 118.8438,42 117,42 C 116.994,41.52444 117.004,40.14697 117,40 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccccccccccccccccccc" inkscape:connector-curvature="0" id="path19243" d="M 111.9932,550.3934 111.9932,551.4247 C 112.5052,551.4249 112.9491,551.4247 113.404,551.4246 114.2117,551.4336 114.0217,552.305 113.9998,552.3622 L 111.9998,552.3622 111.9998,552.3622 C 110.4793,552.4328 110.3748,555.3622 111.9998,555.3622 L 114.53,555.3935 114.9685,555.3935 114.9685,554.956 114.9998,551.7997 C 114.9998,551.4293 114.8975,551.0837 114.6866,550.831 114.4758,550.5782 114.1563,550.4256 113.8409,550.3935 L 113.8096,550.3935 111.993,550.3935 Z M 112.1811,553.3622 112.2124,553.3622 112.2437,553.3622 114,553.3622 114,554.3622 112.152,554.3622 112.1207,554.3622 C 111.7454,554.3495 111.7787,553.3219 112.1811,553.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect11721" width="16" height="16" x="105" y="547.3622" rx="0" ry="1" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path11723" d="M 106,561.3622 109,558.3622 120,558.3622 117,561.3622 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect11733" d="M 107,548.3622 108,548.3622 108.5,548.9872 109,548.3622 110,548.3622 110,549.3622 107,549.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect y="549.3622" x="108" height="5.999998" width="1" id="rect11735" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 107,556.3622 108,556.3622 108.5,555.7372 109,556.3622 110,556.3622 110,555.3622 107,555.3622 Z" id="path11759" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
+<path id="path19245" transform="translate(0,512.3622)" d="M 116,37 C 116,42.11459 116.0007,39.60737 116.0313,42.5625 L 116.0313,43 116.5,43 118.7813,43 C 120.4621,43.0687 120.3864,38.87489 118.75,39 118.7384,39.00088 118.7305,38.999 118.7188,39 L 117,39 117,37 116,37 Z M 117,40 118.8125,40 118.8438,40 118.875,40 C 119.2428,39.9618 119.3096,42.0178 118.875,42 L 118.8438,42 117,42 C 116.994,41.52444 117.004,40.14697 117,40 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccccccccccccccccccc" inkscape:connector-curvature="0" id="path19243" d="M 111.9932,550.3934 111.9932,551.4247 C 112.5052,551.4249 112.9491,551.4247 113.404,551.4246 114.2117,551.4336 114.0217,552.305 113.9998,552.3622 L 111.9998,552.3622 111.9998,552.3622 C 110.4793,552.4328 110.3748,555.3622 111.9998,555.3622 L 114.53,555.3935 114.9685,555.3935 114.9685,554.956 114.9998,551.7997 C 114.9998,551.4293 114.8975,551.0837 114.6866,550.831 114.4758,550.5782 114.1563,550.4256 113.8409,550.3935 L 113.8096,550.3935 111.993,550.3935 Z M 112.1811,553.3622 112.2124,553.3622 112.2437,553.3622 114,553.3622 114,554.3622 112.152,554.3622 112.1207,554.3622 C 111.7454,554.3495 111.7787,553.3219 112.1811,553.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="layer-previous" inkscape:label="#switch_to_layer_above">
-<rect style="fill:none;stroke:none" id="rect19281" width="16" height="16" x="105" y="567.3622" rx="0" ry="1" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19283" d="M 106,582.3622 109,579.3622 120,579.3622 117,582.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 106,571.3622 109,568.3622 120,568.3622 117,571.3622 Z" id="path19293" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" id="path19301" d="M 110,578.3505 112,578.3505 112,575.3622 114,575.3622 111,572.3738 108,575.3622 110,575.3622 110,578.3505 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect19281" width="16" height="16" x="105" y="567.3622" rx="0" ry="1" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19283" d="M 106,582.3622 109,579.3622 120,579.3622 117,582.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 106,571.3622 109,568.3622 120,568.3622 117,571.3622 Z" id="path19293" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" id="path19301" d="M 110,578.3505 112,578.3505 112,575.3622 114,575.3622 111,572.3738 108,575.3622 110,575.3622 110,578.3505 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="layer-next" inkscape:label="#switch_to_layer_below">
-<rect transform="scale(1,-1)" ry="1" rx="0" y="-603.3622" x="105" height="16" width="16" id="rect19340" style="fill:none;stroke:none" />
-<path style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 120,588.3622 117,591.3622 106,591.3622 109,588.3622 Z" id="path19342" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19344" d="M 120,599.3622 117,602.3622 106,602.3622 109,599.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 110,592.3739 112,592.3739 112,595.3622 114,595.3622 111,598.3506 108,595.3622 110,595.3622 110,592.3739 Z" id="path19346" inkscape:connector-curvature="0" />
+<rect transform="scale(1,-1)" ry="1" rx="0" y="-603.3622" x="105" height="16" width="16" id="rect19340" style="fill:none" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="M 120,588.3622 117,591.3622 106,591.3622 109,588.3622 Z" id="path19342" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19344" d="M 120,599.3622 117,602.3622 106,602.3622 109,599.3622 Z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 110,592.3739 112,592.3739 112,595.3622 114,595.3622 111,598.3506 108,595.3622 110,595.3622 110,592.3739 Z" id="path19346" inkscape:connector-curvature="0" />
</g>
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19405" width="0" height="1" x="118" y="617.3622" ry="0" />
<g id="selection-move-to-layer-above" inkscape:label="#move_selection_above">
-<g id="g19458">
-<g id="g19435">
-<rect ry="1" rx="0" y="607.3622" x="105" height="16" width="16" id="rect19379" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19383" d="M 107,611.3622 109,608.3622 119,608.3622 117,611.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 112,617.3622 114,617.3622 114,615.3622 116,615.3622 113,612.3738 110,615.3622 112,615.3622 Z" id="path19385" inkscape:connector-curvature="0" />
-<rect ry="0" y="616.3622" x="105" height="1" width="1" id="rect19391" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19393" width="1" height="1" x="107" y="616.3622" ry="0" />
-<rect ry="0" y="616.3622" x="109" height="1" width="1" id="rect19395" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 107,621.3622 C 107,621.3622 107,621.3622 109,618.3622 L 118,618.3622 116,621.3622 Z" id="path19403" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<rect ry="0" y="616.3622" x="117" height="1" width="1" id="rect19407" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19409" width="1" height="1" x="119" y="616.3622" ry="0" />
-<rect ry="0" y="622.3622" x="105" height="1" width="1" id="rect19411" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19413" width="1" height="1" x="107" y="622.3622" ry="0" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19415" width="1" height="1.000003" x="105" y="618.3622" ry="0" />
-<rect ry="0" y="620.3622" x="105" height="1.000003" width="1" id="rect19417" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0" y="622.3622" x="109" height="1" width="1" id="rect19419" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19421" width="1" height="1.000003" x="111" y="622.3622" ry="0" />
-<rect ry="0" y="622.3622" x="113" height="1.000003" width="1" id="rect19423" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19425" width="1" height="1.000003" x="115" y="622.3622" ry="0" />
-<rect ry="0" y="622.3622" x="117" height="1.000003" width="1" id="rect19427" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19429" width="1" height="1.000003" x="119" y="622.3622" ry="0" />
-<rect ry="0" y="620.3622" x="119" height="1.000003" width="1" id="rect19431" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19433" width="1" height="1.000003" x="119" y="618.3622" ry="0" />
-</g>
-</g>
+<rect y="607.3622" x="105" height="16" width="16" id="rect19379" style="fill:none" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19383" d="m 107,611.3622 2,-3 10,0 -2,3 z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="m 112,617.3622 2,0 0,-2 2,0 -3,-2.9884 -3,2.9884 2,0 z" id="path19385" inkscape:connector-curvature="0" />
+<rect ry="0" y="616.3622" x="105" height="1" width="1" id="rect19391" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19393" width="1" height="1" x="107" y="616.3622" ry="0" />
+<rect ry="0" y="616.3622" x="109" height="1" width="1" id="rect19395" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 107,621.3622 c 0,0 0,0 2,-3 l 9,0 -2,3 z" id="path19403" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<rect ry="0" y="616.3622" x="117" height="1" width="1" id="rect19407" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19409" width="1" height="1" x="119" y="616.3622" ry="0" />
+<rect ry="0" y="622.3622" x="105" height="1" width="1" id="rect19411" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19413" width="1" height="1" x="107" y="622.3622" ry="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect19415" width="1" height="1.000003" x="105" y="618.3622" ry="0" />
+<rect ry="0" y="620.3622" x="105" height="1.000003" width="1" id="rect19417" style="fill:url(#linearGradient19282)" />
+<rect ry="0" y="622.3622" x="109" height="1" width="1" id="rect19419" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19421" width="1" height="1.000003" x="111" y="622.3622" ry="0" />
+<rect ry="0" y="622.3622" x="113" height="1.000003" width="1" id="rect19423" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19425" width="1" height="1.000003" x="115" y="622.3622" ry="0" />
+<rect ry="0" y="622.3622" x="117" height="1.000003" width="1" id="rect19427" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19429" width="1" height="1.000003" x="119" y="622.3622" ry="0" />
+<rect ry="0" y="620.3622" x="119" height="1.000003" width="1" id="rect19431" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19433" width="1" height="1.000003" x="119" y="618.3622" ry="0" />
</g>
<g id="selection-move-to-layer-below" inkscape:label="#selection_move_below">
-<rect style="fill:none;stroke:none" id="rect19532" width="16" height="16" x="105" y="627.3505" rx="0" ry="1" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 107,643.3622 109,640.3622 119,640.3622 117,643.3622 Z" id="path19534" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" id="path19536" d="M 112,634.3622 114,634.3622 114,636.3622 116,636.3622 113,639.3505 110,636.3622 112,636.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19538" width="1" height="1" x="105" y="-635.3505" ry="0" />
-<rect transform="scale(1,-1)" ry="0" y="-635.3505" x="107" height="1" width="1" id="rect19540" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19542" width="1" height="1" x="109" y="-635.3505" ry="0" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19544" d="M 107,633.3622 C 107,633.3622 107,633.3622 109,630.3622 L 118,630.3622 116,633.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19546" width="1" height="1" x="117" y="-635.3505" ry="0" />
-<rect transform="scale(1,-1)" ry="0" y="-635.3505" x="119" height="1" width="1" id="rect19548" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19550" width="1" height="1" x="105" y="-629.3505" ry="0" />
-<rect transform="scale(1,-1)" ry="0" y="-629.3505" x="107" height="1" width="1" id="rect19552" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" ry="0" y="-633.3505" x="105" height="1.000003" width="1" id="rect19554" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19556" width="1" height="1.000003" x="105" y="-631.3505" ry="0" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19558" width="1" height="1" x="109" y="-629.3505" ry="0" />
-<rect transform="scale(1,-1)" ry="0" y="-629.3505" x="111" height="1.000003" width="1" id="rect19560" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19562" width="1" height="1.000003" x="113" y="-629.3505" ry="0" />
-<rect transform="scale(1,-1)" ry="0" y="-629.3505" x="115" height="1.000003" width="1" id="rect19564" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19566" width="1" height="1.000003" x="117" y="-629.3505" ry="0" />
-<rect transform="scale(1,-1)" ry="0" y="-629.3505" x="119" height="1.000003" width="1" id="rect19568" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19570" width="1" height="1.000003" x="119" y="-631.3505" ry="0" />
-<rect transform="scale(1,-1)" ry="0" y="-633.3505" x="119" height="1.000003" width="1" id="rect19572" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect19532" width="16" height="16" x="105" y="627.3505" rx="0" ry="1" />
+<path style="fill:url(#linearGradient19282)" d="M 107,643.3622 109,640.3622 119,640.3622 117,643.3622 Z" id="path19534" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" id="path19536" d="M 112,634.3622 114,634.3622 114,636.3622 116,636.3622 113,639.3505 110,636.3622 112,636.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19538" width="1" height="1" x="105" y="-635.3505" ry="0" />
+<rect transform="scale(1,-1)" ry="0" y="-635.3505" x="107" height="1" width="1" id="rect19540" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19542" width="1" height="1" x="109" y="-635.3505" ry="0" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19544" d="M 107,633.3622 C 107,633.3622 107,633.3622 109,630.3622 L 118,630.3622 116,633.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19546" width="1" height="1" x="117" y="-635.3505" ry="0" />
+<rect transform="scale(1,-1)" ry="0" y="-635.3505" x="119" height="1" width="1" id="rect19548" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19550" width="1" height="1" x="105" y="-629.3505" ry="0" />
+<rect transform="scale(1,-1)" ry="0" y="-629.3505" x="107" height="1" width="1" id="rect19552" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" ry="0" y="-633.3505" x="105" height="1.000003" width="1" id="rect19554" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19556" width="1" height="1.000003" x="105" y="-631.3505" ry="0" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19558" width="1" height="1" x="109" y="-629.3505" ry="0" />
+<rect transform="scale(1,-1)" ry="0" y="-629.3505" x="111" height="1.000003" width="1" id="rect19560" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19562" width="1" height="1.000003" x="113" y="-629.3505" ry="0" />
+<rect transform="scale(1,-1)" ry="0" y="-629.3505" x="115" height="1.000003" width="1" id="rect19564" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19566" width="1" height="1.000003" x="117" y="-629.3505" ry="0" />
+<rect transform="scale(1,-1)" ry="0" y="-629.3505" x="119" height="1.000003" width="1" id="rect19568" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect19570" width="1" height="1.000003" x="119" y="-631.3505" ry="0" />
+<rect transform="scale(1,-1)" ry="0" y="-633.3505" x="119" height="1.000003" width="1" id="rect19572" style="fill:url(#linearGradient19282)" />
</g>
<g id="layer-raise" inkscape:label="#raise_layer">
-<rect ry="1" rx="0" y="647.3738" x="105" height="16" width="16" id="rect19684" style="fill:none;stroke:none" />
-<path id="path19686" transform="translate(0,512.3622)" d="M 109,144 108,145 106,147 117,147 120,144 115,144 115,146 111,146 111,144 109,144 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19688" d="M 106,650.3739 109,647.3739 120,647.3739 117,650.3739 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 112,657.3622 114,657.3622 114,654.3738 116,654.3738 113,651.3855 110,654.3738 112,654.3738 Z" id="path19690" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19696" d="M 106,663.3739 109,660.3622 120,660.3622 117,663.3739 Z" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="layer-lower" inkscape:label="#g19714">
-<rect transform="scale(1,-1)" style="fill:none;stroke:none" id="rect19704" width="16" height="16" x="105" y="-683.3738" rx="0" ry="1" />
-<path inkscape:connector-curvature="0" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 117,674.3855 118,673.3855 120,671.3855 109,671.3855 106,674.3855 111,674.3855 111,672.3855 115,672.3855 115,674.3855 117,674.3855 Z" id="path19706" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 120,680.3738 117,683.3738 106,683.3738 109,680.3738 Z" id="path19708" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" id="path19710" d="M 112,673.3855 114,673.3855 114,676.3739 116,676.3739 113,679.3622 110,676.3739 112,676.3739 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 120,667.3622 117,670.3739 106,670.3739 109,667.3622 Z" id="path19712" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<rect ry="1" rx="0" y="647.3738" x="105" height="16" width="16" id="rect19684" style="fill:none" />
+<path id="path19686" transform="translate(0,512.3622)" d="M 109,144 108,145 106,147 117,147 120,144 115,144 115,146 111,146 111,144 109,144 Z" style="opacity:0.3;fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19688" d="M 106,650.3739 109,647.3739 120,647.3739 117,650.3739 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="M 112,657.3622 114,657.3622 114,654.3738 116,654.3738 113,651.3855 110,654.3738 112,654.3738 Z" id="path19690" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19696" d="M 106,663.3739 109,660.3622 120,660.3622 117,663.3739 Z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="layer-lower">
+<rect transform="scale(1,-1)" style="fill:none" id="rect19704" width="16" height="16" x="105" y="-683.3738" rx="0" ry="1" />
+<path inkscape:connector-curvature="0" style="opacity:0.3;fill:url(#linearGradient19282)" d="m 117,674.3855 1,-1 2,-2 -11,0 -3,3 5,0 0,-2 4,0 0,2 2,0 z" id="path19706" />
+<path style="fill:url(#linearGradient19282)" d="m 120,680.3738 -3,3 -11,0 3,-3 z" id="path19708" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" id="path19710" d="m 112,673.3855 2,0 0,2.9884 2,0 -3,2.9883 -3,-2.9883 2,0 z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<path style="fill:url(#linearGradient19282)" d="m 120,667.3622 -3,3.0117 -11,0 3,-3.0117 z" id="path19712" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
</g>
<g id="layer-top" inkscape:label="#layer-to-top">
-<rect style="fill:none;stroke:none" id="rect19770" width="16" height="16" x="105" y="687.3622" rx="0" ry="1" />
-<path id="path19772" transform="translate(0,512.3622)" d="M 109,184 108,185 106,187 111,187 111,186 111,185 111,184 109,184 Z M 115,184 115,185 115,186 115,187 117,187 120,184 115,184 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 106,690.3622 109,687.3622 120,687.3622 117,690.3622 Z" id="path19774" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" id="path19776" d="M 112,701.3622 114,701.3622 114,694.3622 116,694.3622 113,691.3739 110,694.3622 112,694.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19778" transform="translate(0,512.3622)" d="M 109,188 106,191 117,191 120,188 115,188 115,190 111,190 111,188 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect19770" width="16" height="16" x="105" y="687.3622" rx="0" ry="1" />
+<path id="path19772" transform="translate(0,512.3622)" d="M 109,184 108,185 106,187 111,187 111,186 111,185 111,184 109,184 Z M 115,184 115,185 115,186 115,187 117,187 120,184 115,184 Z" style="opacity:0.3;fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 106,690.3622 109,687.3622 120,687.3622 117,690.3622 Z" id="path19774" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" id="path19776" d="M 112,701.3622 114,701.3622 114,694.3622 116,694.3622 113,691.3739 110,694.3622 112,694.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19778" transform="translate(0,512.3622)" d="M 109,188 106,191 117,191 120,188 115,188 115,190 111,190 111,188 Z" style="opacity:0.3;fill:url(#linearGradient19282)" />
</g>
<g id="layer-bottom" inkscape:label="#layer_to_bottom">
-<rect transform="scale(1,-1)" ry="1" rx="0" y="-723.3622" x="105" height="16" width="16" id="rect19800" style="fill:none;stroke:none" />
-<path style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 117,714.3622 118,713.3622 120,711.3622 115,711.3622 115,712.3622 115,713.3622 115,714.3622 117,714.3622 Z M 111,714.3622 111,713.3622 111,712.3622 111,711.3622 109,711.3622 106,714.3622 111,714.3622 Z" id="path19802" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19804" d="M 120,720.3622 117,723.3622 106,723.3622 109,720.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 112,709.3622 114,709.3622 114,716.3622 116,716.3622 113,719.3505 110,716.3622 112,716.3622 Z" id="path19806" inkscape:connector-curvature="0" />
-<path style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 117,710.3622 120,707.3622 109,707.3622 106,710.3622 111,710.3622 111,708.3622 115,708.3622 115,710.3622 Z" id="path19808" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
-</g>
-<g id="g39728" />
-<g transform="translate(-395.6564,327.0184)" id="g39833" />
-<g id="g39928" inkscape:label="#delete_layer">
-<g id="g39835" transform="translate(-376.0002,326.3622)">
-<title id="title39837">emblem-new</title>
-<rect style="fill:none;stroke:none" id="rect39839" width="16" height="16" x="481.0002" y="401" />
-</g>
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 109,739.3622 106,742.3622 117,742.3622 120,739.3622 Z" id="path39841" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 111,728.3622 C 110.446,728.3622 110,728.8082 110,729.3622 L 110,736.3622 C 110,736.9162 110.446,737.3622 111,737.3622 L 118,737.3622 C 118.554,737.3622 119,736.9162 119,736.3622 L 119,729.3622 C 119,728.8082 118.554,728.3622 118,728.3622 L 111,728.3622 Z M 112.9063,729.0809 114.6875,731.2372 116.4688,729.0809 118,730.3622 115.9688,732.7997 118,735.2684 116.4688,736.5497 114.6875,734.3934 112.9063,736.5497 111.375,735.2684 113.4063,732.7997 111.375,730.3622 112.9063,729.0809 Z" id="path39843" />
-</g>
-<g id="layers" inkscape:label="#g40011" transform="translate(0,-20)">
-<rect rx="0" transform="translate(0,512.3622)" y="255" x="105" height="16" width="16" id="rect40003" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path40005" d="M 109,769.3622 106,772.3622 117,772.3622 120,769.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 109,774.3622 106,777.3622 117,777.3622 120,774.3622 Z" id="path40007" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path40009" d="M 109,779.3622 106,782.3622 117,782.3622 120,779.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="scale(1,-1)" ry="1" rx="0" y="-723.3622" x="105" height="16" width="16" id="rect19800" style="fill:none" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="M 117,714.3622 118,713.3622 120,711.3622 115,711.3622 115,712.3622 115,713.3622 115,714.3622 117,714.3622 Z M 111,714.3622 111,713.3622 111,712.3622 111,711.3622 109,711.3622 106,714.3622 111,714.3622 Z" id="path19802" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19804" d="M 120,720.3622 117,723.3622 106,723.3622 109,720.3622 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="M 112,709.3622 114,709.3622 114,716.3622 116,716.3622 113,719.3505 110,716.3622 112,716.3622 Z" id="path19806" inkscape:connector-curvature="0" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="M 117,710.3622 120,707.3622 109,707.3622 106,710.3622 111,710.3622 111,708.3622 115,708.3622 115,710.3622 Z" id="path19808" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
+</g>
+<g id="layer-delete" inkscape:label="#delete_layer">
+<rect y="727.3622" x="105" height="16" width="16" id="rect39839" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 109,739.3622 -3,3 11,0 3,-3 z" id="path39841" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 111,728.3622 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 1.9063,0.7187 1.7812,2.1563 1.7813,-2.1563 1.5312,1.2813 -2.0312,2.4375 2.0312,2.4687 -1.5312,1.2813 -1.7813,-2.1563 -1.7812,2.1563 -1.5313,-1.2813 2.0313,-2.4687 -2.0313,-2.4375 1.5313,-1.2813 z" id="path39843" />
+</g>
+<g id="layers" inkscape:label="#layers" transform="translate(0,-20)">
+<rect rx="0" transform="translate(0,512.3622)" y="255" x="105" height="16" width="16" id="rect40003" style="fill:none" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path40005" d="m 109,769.3622 -3,3 11,0 3,-3 z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 109,774.3622 -3,3 11,0 3,-3 z" id="path40007" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path40009" d="m 109,779.3622 -3,3 11,0 3,-3 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g inkscape:label="#duplicate_layer" id="layer-duplicate">
+<rect style="fill:none" id="rect9208" width="16" height="16" x="105" y="255" transform="translate(0,512.3622)" rx="0" />
+<path inkscape:connector-curvature="0" id="path9212" d="m 109,774.3622 -3,3 11,0 3,-3 z" style="fill:url(#linearGradient19282)" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="m 109,779.3622 -3,3 11,0 3,-3 z" id="path9214" inkscape:connector-curvature="0" />
</g>
<g id="dialog-fill-and-stroke" inkscape:label="#fill_and_stroke">
-<g inkscape:label="stock-tool-paintbrush" id="g63382" style="display:inline" transform="translate(73.9998,350.3404)">
-<g id="g9272" transform="matrix(0.8746234,0,0,0.8917833,86.92697,167.5616)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none">
-<path inkscape:connector-curvature="0" d="M -28.5,27.5711 C -25.38886,27.5722 -25.70641,24.24774 -24.19583,23.32212 -22.44536,22.2495 -20.91134,23.5786 -20.60508,24.67241 -20.21863,26.0526 -20.9429,27.1811 -21.9054,27.79136 -23.75176,28.96204 -28.20544,28.69007 -28.5,27.5711 Z" id="path9274" sodipodi:nodetypes="cssac" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g inkscape:label="stock-tool-paintbrush" id="g63382" transform="translate(73.9998,350.3404)">
+<rect style="fill:none" id="rect63349" width="16" height="15.97829" x="61.0002" y="177.0217" />
+<g id="g9272" transform="matrix(0.8746234,0,0,0.8917833,86.92697,167.5616)" style="fill:url(#linearGradient19282)">
+<path inkscape:connector-curvature="0" d="M -28.5,27.5711 C -25.38886,27.5722 -25.70641,24.24774 -24.19583,23.32212 -22.44536,22.2495 -20.91134,23.5786 -20.60508,24.67241 -20.21863,26.0526 -20.9429,27.1811 -21.9054,27.79136 -23.75176,28.96204 -28.20544,28.69007 -28.5,27.5711 Z" id="path9274" sodipodi:nodetypes="cssac" />
</g>
-<path sodipodi:nodetypes="csccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 76.41652,178.3567 C 76.72489,177.6909 76.2528,177.4355 75.6841,178 71.68536,181.9688 71.0002,182 67.26027,187.1497 68.26382,187.1874 69.12533,187.8361 69.57277,188.7725 74.0002,184 74.49921,181.4391 76.41652,178.3567 Z" id="path9264" inkscape:connector-curvature="0" />
-<rect style="fill:none;stroke:none" id="rect63349" width="16" height="15.97829" x="61.0002" y="177.0217" ry="0" rx="1" />
+<path sodipodi:nodetypes="csccc" style="fill:url(#linearGradient19282)" d="M 76.41652,178.3567 C 76.72489,177.6909 76.2528,177.4355 75.6841,178 71.68536,181.9688 71.0002,182 67.26027,187.1497 68.26382,187.1874 69.12533,187.8361 69.57277,188.7725 74.0002,184 74.49921,181.4391 76.41652,178.3567 Z" id="path9264" inkscape:connector-curvature="0" />
</g>
-<rect y="527.3622" x="135" height="0.9999974" width="12" id="rect44369" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="527.3622" x="135" height="13" width="1" id="rect44371" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="527.3622" x="135" height="0.9999974" width="12" id="rect44369" style="fill:url(#linearGradient19282)" />
+<rect y="527.3622" x="135" height="13" width="1" id="rect44371" style="fill:url(#linearGradient19282)" />
</g>
<g id="swatches">
-<rect transform="translate(0,512.3622)" y="35" x="135" height="16" width="16" id="rect44439" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="547.3622" x="135" height="7" width="7" id="rect44441" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect44443" width="7" height="7" x="144" y="547.3622" />
-<path inkscape:connector-curvature="0" id="rect44445" d="M 144,556.3622 144,563.3622 151,563.3622 151,556.3622 144,556.3622 Z M 145,557.3622 150,557.3622 150,562.3622 145,562.3622 145,557.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="rect44447" d="M 135,556.3622 135,563.3622 142,563.3622 142,556.3622 135,556.3622 Z M 136,557.3622 141,557.3622 141,562.3622 136,562.3622 136,557.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="558.3622" x="146" height="3" width="3" id="rect44457" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="558.3622" x="137" height="3" width="3" id="rect44459" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="35" x="135" height="16" width="16" id="rect44439" style="fill:none" />
+<rect y="547.3622" x="135" height="7" width="7" id="rect44441" style="fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect44443" width="7" height="7" x="144" y="547.3622" />
+<path inkscape:connector-curvature="0" id="rect44445" d="M 144,556.3622 144,563.3622 151,563.3622 151,556.3622 144,556.3622 Z M 145,557.3622 150,557.3622 150,562.3622 145,562.3622 145,557.3622 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="rect44447" d="M 135,556.3622 135,563.3622 142,563.3622 142,556.3622 135,556.3622 Z M 136,557.3622 141,557.3622 141,562.3622 136,562.3622 136,557.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect y="558.3622" x="146" height="3" width="3" id="rect44457" style="fill:url(#linearGradient19282)" />
+<rect y="558.3622" x="137" height="3" width="3" id="rect44459" style="opacity:0.3;fill:url(#linearGradient19282)" />
</g>
<g id="dialog-object-properties" inkscape:label="#dialog_item_properties">
-<path inkscape:connector-curvature="0" id="path3908-6" d="M 136.4709,570.0736 C 136.3566,570.4194 136.2536,570.8014 136.2529,571.1649 136.2499,572.9047 137.6645,574.045 139.4109,573.7234 139.7758,573.6562 140.1319,573.5065 140.4583,573.3332 140.4814,573.3208 141.5877,574.195 141.8849,574.4315 141.9259,574.4642 142.079,574.5863 142.079,574.5863 142.4158,574.8557 144.833,576.7893 144.8246,576.8159 144.7188,577.1652 144.6427,577.5382 144.6505,577.9027 144.6881,579.6474 146.1149,580.7738 147.848,580.4135 148.2101,580.3383 148.5696,580.161 148.8908,579.9801 L 147.1488,578.6302 C 146.7902,578.3493 146.8291,577.8106 147.1728,577.3841 L 147.8032,576.6218 C 148.1524,576.1996 148.6324,576.0243 148.9916,576.3045 L 150.7579,577.6737 C 150.8637,577.3245 150.9398,576.9514 150.932,576.5869 150.8944,574.8422 149.4479,573.7397 147.7148,574.0999 147.3527,574.1751 147.0083,574.2855 146.6871,574.4663 L 146.105,574.0019 143,571.5253 142.4178,571.0609 C 142.5322,570.7151 142.5715,570.3614 142.5722,569.9979 142.5752,568.2582 141.1803,567.094 139.4339,567.4156 139.069,567.4828 138.7128,567.6326 138.3865,567.8059 L 140.1133,569.2228 C 140.4662,569.5106 140.39,570.008 140.0408,570.4302 L 139.4104,571.1926 C 139.0558,571.6104 138.5267,571.7586 138.1735,571.4712 L 136.471,570.0736 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" />
-<rect y="567.3622" x="135" height="16" width="16" id="rect2999-6" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect52746" d="M 135,576.3622 135,583.3622 142,583.3622 142,576.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<path inkscape:connector-curvature="0" id="path3908-6" d="M 136.4709,570.0736 C 136.3566,570.4194 136.2536,570.8014 136.2529,571.1649 136.2499,572.9047 137.6645,574.045 139.4109,573.7234 139.7758,573.6562 140.1319,573.5065 140.4583,573.3332 140.4814,573.3208 141.5877,574.195 141.8849,574.4315 141.9259,574.4642 142.079,574.5863 142.079,574.5863 142.4158,574.8557 144.833,576.7893 144.8246,576.8159 144.7188,577.1652 144.6427,577.5382 144.6505,577.9027 144.6881,579.6474 146.1149,580.7738 147.848,580.4135 148.2101,580.3383 148.5696,580.161 148.8908,579.9801 L 147.1488,578.6302 C 146.7902,578.3493 146.8291,577.8106 147.1728,577.3841 L 147.8032,576.6218 C 148.1524,576.1996 148.6324,576.0243 148.9916,576.3045 L 150.7579,577.6737 C 150.8637,577.3245 150.9398,576.9514 150.932,576.5869 150.8944,574.8422 149.4479,573.7397 147.7148,574.0999 147.3527,574.1751 147.0083,574.2855 146.6871,574.4663 L 146.105,574.0019 143,571.5253 142.4178,571.0609 C 142.5322,570.7151 142.5715,570.3614 142.5722,569.9979 142.5752,568.2582 141.1803,567.094 139.4339,567.4156 139.069,567.4828 138.7128,567.6326 138.3865,567.8059 L 140.1133,569.2228 C 140.4662,569.5106 140.39,570.008 140.0408,570.4302 L 139.4104,571.1926 C 139.0558,571.6104 138.5267,571.7586 138.1735,571.4712 L 136.471,570.0736 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:3" />
+<rect y="567.3622" x="135" height="16" width="16" id="rect2999-6" style="fill:none" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect52746" d="M 135,576.3622 135,583.3622 142,583.3622 142,576.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="object-group" inkscape:label="#selection_group">
-<rect transform="translate(0,512.3622)" y="75" x="135" height="16" width="16" id="rect11195" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="587.3622" x="135" height="2.999997" width="3" id="rect11965" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="587.3622" x="148" height="3" width="3" id="rect11967" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="600.3622" x="135" height="3.000003" width="3" id="rect11969" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="600.3622" x="148" height="3.000003" width="3" id="rect11971" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<circle transform="translate(0,512.3622)" id="path11973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="140.5" cy="82.5" r="3.5" />
-<path id="rect11975" transform="translate(0,512.3622)" d="M 144.9375,82 C 144.9562,82.16677 145,82.32822 145,82.5 145,84.81351 143.2461,86.68511 141,86.9375 L 141,88 147,88 147,82 144.9375,82 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect transform="translate(0,512.3622)" y="75" x="135" height="16" width="16" id="rect11195" style="fill:none" />
+<rect y="587.3622" x="135" height="2.999997" width="3" id="rect11965" style="fill:url(#linearGradient19282)" />
+<rect y="587.3622" x="148" height="3" width="3" id="rect11967" style="fill:url(#linearGradient19282)" />
+<rect y="600.3622" x="135" height="3.000003" width="3" id="rect11969" style="fill:url(#linearGradient19282)" />
+<rect y="600.3622" x="148" height="3.000003" width="3" id="rect11971" style="fill:url(#linearGradient19282)" />
+<circle transform="translate(0,512.3622)" id="path11973" style="fill:url(#linearGradient19282)" cx="140.5" cy="82.5" r="3.5" />
+<path id="rect11975" transform="translate(0,512.3622)" d="M 144.9375,82 C 144.9562,82.16677 145,82.32822 145,82.5 145,84.81351 143.2461,86.68511 141,86.9375 L 141,88 147,88 147,82 144.9375,82 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="object-ungroup" inkscape:label="#selection_ungroup">
-<rect style="fill:none;stroke:none" id="rect12011" width="16" height="16" x="135" y="607.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12013" width="2" height="1.999997" x="136" y="608.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12015" width="2" height="1.999997" x="148" y="610.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12019" width="2" height="2.000003" x="148" y="620.3622" />
-<circle style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path12021" transform="translate(0.5,531.3622)" cx="140.5" cy="82.5" r="3.5" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 145.9375,613.3622 C 145.9562,613.5289 146,613.6904 146,613.8622 146,616.1757 144.2461,618.0473 142,618.2997 L 142,619.3622 148,619.3622 148,613.3622 145.9375,613.3622 Z" id="path12023" inkscape:connector-curvature="0" />
-<rect y="608.3622" x="144" height="1.999997" width="2" id="rect12039" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12041" width="2" height="1.999997" x="136" y="617.3622" />
-<rect y="620.3622" x="140" height="1.999997" width="2" id="rect12043" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect12011" width="16" height="16" x="135" y="607.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12013" width="2" height="1.999997" x="136" y="608.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12015" width="2" height="1.999997" x="148" y="610.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12019" width="2" height="2.000003" x="148" y="620.3622" />
+<circle style="fill:url(#linearGradient19282)" id="path12021" transform="translate(0.5,531.3622)" cx="140.5" cy="82.5" r="3.5" />
+<path style="fill:url(#linearGradient19282)" d="M 145.9375,613.3622 C 145.9562,613.5289 146,613.6904 146,613.8622 146,616.1757 144.2461,618.0473 142,618.2997 L 142,619.3622 148,619.3622 148,613.3622 145.9375,613.3622 Z" id="path12023" inkscape:connector-curvature="0" />
+<rect y="608.3622" x="144" height="1.999997" width="2" id="rect12039" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect12041" width="2" height="1.999997" x="136" y="617.3622" />
+<rect y="620.3622" x="140" height="1.999997" width="2" id="rect12043" style="fill:url(#linearGradient19282)" />
</g>
<g id="selection-raise" inkscape:label="#selection_up">
-<rect transform="translate(0,512.3622)" y="115" x="135" height="16" width="16" id="rect12058" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="628.3622" x="136" height="2" width="5" id="rect12060" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="632.3622" x="136" height="2" width="13" id="rect12062" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="636.3622" x="136" height="2" width="5" id="rect12064" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="640.3622" x="136" height="2" width="5" id="rect12066" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 145,642.3622 147,642.3622 147,638.3622 149,638.3622 146,635.3738 143,638.3622 145,638.3622 Z" id="path12074" inkscape:connector-curvature="0" />
+<rect transform="translate(0,512.3622)" y="115" x="135" height="16" width="16" id="rect12058" style="fill:none" />
+<rect y="628.3622" x="136" height="2" width="5" id="rect12060" style="fill:url(#linearGradient19282)" />
+<rect y="632.3622" x="136" height="2" width="13" id="rect12062" style="fill:url(#linearGradient19282)" />
+<rect y="636.3622" x="136" height="2" width="5" id="rect12064" style="fill:url(#linearGradient19282)" />
+<rect y="640.3622" x="136" height="2" width="5" id="rect12066" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="M 145,642.3622 147,642.3622 147,638.3622 149,638.3622 146,635.3738 143,638.3622 145,638.3622 Z" id="path12074" inkscape:connector-curvature="0" />
</g>
<g id="selection-lower" inkscape:label="#selection-down">
-<rect style="fill:none;stroke:none" id="rect12143" width="16" height="16" x="135" y="647.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12145" width="5" height="2" x="136" y="648.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12147" width="13" height="2" x="136" y="656.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12149" width="5" height="2" x="136" y="652.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12151" width="5" height="2" x="136" y="660.3622" />
-<path inkscape:connector-curvature="0" id="path12153" d="M 145,648.3738 147,648.3738 147,652.3739 149,652.3739 146,655.3622 143,652.3739 145,652.3739 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-</g>
-<g id="selection-top" inkscape:label="#g30565">
-<rect style="fill:none;stroke:none" id="rect12171" width="16" height="16" x="135" y="667.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12173" width="5" height="2" x="136" y="672.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12175" width="13" height="2" x="136" y="668.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12177" width="5" height="2" x="136" y="676.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12179" width="5" height="2" x="136" y="680.3622" />
-<path inkscape:connector-curvature="0" id="path12181" d="M 145,682.3622 147,682.3622 147,675.3622 149,675.3622 146,672.3739 143,675.3622 145,675.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-</g>
-<g id="selection-bottom" inkscape:label="#g12220">
-<rect transform="scale(1,-1)" y="-703.3622" x="135" height="16" width="16" id="rect12189" style="fill:none;stroke:none" />
-<rect transform="scale(1,-1)" y="-698.3622" x="136" height="2" width="5" id="rect12191" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" y="-702.3622" x="136" height="2" width="13" id="rect12193" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" y="-694.3622" x="136" height="2" width="5" id="rect12195" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" y="-690.3622" x="136" height="2" width="5" id="rect12197" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 145,688.3622 147,688.3622 147,695.3622 149,695.3622 146,698.3505 143,695.3622 145,695.3622 Z" id="path12199" inkscape:connector-curvature="0" />
+<rect style="fill:none" id="rect12143" width="16" height="16" x="135" y="647.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12145" width="5" height="2" x="136" y="648.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12147" width="13" height="2" x="136" y="656.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12149" width="5" height="2" x="136" y="652.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12151" width="5" height="2" x="136" y="660.3622" />
+<path inkscape:connector-curvature="0" id="path12153" d="M 145,648.3738 147,648.3738 147,652.3739 149,652.3739 146,655.3622 143,652.3739 145,652.3739 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+</g>
+<g id="selection-top" inkscape:label="#selection_top">
+<rect style="fill:none" id="rect12171" width="16" height="16" x="135" y="667.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12173" width="5" height="2" x="136" y="672.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12175" width="13" height="2" x="136" y="668.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12177" width="5" height="2" x="136" y="676.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12179" width="5" height="2" x="136" y="680.3622" />
+<path inkscape:connector-curvature="0" id="path12181" d="m 145,682.3622 2,0 0,-7 2,0 -3,-2.9883 -3,2.9883 2,0 z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+</g>
+<g id="selection-bottom" inkscape:label="#selection_bot">
+<rect transform="scale(1,-1)" y="-703.3622" x="135" height="16" width="16" id="rect12189" style="fill:none" />
+<rect transform="scale(1,-1)" y="-698.3622" x="136" height="2" width="5" id="rect12191" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" y="-702.3622" x="136" height="2" width="13" id="rect12193" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" y="-694.3622" x="136" height="2" width="5" id="rect12195" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" y="-690.3622" x="136" height="2" width="5" id="rect12197" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="m 145,688.3622 2,0 0,7 2,0 -3,2.9883 -3,-2.9883 2,0 z" id="path12199" inkscape:connector-curvature="0" />
</g>
<g id="object-rotate-right" inkscape:label="#object_rotate_90_CW">
-<rect y="707.3622" x="135" height="16" width="16" id="rect12247" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 147,717.3622 150,714.3622 144,714.3622 Z" id="path15904" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<path id="path15906" transform="translate(0,512.3622)" d="M 141.5,195 C 141.3289,195 141.1677,195.0183 141,195.0312 L 141,197.0625 C 141.1668,197.0438 141.3282,197 141.5,197 143.9853,197 146,199.0147 146,201.5 146,201.6718 145.9562,201.8332 145.9375,202 L 147.9687,202 C 147.9817,201.8323 148,201.6711 148,201.5 148,197.9101 145.0899,195 141.5,195 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<rect transform="translate(0,512.3622)" y="195" x="135" height="10" width="5" id="rect18393" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18395" width="5" height="10" x="718.3622" y="-151" transform="rotate(90)" />
+<rect y="707.3622" x="135" height="16" width="16" id="rect12247" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="M 147,717.3622 150,714.3622 144,714.3622 Z" id="path15904" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<path id="path15906" transform="translate(0,512.3622)" d="M 141.5,195 C 141.3289,195 141.1677,195.0183 141,195.0312 L 141,197.0625 C 141.1668,197.0438 141.3282,197 141.5,197 143.9853,197 146,199.0147 146,201.5 146,201.6718 145.9562,201.8332 145.9375,202 L 147.9687,202 C 147.9817,201.8323 148,201.6711 148,201.5 148,197.9101 145.0899,195 141.5,195 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<rect transform="translate(0,512.3622)" y="195" x="135" height="10" width="5" id="rect18393" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect18395" width="5" height="10" x="718.3622" y="-151" transform="rotate(90)" />
</g>
<g id="object-rotate-left" inkscape:label="#object_rotate_90_CCW">
-<g transform="matrix(-1,0,0,1,286,20)" id="g18423" inkscape:label="#object_rotate_90_CW">
-<rect y="707.3622" x="135" height="16" width="16" id="rect18425" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 147,717.3622 150,714.3622 144,714.3622 Z" id="path18427" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<path inkscape:connector-curvature="0" id="path18429" transform="translate(0,512.3622)" d="M 141.5,195 C 141.3289,195 141.1677,195.0183 141,195.0313 L 141,197.0625 C 141.1668,197.0438 141.3282,197 141.5,197 143.9853,197 146,199.0148 146,201.5 146,201.6718 145.9562,201.8333 145.9375,202 L 147.9687,202 C 147.9817,201.8323 148,201.6711 148,201.5 148,197.9102 145.0899,195 141.5,195 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="195" x="135" height="10" width="5" id="rect18431" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18433" width="5" height="10" x="718.3622" y="-151" transform="rotate(90)" />
+<g transform="matrix(-1,0,0,1,286,20)" id="g18423">
+<rect y="707.3622" x="135" height="16" width="16" id="rect18425" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 147,717.3622 3,-3 -6,0 z" id="path18427" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<path inkscape:connector-curvature="0" id="path18429" transform="translate(0,512.3622)" d="m 141.5,195 c -0.1711,0 -0.3323,0.018 -0.5,0.031 l 0,2.0312 c 0.1668,-0.019 0.3282,-0.062 0.5,-0.062 2.4853,0 4.5,2.0148 4.5,4.5 0,0.1718 -0.044,0.3333 -0.062,0.5 l 2.0312,0 c 0.013,-0.1677 0.031,-0.3289 0.031,-0.5 0,-3.5898 -2.9101,-6.5 -6.5,-6.5 z" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="195" x="135" height="10" width="5" id="rect18431" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect18433" width="5" height="10" x="718.3622" y="-151" transform="rotate(90)" />
</g>
</g>
<g id="object-flip-horizontal" inkscape:label="#object_flip_hor">
-<rect transform="translate(0,512.3622)" y="235" x="135" height="16" width="16" id="rect18462" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="748.3622" x="143" height="2" width="1" id="rect18464" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="751.3622" x="143" height="2" width="1" id="rect18466" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="754.3622" x="143" height="2" width="1" id="rect18468" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="757.3622" x="143" height="2" width="1" id="rect18470" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="760.3622" x="143" height="2.000014" width="1" id="rect18472" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect18480" d="M 141,750.3622 142,750.3622 142,760.3622 136,760.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect18484" d="M 145,750.3622 146,750.3622 151,760.3622 145,760.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="235" x="135" height="16" width="16" id="rect18462" style="fill:none" />
+<rect y="748.3622" x="143" height="2" width="1" id="rect18464" style="fill:url(#linearGradient19282)" />
+<rect y="751.3622" x="143" height="2" width="1" id="rect18466" style="fill:url(#linearGradient19282)" />
+<rect y="754.3622" x="143" height="2" width="1" id="rect18468" style="fill:url(#linearGradient19282)" />
+<rect y="757.3622" x="143" height="2" width="1" id="rect18470" style="fill:url(#linearGradient19282)" />
+<rect y="760.3622" x="143" height="2.000014" width="1" id="rect18472" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect18480" d="M 141,750.3622 142,750.3622 142,760.3622 136,760.3622 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect18484" d="M 145,750.3622 146,750.3622 151,760.3622 145,760.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="object-flip-vertical" inkscape:label="#object_flip_ver">
-<g transform="rotate(90,133,765.3622)" id="g18545" inkscape:label="#object_flip_hor">
-<rect transform="translate(0,512.3622)" y="235" x="135" height="16" width="16" id="rect18547" style="fill:none;stroke:none" />
-<rect y="748.3622" x="143" height="2" width="1" id="rect18549" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="751.3622" x="143" height="2" width="1" id="rect18551" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="754.3622" x="143" height="2" width="1" id="rect18553" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="757.3622" x="143" height="2" width="1" id="rect18555" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="760.3622" x="143" height="2.000014" width="1" id="rect18557" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path18559" d="M 141,750.3622 142,750.3622 142,760.3622 136,760.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path18561" d="M 145,750.3622 146,750.3622 151,760.3622 145,760.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g transform="rotate(90,133,765.3622)" id="g18545">
+<rect transform="translate(0,512.3622)" y="235" x="135" height="16" width="16" id="rect18547" style="fill:none" />
+<rect y="748.3622" x="143" height="2" width="1" id="rect18549" style="fill:url(#linearGradient19282)" />
+<rect y="751.3622" x="143" height="2" width="1" id="rect18551" style="fill:url(#linearGradient19282)" />
+<rect y="754.3622" x="143" height="2" width="1" id="rect18553" style="fill:url(#linearGradient19282)" />
+<rect y="757.3622" x="143" height="2" width="1" id="rect18555" style="fill:url(#linearGradient19282)" />
+<rect y="760.3622" x="143" height="2.000014" width="1" id="rect18557" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path18559" d="m 141,750.3622 1,0 0,10 -6,0 z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path18561" d="m 145,750.3622 1,0 5,10 -6,0 z" style="fill:url(#linearGradient19282)" />
</g>
</g>
<g id="dialog-transform" inkscape:label="#object_transform">
-<rect transform="translate(0,512.3622)" y="275" x="135" height="16" width="16" id="rect18662" style="fill:none;fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 143.5,275 C 139.9101,275 137,277.9101 137,281.5 137,281.6711 137.0182,281.8323 137.0312,282 L 135,282 138,285 141,282 139.0625,282 C 139.0438,281.8332 139,281.6718 139,281.5 139,279.0147 141.0147,277 143.5,277 143.6718,277 143.8332,277.0438 144,277.0625 144.1668,277.0438 144.3282,277 144.5,277 146.9853,277 149,279.0147 149,281.5 149,281.6718 148.9562,281.8332 148.9375,282 148.9562,282.1668 149,282.3282 149,282.5 149,284.9853 146.9853,287 144.5,287 144.3282,287 144.1668,286.9562 144,286.9375 L 144,288.9687 C 144.1677,288.9817 144.3289,289 144.5,289 148.0899,289 151,286.0899 151,282.5 151,282.3289 150.9817,282.1677 150.9687,282 150.9817,281.8323 151,281.6711 151,281.5 151,277.9101 148.0899,275 144.5,275 144.3289,275 144.1677,275.0183 144,275.0312 143.8323,275.0183 143.6711,275 143.5,275 Z" transform="translate(0,512.3622)" id="path18678" inkscape:connector-curvature="0" />
-<circle transform="matrix(1.333333,0,0,1.333333,-48.66667,417.6955)" id="path18701" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="144.5" cy="282.5" r="1.5" />
-<rect transform="translate(0,512.3622)" y="286" x="135" height="5" width="6" id="rect18705" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="275" x="135" height="16" width="16" id="rect18662" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="M 143.5,275 C 139.9101,275 137,277.9101 137,281.5 137,281.6711 137.0182,281.8323 137.0312,282 L 135,282 138,285 141,282 139.0625,282 C 139.0438,281.8332 139,281.6718 139,281.5 139,279.0147 141.0147,277 143.5,277 143.6718,277 143.8332,277.0438 144,277.0625 144.1668,277.0438 144.3282,277 144.5,277 146.9853,277 149,279.0147 149,281.5 149,281.6718 148.9562,281.8332 148.9375,282 148.9562,282.1668 149,282.3282 149,282.5 149,284.9853 146.9853,287 144.5,287 144.3282,287 144.1668,286.9562 144,286.9375 L 144,288.9687 C 144.1677,288.9817 144.3289,289 144.5,289 148.0899,289 151,286.0899 151,282.5 151,282.3289 150.9817,282.1677 150.9687,282 150.9817,281.8323 151,281.6711 151,281.5 151,277.9101 148.0899,275 144.5,275 144.3289,275 144.1677,275.0183 144,275.0312 143.8323,275.0183 143.6711,275 143.5,275 Z" transform="translate(0,512.3622)" id="path18678" inkscape:connector-curvature="0" />
+<circle transform="matrix(1.333333,0,0,1.333333,-48.66667,417.6955)" id="path18701" style="fill:url(#linearGradient19282)" cx="144.5" cy="282.5" r="1.5" />
+<rect transform="translate(0,512.3622)" y="286" x="135" height="5" width="6" id="rect18705" style="fill:url(#linearGradient19282)" />
</g>
<g id="dialog-align-and-distribute" inkscape:label="#object_align">
-<rect y="807.3622" x="135" height="16" width="16" id="rect18735" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="808.3622" x="136" height="13" width="1" id="rect18737" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="808.3622" x="139" height="3" width="7" id="rect18739" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18741" width="10" height="3" x="139" y="813.3622" />
-<rect transform="scale(1,-1)" y="-821.3622" x="139" height="3.000003" width="6" id="rect18743" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="807.3622" x="135" height="16" width="16" id="rect18735" style="fill:none" />
+<rect y="808.3622" x="136" height="13" width="1" id="rect18737" style="fill:url(#linearGradient19282)" />
+<rect y="808.3622" x="139" height="3" width="7" id="rect18739" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect18741" width="10" height="3" x="139" y="813.3622" />
+<rect transform="scale(1,-1)" y="-821.3622" x="139" height="3.000003" width="6" id="rect18743" style="fill:url(#linearGradient19282)" />
</g>
<g id="dialog-rows-and-columns" inkscape:label="#grid_arrange">
-<rect y="827.3622" x="135" height="16" width="16" id="rect18771" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="828.3622" x="136" height="8" width="6" id="rect18791" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18793" width="6" height="8.000003" x="144" y="834.3622" />
-<rect transform="translate(0,512.3622)" y="316" x="144" height="4" width="6" id="rect18795" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18797" width="6" height="4" x="136" y="838.3622" />
+<rect y="827.3622" x="135" height="16" width="16" id="rect18771" style="fill:none" />
+<rect y="828.3622" x="136" height="8" width="6" id="rect18791" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect18793" width="6" height="8.000003" x="144" y="834.3622" />
+<rect transform="translate(0,512.3622)" y="316" x="144" height="4" width="6" id="rect18795" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect18797" width="6" height="4" x="136" y="838.3622" />
</g>
<g id="color-management" inkscape:label="#color_management">
<g inkscape:label="preferences-color-management" id="g14507" transform="translate(99.94762,867.3622)">
-<g id="g14498">
-<g transform="translate(-65.95487,-296.9307)" inkscape:label="tfqwd" id="g8583" style="display:inline">
-<rect style="display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:1.781;marker:none;enable-background:new" id="rect8585" y="277" x="101" height="16" width="16" />
-</g>
-<path inkscape:connector-curvature="0" id="path8587" d="M 43.05952,-18.99286 C 40.8567,-18.99286 39.06667,-17.20282 39.06667,-15 39.06667,-12.79717 40.8567,-11.00714 43.05952,-11.00714 45.26235,-11.00714 47.05238,-12.79717 47.05238,-15 47.05238,-17.20282 45.26235,-18.99286 43.05952,-18.99286 Z M 43.05952,-17.94048 C 44.68588,-17.94048 46,-16.62635 46,-15 46,-13.37365 44.68588,-12.05952 43.05952,-12.05952 41.43317,-12.05952 40.11905,-13.37365 40.11905,-15 40.11905,-16.62635 41.43317,-17.94048 43.05952,-17.94048 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2.1538463;marker:none;enable-background:new" />
-<path inkscape:connector-curvature="0" id="path8591" d="M 39.04533,-11.92358 C 36.8425,-11.92358 35.05247,-10.13354 35.05247,-7.930721 35.05247,-5.727896 36.8425,-3.937863 39.04533,-3.937863 41.24815,-3.937863 43.03818,-5.727896 43.03818,-7.930721 43.03818,-10.13354 41.24815,-11.92358 39.04533,-11.92358 Z M 39.04533,-10.8712 C 40.67168,-10.8712 41.9858,-9.557073 41.9858,-7.930721 41.9858,-6.304368 40.67168,-4.990244 39.04533,-4.990244 37.41897,-4.990244 36.10485,-6.304368 36.10485,-7.930721 36.10485,-9.557073 37.41897,-10.8712 39.04533,-10.8712 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1538463;marker:none;enable-background:new" />
-<path inkscape:connector-curvature="0" id="path8593" d="M 47.04448,-11.92358 C 44.84165,-11.92358 43.05162,-10.13354 43.05162,-7.930721 43.05162,-5.727896 44.84165,-3.937863 47.04448,-3.937863 49.2473,-3.937863 51.03733,-5.727896 51.03733,-7.930721 51.03733,-10.13354 49.2473,-11.92358 47.04448,-11.92358 Z M 47.04448,-10.8712 C 48.67083,-10.8712 49.98495,-9.557073 49.98495,-7.930721 49.98495,-6.304368 48.67083,-4.990244 47.04448,-4.990244 45.41812,-4.990244 44.104,-6.304368 44.104,-7.930721 44.104,-9.557073 45.41812,-10.8712 47.04448,-10.8712 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.1538463;marker:none;enable-background:new" />
-<ellipse transform="matrix(0.8702852,0,0,0.808122,4.92308,-1.894239)" id="path14494" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="39.15604" cy="-7.555495" rx="2.298097" ry="2.474874" />
-<ellipse transform="matrix(0.7218043,0,0,0.8,13.24061,-2)" id="path14496" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="46.77084" cy="-7.5" rx="2.770834" ry="2.5" />
+<rect style="fill:none;stroke-width:1.781" id="rect8585" y="-19.9307" x="35.04513" height="16" width="16" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2.1538463" d="m 43.05952,-18.99286 c -2.20282,0 -3.99285,1.79004 -3.99285,3.99286 0,2.20283 1.79003,3.99286 3.99285,3.99286 2.20283,0 3.99286,-1.79003 3.99286,-3.99286 0,-2.20282 -1.79003,-3.99286 -3.99286,-3.99286 z m 0,1.05238 C 44.68588,-17.94048 46,-16.62635 46,-15 c 0,1.62635 -1.31412,2.94048 -2.94048,2.94048 -1.62635,0 -2.94047,-1.31413 -2.94047,-2.94048 0,-1.62635 1.31412,-2.94048 2.94047,-2.94048 z" id="path8587" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2.1538463" d="m 39.04533,-11.92358 c -2.20283,0 -3.99286,1.79004 -3.99286,3.992859 0,2.202825 1.79003,3.992858 3.99286,3.992858 2.20282,0 3.99285,-1.790033 3.99285,-3.992858 0,-2.202819 -1.79003,-3.992859 -3.99285,-3.992859 z m 0,1.05238 c 1.62635,0 2.94047,1.314127 2.94047,2.940479 0,1.626353 -1.31412,2.940477 -2.94047,2.940477 -1.62636,0 -2.94048,-1.314124 -2.94048,-2.940477 0,-1.626352 1.31412,-2.940479 2.94048,-2.940479 z" id="path8591" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2.1538463" d="m 47.04448,-11.92358 c -2.20283,0 -3.99286,1.79004 -3.99286,3.992859 0,2.202825 1.79003,3.992858 3.99286,3.992858 2.20282,0 3.99285,-1.790033 3.99285,-3.992858 0,-2.202819 -1.79003,-3.992859 -3.99285,-3.992859 z m 0,1.05238 c 1.62635,0 2.94047,1.314127 2.94047,2.940479 0,1.626353 -1.31412,2.940477 -2.94047,2.940477 -1.62636,0 -2.94048,-1.314124 -2.94048,-2.940477 0,-1.626352 1.31412,-2.940479 2.94048,-2.940479 z" id="path8593" inkscape:connector-curvature="0" />
+<circle cy="-8.000001" cx="39" style="opacity:0.3;fill:url(#linearGradient19282);stroke-width:0.8386278" id="path14494" r="2" />
+<circle cy="-8" cx="47" style="fill:url(#linearGradient19282);stroke-width:0.759897" id="path14496" r="2" />
</g>
</g>
+<g inkscape:label="symbols" id="symbols" transform="translate(135,867.3626)">
+<path id="symbol-shield" d="M 8.0312,4.254784e-4 C 5.9057,0.019425 3.7732,0.3619158 1.625,0.9691994 2.5509,3.398935 1.691,7.35043 2.2187,10.50015 2.7383,13.60316 5.6383,14.67123 8.0312,16 10.8942,14.67694 13.4674,13.10087 13.8124,10.50015 14.2313,7.344229 13.3448,4.246612 14.375,0.9691994 12.2768,0.2846178 10.1567,-0.018774 8.0312,4.254784e-4 Z m 0,2.6249305216 C 8.864,3.295038 9.5828,4.111516 10,5.46908 9.0819,6.147861 8.4753,7.376428 8.3124,8.625195 l 0.625,0 c 0.058,-0.269892 0.1209,-0.573085 0.25,-0.874976 1.1946,-2.790726 4.6339,-0.230494 2.7813,1.187567 -0.056,-1.267666 -0.959,-1.706053 -1.75,-0.531285 -0.049,0.073 -0.086,0.148796 -0.125,0.218694 l 0.5313,0 a 0.3927608,0.4062895 0 0 1 0,0.812579 l -0.7813,0 c 0.014,0.570586 0.4592,0.937376 0.9063,0.937376 -0.501,1.33326 -1.8693,0.70338 -1.9063,-0.937376 l -0.5625,0 C 8.3072,10.38265 8.6055,11.26783 9.25,11.84391 8.9492,12.42579 8.7402,13.09978 8.0312,13.34387 7.4755,13.14168 7.033,12.56579 6.8124,11.84391 7.4565,11.24703 7.739,10.36675 7.75,9.437774 l -0.5938,0 C 7.1192,11.07853 5.7509,11.70841 5.25,10.37515 c 0.4473,0 0.8922,-0.36679 0.9062,-0.937376 l -0.7812,0 a 0.3927608,0.4062895 0 1 1 0,-0.812579 l 0.5312,0 C 5.8672,8.555197 5.8302,8.479499 5.7812,8.406501 4.9904,7.231733 4.0872,7.67012 4.0312,8.937786 2.1786,7.519725 5.618,4.959493 6.8124,7.750219 6.9417,8.05211 7.0045,8.355303 7.0624,8.625195 l 0.625,0 C 7.5044,7.408428 6.8829,6.20186 6.0312,5.46908 c 0.3537,-1.103371 0.9775,-2.086244 2,-2.843724 z" style="fill:url(#linearGradient19282);stroke-width:0.9999865" inkscape:connector-curvature="0" />
+<rect id="rect48467" width="16" height="16" x="0" y="0" style="fill:none" />
</g>
<g id="object-to-path" inkscape:label="#object_tocurve">
-<rect y="527.3622" x="165" height="16" width="16" id="rect22765" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" id="rect22767" d="M 167,529.3622 167,541.3622 179,541.3622 179,529.3622 167,529.3622 Z M 168,530.3622 178,530.3622 178,540.3622 168,540.3622 168,530.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="528.3622" x="166" height="3" width="3" id="rect22772" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="528.3622" x="177" height="3" width="3" id="rect22776" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22778" width="3" height="3" x="166" y="539.3622" />
-<rect y="539.3622" x="177" height="3" width="3" id="rect22780" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="20" x="170" height="6" width="6" id="rect22782" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="527.3622" x="165" height="16" width="16" id="rect22765" style="fill:none" />
+<path inkscape:connector-curvature="0" id="rect22767" d="M 167,529.3622 167,541.3622 179,541.3622 179,529.3622 167,529.3622 Z M 168,530.3622 178,530.3622 178,540.3622 168,540.3622 168,530.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect y="528.3622" x="166" height="3" width="3" id="rect22772" style="fill:url(#linearGradient19282)" />
+<rect y="528.3622" x="177" height="3" width="3" id="rect22776" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22778" width="3" height="3" x="166" y="539.3622" />
+<rect y="539.3622" x="177" height="3" width="3" id="rect22780" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="20" x="170" height="6" width="6" id="rect22782" style="opacity:0.3;fill:url(#linearGradient19282)" />
</g>
<g id="stroke-to-path" inkscape:label="#stock_tocurve">
-<g id="g22926">
-<rect style="fill:none;stroke:none" id="rect22908" width="16" height="16" x="165" y="547.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 168,563.3622 C 168,556.3622 168,560.2402 168,556.3622 168,552.4842 170,550.3622 175,550.3622 L 181,550.3622 181,549.3622 174,549.3622 C 169,549.3622 167,552.4842 167,556.3622 L 167,563.3622 Z" id="rect22912" inkscape:connector-curvature="0" sodipodi:nodetypes="cssccsscc" />
-<path sodipodi:nodetypes="cssccsscc" inkscape:connector-curvature="0" id="path22916" d="M 172,563.3622 C 172,556.3622 172,564.2402 172,560.3622 172,554.3622 172,554.3622 177,554.3622 L 181,554.3622 181,553.3622 176,553.3622 C 170,553.3622 171,555.3622 171,560.3622 L 171,563.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="557.3622" x="166" height="3" width="3" id="rect22918" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22920" width="3" height="3" x="170" y="557.3622" />
-<rect y="548.3622" x="176" height="3" width="3" id="rect22922" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="552.3622" x="176" height="3" width="3" id="rect22924" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
+<rect y="547.3622" x="165" height="16" width="16" id="rect22908" style="fill:none" />
+<path sodipodi:nodetypes="cssccsscc" inkscape:connector-curvature="0" id="rect22912" d="m 168,563.3622 c 0,-7 0,-3.122 0,-7 0,-3.878 2,-6 7,-6 l 6,0 0,-1 -7,0 c -5,0 -7,3.122 -7,7 l 0,7 z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 172,563.3622 c 0,-7 0,0.878 0,-3 0,-6 0,-6 5,-6 l 4,0 0,-1 -5,0 c -6,0 -5,2 -5,7 l 0,3 z" id="path22916" inkscape:connector-curvature="0" sodipodi:nodetypes="cssccsscc" />
+<rect style="fill:url(#linearGradient19282)" id="rect22918" width="3" height="3" x="166" y="557.3622" />
+<rect y="557.3622" x="170" height="3" width="3" id="rect22920" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22922" width="3" height="3" x="176" y="548.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect22924" width="3" height="3" x="176" y="552.3622" />
</g>
<g id="bitmap-trace" inkscape:label="#selection_trace" transform="translate(0.03125,5e-5)">
-<rect transform="scale(-1,1)" style="fill:none;stroke:none" id="rect22966" width="16" height="16" x="-181" y="567.3622" />
-<path inkscape:connector-curvature="0" id="path22987" d="M 170.5,567.3622 C 167.4624,567.3622 165,569.8246 165,572.8622 165,575.8997 167.4624,578.3622 170.5,578.3622 173.5375,578.3622 176,575.8997 176,572.8622 176,569.8246 173.5375,567.3622 170.5,567.3622 Z M 170.5,569.3622 C 172.4329,569.3622 174,570.9292 174,572.8622 174,574.7952 172.4329,576.3622 170.5,576.3622 168.567,576.3622 167,574.7952 167,572.8622 167,570.9292 168.567,569.3622 170.5,569.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="rect22991" d="M 176.9687,572.3622 C 176.9817,572.5299 177,572.6911 177,572.8622 177,573.3795 176.9267,573.8797 176.8125,574.3622 L 179,574.3622 179,581.3622 172,581.3622 172,579.1747 C 171.5175,579.2889 171.0174,579.3622 170.5,579.3622 170.3289,579.3622 170.1677,579.3439 170,579.3309 L 170,583.3621 172,583.3621 181,583.3621 181,581.3621 181,574.3621 181,572.3621 179,572.3621 176.9687,572.3621 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect22966" width="16" height="16" x="165" y="567.3622" />
+<path inkscape:connector-curvature="0" id="path22987" d="M 170.5,567.3622 C 167.4624,567.3622 165,569.8246 165,572.8622 165,575.8997 167.4624,578.3622 170.5,578.3622 173.5375,578.3622 176,575.8997 176,572.8622 176,569.8246 173.5375,567.3622 170.5,567.3622 Z M 170.5,569.3622 C 172.4329,569.3622 174,570.9292 174,572.8622 174,574.7952 172.4329,576.3622 170.5,576.3622 168.567,576.3622 167,574.7952 167,572.8622 167,570.9292 168.567,569.3622 170.5,569.3622 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="rect22991" d="M 176.9687,572.3622 C 176.9817,572.5299 177,572.6911 177,572.8622 177,573.3795 176.9267,573.8797 176.8125,574.3622 L 179,574.3622 179,581.3622 172,581.3622 172,579.1747 C 171.5175,579.2889 171.0174,579.3622 170.5,579.3622 170.3289,579.3622 170.1677,579.3439 170,579.3309 L 170,583.3621 172,583.3621 181,583.3621 181,581.3621 181,574.3621 181,572.3621 179,572.3621 176.9687,572.3621 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="path-union" inkscape:label="#union">
-<rect y="587.3622" x="-181" height="16" width="16" id="rect23029" style="fill:none;stroke:none" transform="scale(-1,1)" />
-<path id="path23041" transform="translate(0,512.3622)" d="M 170.5,76 C 167.4624,76 165,78.46243 165,81.5 165,84.36875 167.1971,86.71576 170,86.96875 L 170,90 180,90 180,80 175.7812,80 C 175.124,77.69813 173.0128,76 170.5,76 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect y="587.3622" x="165" height="16" width="16" id="rect23029" style="fill:none" />
+<path id="path23041" transform="translate(0,512.3622)" d="M 170.5,76 C 167.4624,76 165,78.46243 165,81.5 165,84.36875 167.1971,86.71576 170,86.96875 L 170,90 180,90 180,80 175.7812,80 C 175.124,77.69813 173.0128,76 170.5,76 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="path-difference" inkscape:label="#difference">
-<path inkscape:connector-curvature="0" style="color:#000000;display:inline;opacity:1;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000002;marker:none" d="M 180,612.3622 180,622.2997 169.9063,622.2997 169.9063,618.1747 C 170.1123,618.1981 170.2877,618.2997 170.5,618.2997 173.536,618.2997 176,615.8357 176,612.7997 176,612.6432 175.9191,612.5154 175.9063,612.3622 L 180,612.3622 Z" id="rect10884" />
-<path style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 170.5,607.3622 C 167.4624,607.3622 165,609.8246 165,612.8622 165,615.8997 167.4624,618.3622 170.5,618.3622 173.5376,618.3622 176,615.8997 176,612.8622 176,609.8246 173.5376,607.3622 170.5,607.3622 Z" id="path23142" inkscape:connector-curvature="0" sodipodi:nodetypes="sssss" />
-<rect transform="translate(0,512.3622)" y="95" x="165" height="16" width="16" id="rect23149" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="95" x="165" height="16" width="16" id="rect23149" style="opacity:0.3;fill:none" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000002" d="M 180,612.3622 180,622.2997 169.9063,622.2997 169.9063,618.1747 C 170.1123,618.1981 170.2877,618.2997 170.5,618.2997 173.536,618.2997 176,615.8357 176,612.7997 176,612.6432 175.9191,612.5154 175.9063,612.3622 L 180,612.3622 Z" id="rect10884" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="M 170.5,607.3622 C 167.4624,607.3622 165,609.8246 165,612.8622 165,615.8997 167.4624,618.3622 170.5,618.3622 173.5376,618.3622 176,615.8997 176,612.8622 176,609.8246 173.5376,607.3622 170.5,607.3622 Z" id="path23142" inkscape:connector-curvature="0" sodipodi:nodetypes="sssss" />
</g>
<g id="path-intersection" inkscape:label="#intersection">
-<path id="path23158" transform="translate(0,512.3622)" d="M 170,120 170,125.9688 C 170.1649,125.9836 170.3312,126 170.5,126 173.5376,126 176,123.5376 176,120.5 176,120.3312 175.9836,120.1649 175.9687,120 L 170,120 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000002;marker:none" inkscape:connector-curvature="0" />
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect23162" width="16" height="16" x="165" y="627.3622" />
-<path id="path23169" transform="translate(0,512.3622)" d="M 170.5,115 C 167.4624,115 165,117.4624 165,120.5 165,123.3688 167.1971,125.7158 170,125.9688 L 170,125.8125 C 170.206,125.8359 170.3814,125.9375 170.5937,125.9375 171.5039,125.9375 172.3686,125.7357 173.125,125.3438 173.2937,125.2563 173.4358,125.1351 173.5937,125.0313 173.6124,125.0184 173.6377,125.0131 173.6562,125 173.7719,124.9218 173.8908,124.8365 174,124.75 174.0283,124.7267 174.0659,124.7114 174.0937,124.6875 174.2013,124.5987 174.2745,124.4715 174.375,124.375 174.4009,124.3491 174.4433,124.3389 174.4687,124.3125 174.5673,124.214 174.6591,124.1057 174.75,124 175.5346,123.0493 176,121.8289 176,120.5 176,117.4624 173.5376,115 170.5,115 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<rect transform="translate(0,512.3622)" y="120" x="170" height="10" width="10" id="rect23184" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="opacity:0.3;fill:none" id="rect23162" width="16" height="16" x="165" y="627.3622" />
+<path id="path23158" transform="translate(0,512.3622)" d="M 170,120 170,125.9688 C 170.1649,125.9836 170.3312,126 170.5,126 173.5376,126 176,123.5376 176,120.5 176,120.3312 175.9836,120.1649 175.9687,120 L 170,120 Z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000002" inkscape:connector-curvature="0" />
+<path id="path23169" transform="translate(0,512.3622)" d="M 170.5,115 C 167.4624,115 165,117.4624 165,120.5 165,123.3688 167.1971,125.7158 170,125.9688 L 170,125.8125 C 170.206,125.8359 170.3814,125.9375 170.5937,125.9375 171.5039,125.9375 172.3686,125.7357 173.125,125.3438 173.2937,125.2563 173.4358,125.1351 173.5937,125.0313 173.6124,125.0184 173.6377,125.0131 173.6562,125 173.7719,124.9218 173.8908,124.8365 174,124.75 174.0283,124.7267 174.0659,124.7114 174.0937,124.6875 174.2013,124.5987 174.2745,124.4715 174.375,124.375 174.4009,124.3491 174.4433,124.3389 174.4687,124.3125 174.5673,124.214 174.6591,124.1057 174.75,124 175.5346,123.0493 176,121.8289 176,120.5 176,117.4624 173.5376,115 170.5,115 Z" style="opacity:0.3;fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<rect transform="translate(0,512.3622)" y="120" x="170" height="10" width="10" id="rect23184" style="opacity:0.3;fill:url(#linearGradient19282)" />
</g>
<g id="path-exclusion" inkscape:label="#exclusion">
-<rect y="647.3622" x="165" height="16" width="16" id="rect23215" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-<path id="rect23219" transform="translate(0,512.3622)" d="M 175.9687,140 C 175.9836,140.1649 176,140.3312 176,140.5 176,141.8289 175.5346,143.0493 174.75,144 174.6591,144.1057 174.5672,144.214 174.4687,144.3125 174.4435,144.3389 174.4009,144.3491 174.375,144.375 174.2745,144.4715 174.2013,144.5987 174.0937,144.6875 174.0659,144.7114 174.0283,144.7267 174,144.75 173.8908,144.8365 173.7719,144.9218 173.6562,145 173.6377,145.0131 173.6124,145.0184 173.5937,145.0312 173.4358,145.135 173.2937,145.2563 173.125,145.3437 172.3686,145.7357 171.5039,145.9375 170.5937,145.9375 170.3814,145.9375 170.206,145.8359 170,145.8125 L 170,145.9687 170,150 180,150 180,140 175.9687,140 Z" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="path23226" transform="translate(0,512.3622)" d="M 170.5,135 C 167.4624,135 165,137.4624 165,140.5 165,143.3793 167.2137,145.7303 170.0312,145.9687 L 170.0312,140 175.9687,140 C 175.7158,137.1971 173.3687,135 170.5,135 Z" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path style="color:#000000;display:inline;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000002;marker:none" d="M 170.0313,652.3621 170.0313,658.3309 C 170.1962,658.3458 170.3625,658.3622 170.5313,658.3622 173.5689,658.3622 176.0313,655.8997 176.0313,652.8622 176.0313,652.6934 176.0149,652.5271 176,652.3622 L 170.0313,652.3621 Z" id="path23213" inkscape:connector-curvature="0" />
+<rect y="647.3622" x="165" height="16" width="16" id="rect23215" style="opacity:0.3;fill:none" />
+<path id="rect23219" transform="translate(0,512.3622)" d="M 175.9687,140 C 175.9836,140.1649 176,140.3312 176,140.5 176,141.8289 175.5346,143.0493 174.75,144 174.6591,144.1057 174.5672,144.214 174.4687,144.3125 174.4435,144.3389 174.4009,144.3491 174.375,144.375 174.2745,144.4715 174.2013,144.5987 174.0937,144.6875 174.0659,144.7114 174.0283,144.7267 174,144.75 173.8908,144.8365 173.7719,144.9218 173.6562,145 173.6377,145.0131 173.6124,145.0184 173.5937,145.0312 173.4358,145.135 173.2937,145.2563 173.125,145.3437 172.3686,145.7357 171.5039,145.9375 170.5937,145.9375 170.3814,145.9375 170.206,145.8359 170,145.8125 L 170,145.9687 170,150 180,150 180,140 175.9687,140 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="path23226" transform="translate(0,512.3622)" d="M 170.5,135 C 167.4624,135 165,137.4624 165,140.5 165,143.3793 167.2137,145.7303 170.0312,145.9687 L 170.0312,140 175.9687,140 C 175.7158,137.1971 173.3687,135 170.5,135 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path style="color:#000000;opacity:0.3;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000002" d="M 170.0313,652.3621 170.0313,658.3309 C 170.1962,658.3458 170.3625,658.3622 170.5313,658.3622 173.5689,658.3622 176.0313,655.8997 176.0313,652.8622 176.0313,652.6934 176.0149,652.5271 176,652.3622 L 170.0313,652.3621 Z" id="path23213" inkscape:connector-curvature="0" />
</g>
<g id="path-division" inkscape:label="#division">
-<rect transform="translate(0,512.3622)" y="155" x="165" height="16" width="16" id="rect11641" style="fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccsscccsscccccc" inkscape:connector-curvature="0" id="path12415" transform="translate(0,512.3622)" d="M 170,160 170,164 C 170.1324,164.0152 170.3635,164 170.5,164 172.433,164 174,162.433 174,160.5 174,160.3323 173.992,160.1614 173.9687,160 Z M 175.9687,160 C 175.9836,160.1649 176,160.3312 176,160.5 176,163.5376 173.5376,166 170.5,166 170.3417,166 170.1862,165.9819 170.0313,165.9687 L 170.0313,170 180.0313,170 180.0313,160 176,160 Z" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path12456" d="M 170.5,667.3622 C 167.4624,667.3622 165,669.8246 165,672.8622 165,675.7309 167.1971,678.0779 170,678.3309 L 170,672.3622 175.9687,672.3622 C 175.7158,669.5593 173.3687,667.3622 170.5,667.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="667.3622" x="165" height="16" width="16" id="rect11641" style="fill:none" />
+<path sodipodi:nodetypes="ccsscccsscccccc" inkscape:connector-curvature="0" id="path12415" transform="translate(0,512.3622)" d="M 170,160 170,164 C 170.1324,164.0152 170.3635,164 170.5,164 172.433,164 174,162.433 174,160.5 174,160.3323 173.992,160.1614 173.9687,160 Z M 175.9687,160 C 175.9836,160.1649 176,160.3312 176,160.5 176,163.5376 173.5376,166 170.5,166 170.3417,166 170.1862,165.9819 170.0313,165.9687 L 170.0313,170 180.0313,170 180.0313,160 176,160 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path12456" d="M 170.5,667.3622 C 167.4624,667.3622 165,669.8246 165,672.8622 165,675.7309 167.1971,678.0779 170,678.3309 L 170,672.3622 175.9687,672.3622 C 175.7158,669.5593 173.3687,667.3622 170.5,667.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282)" />
</g>
<g id="path-cut" inkscape:label="#cut-path">
-<rect y="687.3622" x="-181.0312" height="16" width="16" id="rect12506" style="fill:none;stroke:none" transform="scale(-1,1)" />
-<path style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 170.5312,687.3622 C 167.4936,687.3622 165.0312,689.8247 165.0312,692.8622 165.0312,695.8998 167.4936,698.3622 170.5312,698.3622 173.5688,698.3622 176.0312,695.8998 176.0312,692.8622 176.0312,689.8247 173.5688,687.3622 170.5312,687.3622 Z M 170.5312,689.3622 C 172.4642,689.3622 174.0312,690.9292 174.0312,692.8622 174.0312,694.7952 172.4642,696.3622 170.5312,696.3622 168.5982,696.3622 167.0312,694.7952 167.0312,692.8622 167.0312,690.9292 168.5982,689.3622 170.5312,689.3622 Z" id="path12508" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cscccccscccccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 177,692.3622 C 177.013,692.53 177.0312,692.6912 177.0312,692.8622 177.0312,693.3796 177.1142,692.8797 177,693.3622 L 180,693.3622 180,702.3622 171,702.3622 171,699.3622 C 170.5175,699.4764 171.0485,699.3622 170.5312,699.3622 170.3601,699.3622 170.1989,699.3439 170.0312,699.3309 L 170.0312,703.3622 172.0312,703.3622 181.0312,703.3622 181.0312,701.3622 181.0312,694.3622 181.0312,692.3622 179.0312,692.3622 177,692.3622 Z" id="path12510" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="rect12515" transform="translate(0,512.3622)" d="M 170,180 170,182 170,183 171,183 171,181 173,181 173,180 172,180 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="687.3622" x="165.0312" height="16" width="16" id="rect12506" style="fill:none" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="M 170.5312,687.3622 C 167.4936,687.3622 165.0312,689.8247 165.0312,692.8622 165.0312,695.8998 167.4936,698.3622 170.5312,698.3622 173.5688,698.3622 176.0312,695.8998 176.0312,692.8622 176.0312,689.8247 173.5688,687.3622 170.5312,687.3622 Z M 170.5312,689.3622 C 172.4642,689.3622 174.0312,690.9292 174.0312,692.8622 174.0312,694.7952 172.4642,696.3622 170.5312,696.3622 168.5982,696.3622 167.0312,694.7952 167.0312,692.8622 167.0312,690.9292 168.5982,689.3622 170.5312,689.3622 Z" id="path12508" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="cscccccscccccccccc" style="fill:url(#linearGradient19282)" d="M 177,692.3622 C 177.013,692.53 177.0312,692.6912 177.0312,692.8622 177.0312,693.3796 177.1142,692.8797 177,693.3622 L 180,693.3622 180,702.3622 171,702.3622 171,699.3622 C 170.5175,699.4764 171.0485,699.3622 170.5312,699.3622 170.3601,699.3622 170.1989,699.3439 170.0312,699.3309 L 170.0312,703.3622 172.0312,703.3622 181.0312,703.3622 181.0312,701.3622 181.0312,694.3622 181.0312,692.3622 179.0312,692.3622 177,692.3622 Z" id="path12510" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="rect12515" transform="translate(0,512.3622)" d="M 170,180 170,182 170,183 171,183 171,181 173,181 173,180 172,180 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="path-combine" inkscape:label="#selection-combine">
-<g transform="translate(-0.0312042,19.99994)" id="g12552" inkscape:label="#cut-path">
-<rect y="687.3622" x="-181.0312" height="16" width="16" id="rect12554" style="fill:none;stroke:none" transform="scale(-1,1)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 170,200 170,201 170,211 172,211 181,211 181,209 181,202 181,200 171,200 170,200 Z M 171,201 179.9687,201 179.9687,210 170.9687,210 171,201 Z" transform="translate(0.0312042,492.3622)" id="path12558" inkscape:connector-curvature="0" />
-</g>
-<path transform="translate(0,512.3622)" id="path19448" d="M 170.5,195 C 167.4624,195 165,197.4624 165,200.5 165,203.5376 167.4624,206 170.5,206 173.5376,206 176,203.5376 176,200.5 176,197.4624 173.5376,195 170.5,195 Z M 170.5,196 C 172.9853,196 175,198.0147 175,200.5 175,202.9853 172.9853,205 170.5,205 168.0147,205 166,202.9853 166,200.5 166,198.0147 168.0147,196 170.5,196 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect style="fill:none" id="rect12554" width="16" height="16" x="165" y="707.3621" />
+<path inkscape:connector-curvature="0" id="path12558" d="m 170,712.3621 0,1 0,10 2,0 9,0 0,-2 0,-7 0,-2 -10,0 -1,0 z m 1,1 8.9687,0 0,9 -9,0 0.031,-9 z" style="fill:url(#linearGradient19282)" />
+<path transform="translate(0,512.3622)" id="path19448" d="M 170.5,195 C 167.4624,195 165,197.4624 165,200.5 165,203.5376 167.4624,206 170.5,206 173.5376,206 176,203.5376 176,200.5 176,197.4624 173.5376,195 170.5,195 Z M 170.5,196 C 172.9853,196 175,198.0147 175,200.5 175,202.9853 172.9853,205 170.5,205 168.0147,205 166,202.9853 166,200.5 166,198.0147 168.0147,196 170.5,196 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="path-break-apart" inkscape:label="#selection_break">
-<g transform="translate(0,20)" id="g19485" inkscape:label="#selection-combine">
-<g transform="translate(-0.0312042,19.99994)" id="g19487" inkscape:label="#cut-path">
-<rect y="687.3622" x="-181.0312" height="16" width="16" id="rect19489" style="fill:none;stroke:none" transform="scale(-1,1)" />
-<path sodipodi:nodetypes="cccccccscccccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 177,692.3622 177.0312,692.3622 177,693.3622 180,693.3622 180,702.3622 171,702.3622 171,699.3622 C 170.5175,699.4764 171.0485,699.3622 170.5312,699.3622 170.3601,699.3622 170.1989,699.3439 170.0312,699.3309 L 170.0312,703.3622 172.0312,703.3622 181.0312,703.3622 181.0312,701.3622 181.0312,694.3622 181.0312,692.3622 179.0312,692.3622 177,692.3622 Z" id="path19491" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19493" transform="translate(0,512.3622)" d="M 170,180 170,182 170,183 171,183 171,181 173,181 173,180 172,180 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<path inkscape:connector-curvature="0" transform="translate(0,512.3622)" id="path19495" d="M 170.5,195 C 167.4624,195 165,197.4624 165,200.5 165,203.5376 167.4624,206 170.5,206 173.5376,206 176,203.5376 176,200.5 176,197.4624 173.5376,195 170.5,195 Z M 170.5,196 C 172.9853,196 175,198.0147 175,200.5 175,202.9853 172.9853,205 170.5,205 168.0147,205 166,202.9853 166,200.5 166,198.0147 168.0147,196 170.5,196 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="727.3621" x="165" height="16" width="16" id="rect19489" style="fill:none" />
+<path sodipodi:nodetypes="cccccccscccccccccc" style="fill:url(#linearGradient19282)" d="m 176.9688,732.3621 0.031,0 -0.031,1 3,0 0,9 -9,0 0,-3 c -0.4825,0.1142 0.048,0 -0.4688,0 -0.1711,0 -0.3323,-0.018 -0.5,-0.031 l 0,4.0313 2,0 9,0 0,-2 0,-7 0,-2 -2,0 -2.0312,0 z" id="path19491" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19493" d="m 169.9688,732.3621 0,2 0,1 1,0 0,-2 2,0 0,-1 -1,0 z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 170.5,727.3622 c -3.0376,0 -5.5,2.4624 -5.5,5.5 0,3.0376 2.4624,5.5 5.5,5.5 3.0376,0 5.5,-2.4624 5.5,-5.5 0,-3.0376 -2.4624,-5.5 -5.5,-5.5 z m 0,1 c 2.4853,0 4.5,2.0147 4.5,4.5 0,2.4853 -2.0147,4.5 -4.5,4.5 -2.4853,0 -4.5,-2.0147 -4.5,-4.5 0,-2.4853 2.0147,-4.5 4.5,-4.5 z" id="path19495" inkscape:connector-curvature="0" />
</g>
+<g id="path-outset" inkscape:label="#outset_path">
+<rect y="747.3622" x="165" height="16" width="16" id="rect19563" style="opacity:0.3;fill:none" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19594" d="m 165,747.4247 0,1.9687 c 8,-0.031 14,5.9688 13.9687,13.9688 l 1.9063,0 c -0.875,-10 -5.875,-15 -15.875,-15.9375 z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path19605" d="m 168,754.3622 6,6 0,-6 z" style="fill:url(#linearGradient19282)" />
+<path id="path19607" d="m 165,756.3622 0,2 c 2.7614,0 5,2.2386 5,5 l 2,0 c 0,-3.866 -3.134,-7 -7,-7 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
-<g id="path-outset" inkscape:label="#goutset_path">
-<rect y="747.3622" x="165" height="16" width="16" id="rect19563" style="opacity:0.3;fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19594" d="M 165,747.4247 165,749.3934 C 173,749.3621 179,755.3622 178.9687,763.3622 L 180.875,763.3622 C 180,753.3622 175,748.3622 165,747.4247 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path19605" d="M 168,754.3622 174,760.3622 174,754.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path id="path19607" d="M 165,756.3622 165,758.3622 C 167.7614,758.3622 170,760.6008 170,763.3622 L 172,763.3622 C 172,759.4962 168.866,756.3622 165,756.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="g19722" inkscape:label="#inset_path">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 177,778.3622 171,772.3622 171,778.3622 Z" id="path19653" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<g inkscape:label="#g19704" id="object-inset">
<g id="path-inset" inkscape:label="#inset_path">
-<g transform="translate(0,20)" id="g19643" inkscape:label="#outset_path">
-<rect transform="translate(0,512.3622)" y="235" x="165" height="16" width="16" id="rect19645" style="opacity:0.3;fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19647" transform="translate(0,512.3622)" d="M 165,235.0625 165,237.0312 C 173,237 179,243 178.9687,251 L 180.875,251 C 180,241 175,236 165,235.0625 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path19651" transform="translate(0,512.3622)" d="M 165,244 165,246 C 167.7614,246 170,248.2386 170,251 L 172,251 C 172,247.134 168.866,244 165,244 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
+<rect style="opacity:0.3;fill:none" id="rect19645" width="16" height="16" x="165" y="767.3622" />
+<path style="fill:url(#linearGradient19282)" d="m 165,767.4247 0,1.9687 c 8,-0.031 14,5.9688 13.9687,13.9688 l 1.9063,0 c -0.875,-10 -5.875,-15 -15.875,-15.9375 z" id="path19647" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path style="fill:url(#linearGradient19282)" d="m 177,778.3622 -6,-6 0,6 z" id="path19653" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<path style="fill:url(#linearGradient19282)" d="m 165,776.3622 0,2 c 2.7614,0 5,2.2386 5,5 l 2,0 c 0,-3.866 -3.134,-7 -7,-7 z" id="path19651" inkscape:connector-curvature="0" />
</g>
<g id="path-offset-dynamic" inkscape:label="#dynamic-offset">
-<rect y="787.3622" x="165" height="16" width="16" id="rect19698" style="opacity:0.3;fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19700" d="M 165,787.4247 165,789.3934 C 173,789.3621 179,795.3622 178.9687,803.3622 L 180.875,803.3622 C 180,793.3622 175,788.3622 165,787.4247 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path transform="translate(0,512.3622)" id="path19751" d="M 165,279 165,281 C 170.5228,281 175,285.4771 175,291 L 177,291 C 177,284.3726 171.6274,279 165,279 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path transform="translate(0,512.3622)" id="path19763" d="M 165,283 165,285 C 168.1558,285 170.7294,287.6477 170.9687,291 L 172.9687,291 C 172.7252,286.5383 169.2603,283 165,283 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect y="787.3622" x="165" height="16" width="16" id="rect19698" style="opacity:0.3;fill:none" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path19700" d="M 165,787.4247 165,789.3934 C 173,789.3621 179,795.3622 178.9687,803.3622 L 180.875,803.3622 C 180,793.3622 175,788.3622 165,787.4247 Z" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<path transform="translate(0,512.3622)" id="path19751" d="M 165,279 165,281 C 170.5228,281 175,285.4771 175,291 L 177,291 C 177,284.3726 171.6274,279 165,279 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path transform="translate(0,512.3622)" id="path19763" d="M 165,283 165,285 C 168.1558,285 170.7294,287.6477 170.9687,291 L 172.9687,291 C 172.7252,286.5383 169.2603,283 165,283 Z" style="opacity:0.3;fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="path-offset-linked" inkscape:label="#linked-offset">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect19776" width="16" height="16" x="165" y="807.2997" />
-<path style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 165,807.3622 165,809.3309 C 173,809.2996 179,815.2997 178.9687,823.2997 L 180.875,823.2997 C 180,813.2997 175,808.2997 165,807.3622 Z" id="path19779" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 165,811.2997 165,813.2997 C 170.5228,813.2997 175,817.7768 175,823.2997 L 177,823.2997 C 177,816.6723 171.6274,811.2997 165,811.2997 Z" id="path19781" />
-<path inkscape:connector-curvature="0" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 165,815.2997 165,817.2997 C 168.1558,817.2997 170.7294,819.9474 170.9687,823.2997 L 172.9687,823.2997 C 172.7252,818.8379 169.2603,815.2997 165,815.2997 Z" id="path19783" />
-<rect transform="translate(0,512.3622)" y="297" x="174" height="5" width="5" id="rect19785" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="opacity:0.3;fill:none" id="rect19776" width="16" height="16" x="165" y="807.2997" />
+<path style="fill:url(#linearGradient19282)" d="M 165,807.3622 165,809.3309 C 173,809.2996 179,815.2997 178.9687,823.2997 L 180.875,823.2997 C 180,813.2997 175,808.2997 165,807.3622 Z" id="path19779" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" style="opacity:0.3;fill:url(#linearGradient19282)" d="M 165,811.2997 165,813.2997 C 170.5228,813.2997 175,817.7768 175,823.2997 L 177,823.2997 C 177,816.6723 171.6274,811.2997 165,811.2997 Z" id="path19781" />
+<path inkscape:connector-curvature="0" style="opacity:0.3;fill:url(#linearGradient19282)" d="M 165,815.2997 165,817.2997 C 168.1558,817.2997 170.7294,819.9474 170.9687,823.2997 L 172.9687,823.2997 C 172.7252,818.8379 169.2603,815.2997 165,815.2997 Z" id="path19783" />
+<rect transform="translate(0,512.3622)" y="297" x="174" height="5" width="5" id="rect19785" style="fill:url(#linearGradient19282)" />
</g>
<g id="path-simplify" inkscape:label="#simplify">
-<rect transform="translate(0,512.3622)" y="315" x="165" height="16" width="16" id="rect19858" style="fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<path inkscape:connector-curvature="0" id="path15542" d="M 170.4005,827.5184 C 169.155,827.3095 167.7715,827.8692 166.3279,829.4872 A 0.8197254,1.0001 0 1 0 167.4293,830.9559 C 168.6495,829.5883 169.4689,829.3653 170.1956,829.4872 170.9223,829.6091 171.6936,830.2188 172.5521,830.9872 173.4105,831.7555 174.3292,832.6579 175.5233,833.0809 176.7173,833.5039 178.165,833.3015 179.6471,832.0497 A 0.8278094,1.009963 0 0 0 178.6994,830.3934 C 177.5176,831.3916 176.7625,831.4503 175.9843,831.1747 175.2061,830.899 174.383,830.1527 173.4998,829.3622 172.6165,828.5716 171.646,827.7273 170.4005,827.5184 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" id="path10936-5" d="M 166.7846,840.3622 A 0.8213286,1.001098 0 1 0 166.8614,842.3622 L 179.1678,842.3622 A 0.8205098,1.0001 0 1 0 179.1678,840.3622 L 166.8614,840.3622 A 0.8205098,1.0001 0 0 0 166.7846,840.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" id="path15546" d="M 170,835.3622 175,835.3622 176,835.3622 173,838.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+<rect y="315" x="165" height="16" width="16" id="rect19858" style="fill:none;stroke-linecap:round;stroke-linejoin:round" transform="translate(0,512.3622)" />
+<path inkscape:connector-curvature="0" id="path15542" d="M 170.4005,827.5184 C 169.155,827.3095 167.7715,827.8692 166.3279,829.4872 A 0.8197254,1.0001 0 1 0 167.4293,830.9559 C 168.6495,829.5883 169.4689,829.3653 170.1956,829.4872 170.9223,829.6091 171.6936,830.2188 172.5521,830.9872 173.4105,831.7555 174.3292,832.6579 175.5233,833.0809 176.7173,833.5039 178.165,833.3015 179.6471,832.0497 A 0.8278094,1.009963 0 0 0 178.6994,830.3934 C 177.5176,831.3916 176.7625,831.4503 175.9843,831.1747 175.2061,830.899 174.383,830.1527 173.4998,829.3622 172.6165,828.5716 171.646,827.7273 170.4005,827.5184 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2" />
+<path inkscape:connector-curvature="0" id="path10936-5" d="M 166.7846,840.3622 A 0.8213286,1.001098 0 1 0 166.8614,842.3622 L 179.1678,842.3622 A 0.8205098,1.0001 0 1 0 179.1678,840.3622 L 166.8614,840.3622 A 0.8205098,1.0001 0 0 0 166.7846,840.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2" />
+<path inkscape:connector-curvature="0" id="path15546" d="M 170,835.3622 175,835.3622 176,835.3622 173,838.3622 Z" style="fill:url(#linearGradient19282);stroke-width:1px" />
</g>
-<use transform="translate(232.9721,654.828)" x="0" y="0" id="use5704" width="1250" height="1250" xlink:href="#rect4442" />
<g id="path-reverse" inkscape:label="#selection_reverse">
-<rect transform="translate(0,512.3622)" y="335" x="165" height="16" width="16" id="rect15611" style="fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 165,849.3622 165,851.3622 169,851.3622 169,853.3622 171.9883,850.3622 169,847.3622 169,849.3622 Z" id="path15627" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path15629" d="M 181,859.3622 181,861.3622 177,861.3622 177,863.3622 174.0117,860.3622 177,857.3622 177,859.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<path sodipodi:nodetypes="czc" inkscape:connector-curvature="0" id="path15631" d="M 165.4306,862.9318 C 165.4306,862.9318 168,855.3622 173,855.3622 178,855.3622 180.5317,847.7926 180.5317,847.7926" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.8608414px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" />
-<rect y="853.3622" x="171" height="4.000002" width="4" id="rect15633" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="335" x="165" height="16" width="16" id="rect15611" style="fill:none" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="M 165,849.3622 165,851.3622 169,851.3622 169,853.3622 171.9883,850.3622 169,847.3622 169,849.3622 Z" id="path15627" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path15629" d="M 181,859.3622 181,861.3622 177,861.3622 177,863.3622 174.0117,860.3622 177,857.3622 177,859.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<path sodipodi:nodetypes="czc" inkscape:connector-curvature="0" id="path15631" d="M 165.4306,862.9318 C 165.4306,862.9318 168,855.3622 173,855.3622 178,855.3622 180.5317,847.7926 180.5317,847.7926" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.8608414px;stroke-linecap:square" />
+<rect y="853.3622" x="171" height="4.000002" width="4" id="rect15633" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="pixelart-trace" transform="translate(165,867.3622)">
+<rect style="fill:none" id="rect36770" width="16" height="16" x="0" y="0" />
+<g id="g36772" style="fill:url(#linearGradient19282)">
+<path inkscape:connector-curvature="0" d="M 1,1 1,2 2,2 2,3 3,3 3,2 3,1 2,1 1,1 Z M 3,3 3,4 4,4 4,3 3,3 Z M 4,3 5,3 5,2 4,2 4,3 Z M 5,2 6,2 7,2 8,2 9,2 10,2 10,1 9,1 8,1 7,1 6,1 5,1 5,2 Z m 5,0 0,1 1,0 1,0 1,0 0,-1 1,0 0,-1 -1,0 -1,0 -1,0 0,1 -1,0 z M 3,4 2,4 2,5 2,6 3,6 3,5 3,4 Z M 2,6 1,6 1,7 1,8 2,8 2,7 2,6 Z M 2,8 2,9 3,9 3,8 2,8 Z m 0,1 -1,0 0,1 0,1 1,0 0,-1 0,-1 z m 0,2 0,1 1,0 0,-1 -1,0 z m 1,1 0,1 1,0 0,-1 -1,0 z m 1,1 0,1 1,0 0,-1 -1,0 z m 1,1 0,1 1,0 0,1 1,0 0,-1 0,-1 -1,0 -1,0 z m 7,-10 0,1 1,0 0,-1 -1,0 z m 1,1 0,1 0,1 0,1 0,1 1,0 0,-1 0,-1 0,-1 0,-1 -1,0 z m 1,4 0,1 0,1 1,0 0,-1 0,-1 -1,0 z m 0,2 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 -1,0 0,1 0,1 1,0 0,-1 1,0 0,-1 z M 5,5 5,6 6,6 6,5 5,5 Z M 5,6 4,6 4,7 5,7 5,6 Z M 5,7 5,8 6,8 6,7 5,7 Z m 4,-2 0,1 1,0 1,0 0,-1 -1,0 -1,0 z m 2,1 0,1 1,0 0,-1 -1,0 z m 0,1 -1,0 -1,0 0,1 1,0 1,0 0,-1 z M 9,7 9,6 8,6 8,7 9,7 Z" id="path36774" />
+<path inkscape:connector-curvature="0" style="opacity:0.5" d="m 6,9 0,1 1,0 0,-1 -1,0 z m 1,1 0,1 1,0 0,-1 -1,0 z m 1,1 0,1 1,0 0,-1 -1,0 z m 1,0 1,0 0,-1 -1,0 0,1 z m -3,-1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z" id="path36776" />
+</g>
</g>
<g id="dialog-text-and-font" inkscape:label="#object_font">
-<g inkscape:label="stock-tool-text" id="g74847" style="display:inline" transform="translate(113.9998,330.3622)">
-<rect style="fill:none;stroke:none" id="rect74840" width="16" height="16" x="81.0002" y="197" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M -153,-16 -153,-12.5 -153,-8 -154,-6 -153,-6 -150,-6 -151,-8 -151,-10 -151,-12.5 -151,-16 -149.75,-16 -148,-16 -146,-15 -146,-16 -146,-18 -158,-18 -158,-16 -158,-15 -156,-16 -154.25,-16 Z" transform="translate(241.0002,217)" id="path74842" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccc" />
+<g inkscape:label="stock-tool-text" id="g74847" transform="translate(113.9998,330.3622)">
+<rect style="fill:none" id="rect74840" width="16" height="16" x="81.0002" y="197" />
+<path style="fill:url(#linearGradient19282)" d="M -153,-16 -153,-12.5 -153,-8 -154,-6 -153,-6 -150,-6 -151,-8 -151,-10 -151,-12.5 -151,-16 -149.75,-16 -148,-16 -146,-15 -146,-16 -146,-18 -158,-18 -158,-16 -158,-15 -156,-16 -154.25,-16 Z" transform="translate(241.0002,217)" id="path74842" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccc" />
</g>
</g>
<g id="text-remove-from-path" inkscape:label="#remove_from_path">
-<rect y="547.3622" x="195" height="16" width="16" id="rect7066" style="opacity:0.3;fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" id="path7106" d="M 204.0625,547.4114 C 204.0625,552.4306 204.0632,549.9701 204.0938,552.8702 L 204.0938,553.2995 204.5625,553.2995 206.8438,553.2995 C 208.5247,553.3669 208.4489,549.2513 206.8125,549.3741 206.8008,549.375 206.793,549.3731 206.7812,549.3741 L 205.0625,549.3741 205.0625,547.4114 204.0625,547.4114 Z M 205,550.2635 206.8125,550.2635 206.8438,550.2635 206.8751,550.2635 C 207.2429,550.2259 207.3097,552.4276 206.8751,552.4102 L 206.8438,552.4102 205,552.4102 C 204.994,551.9435 205.004,550.4077 205,550.2635 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path7104" d="M 199.0625,548.3148 199.0625,549.1872 200.8125,549.1872 C 200.9393,549.2002 201.0097,549.2486 201.0625,549.3118 201.1116,549.3706 201.1805,549.4979 201.1875,549.6856 201.188,549.6998 201.1875,549.7015 201.1875,549.7168 L 201.1875,550.4022 199.3437,550.4022 199.3125,550.4022 C 197.7019,550.2857 197.6253,553.3647 199.2812,553.2996 L 201.5937,553.2996 202.0312,553.2996 202.0312,552.8634 202.0625,549.7168 C 202.0625,549.3475 201.9603,549.003 201.75,548.7511 201.5396,548.4991 201.2208,548.3469 200.9062,548.3149 L 200.8749,548.3149 199.0624,548.3149 Z M 199.25,551.2745 199.2813,551.2745 199.3126,551.2745 201.1563,551.2745 201.125,552.4272 199.2813,552.4272 199.25,552.4272 C 198.782,552.4456 198.8486,551.2343 199.25,551.2745 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path23199" d="M 203,554.3622 C 198.7586,554.3622 195.3023,557.4501 195.0312,561.3622 L 196.0312,561.3622 C 196.3105,558.0099 199.3182,555.3622 203,555.3622 206.6818,555.3622 209.6895,558.0099 209.9687,561.3622 L 210.9687,561.3622 C 210.6977,557.4501 207.2414,554.3622 203,554.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path28750" d="M 200,558.3777 201.7143,558.3777 206,563.3623 204.2857,563.3623 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 206,558.3777 204.2717,558.3777 199.9508,563.4114 201.6791,563.4114 Z" id="path28752" inkscape:connector-curvature="0" />
+<rect y="547.3622" x="195" height="16" width="16" id="rect7066" style="opacity:0.3;fill:none" />
+<path inkscape:connector-curvature="0" id="path7106" d="M 204.0625,547.4114 C 204.0625,552.4306 204.0632,549.9701 204.0938,552.8702 L 204.0938,553.2995 204.5625,553.2995 206.8438,553.2995 C 208.5247,553.3669 208.4489,549.2513 206.8125,549.3741 206.8008,549.375 206.793,549.3731 206.7812,549.3741 L 205.0625,549.3741 205.0625,547.4114 204.0625,547.4114 Z M 205,550.2635 206.8125,550.2635 206.8438,550.2635 206.8751,550.2635 C 207.2429,550.2259 207.3097,552.4276 206.8751,552.4102 L 206.8438,552.4102 205,552.4102 C 204.994,551.9435 205.004,550.4077 205,550.2635 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path7104" d="M 199.0625,548.3148 199.0625,549.1872 200.8125,549.1872 C 200.9393,549.2002 201.0097,549.2486 201.0625,549.3118 201.1116,549.3706 201.1805,549.4979 201.1875,549.6856 201.188,549.6998 201.1875,549.7015 201.1875,549.7168 L 201.1875,550.4022 199.3437,550.4022 199.3125,550.4022 C 197.7019,550.2857 197.6253,553.3647 199.2812,553.2996 L 201.5937,553.2996 202.0312,553.2996 202.0312,552.8634 202.0625,549.7168 C 202.0625,549.3475 201.9603,549.003 201.75,548.7511 201.5396,548.4991 201.2208,548.3469 200.9062,548.3149 L 200.8749,548.3149 199.0624,548.3149 Z M 199.25,551.2745 199.2813,551.2745 199.3126,551.2745 201.1563,551.2745 201.125,552.4272 199.2813,552.4272 199.25,552.4272 C 198.782,552.4456 198.8486,551.2343 199.25,551.2745 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path23199" d="M 203,554.3622 C 198.7586,554.3622 195.3023,557.4501 195.0312,561.3622 L 196.0312,561.3622 C 196.3105,558.0099 199.3182,555.3622 203,555.3622 206.6818,555.3622 209.6895,558.0099 209.9687,561.3622 L 210.9687,561.3622 C 210.6977,557.4501 207.2414,554.3622 203,554.3622 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path28750" d="M 200,558.3777 201.7143,558.3777 206,563.3623 204.2857,563.3623 Z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 206,558.3777 204.2717,558.3777 199.9508,563.4114 201.6791,563.4114 Z" id="path28752" inkscape:connector-curvature="0" />
</g>
<g id="text-put-on-path" inkscape:label="#put_on_path">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect28783" width="16" height="16" x="194.9375" y="567.4095" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 204,568.4587 C 204,573.4779 204.0007,571.0175 204.0313,573.9175 L 204.0313,574.3469 204.5,574.3469 206.7813,574.3469 C 208.4622,574.4143 208.3864,570.2986 206.75,570.4214 206.7383,570.4223 206.7305,570.4204 206.7187,570.4214 L 205,570.4214 205,568.4587 204,568.4587 Z M 204.9375,571.3108 206.75,571.3108 206.7813,571.3108 206.8126,571.3108 C 207.1804,571.2733 207.2472,573.475 206.8126,573.4575 L 206.7813,573.4575 204.9375,573.4575 C 204.9315,572.9908 204.9415,571.455 204.9375,571.3108 Z" id="path28785" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 199,569.3622 199,570.2345 200.75,570.2345 C 200.8768,570.2475 200.9472,570.2959 201,570.3591 201.0491,570.4179 201.118,570.5452 201.125,570.733 201.1255,570.7472 201.125,570.7489 201.125,570.7642 L 201.125,571.4496 199.2812,571.4496 199.25,571.4496 C 197.6394,571.333 197.5628,574.412 199.2187,574.3469 L 201.5312,574.3469 201.9687,574.3469 201.9687,573.9107 202,570.7642 C 202,570.3948 201.8978,570.0504 201.6875,569.7984 201.4771,569.5464 201.1583,569.3942 200.8437,569.3622 L 200.8124,569.3622 198.9999,569.3622 Z M 199.1875,572.3218 199.2188,572.3218 199.2501,572.3218 201.0938,572.3218 201.0625,573.4745 199.2188,573.4745 199.1875,573.4745 C 198.7195,573.4929 198.7861,572.2816 199.1875,572.3218 Z" id="path28787" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 202.9375,576.4095 C 198.6961,576.4095 195.2398,579.4974 194.9687,583.4095 L 195.9687,583.4095 C 196.248,580.0572 199.2557,577.4095 202.9375,577.4095 206.6193,577.4095 209.627,580.0572 209.9062,583.4095 L 210.9062,583.4095 C 210.6352,579.4974 207.1789,576.4095 202.9375,576.4095 Z" id="path28789" inkscape:connector-curvature="0" />
+<rect style="opacity:0.3;fill:none" id="rect28783" width="16" height="16" x="194.9375" y="567.4095" />
+<path style="fill:url(#linearGradient19282)" d="M 204,568.4587 C 204,573.4779 204.0007,571.0175 204.0313,573.9175 L 204.0313,574.3469 204.5,574.3469 206.7813,574.3469 C 208.4622,574.4143 208.3864,570.2986 206.75,570.4214 206.7383,570.4223 206.7305,570.4204 206.7187,570.4214 L 205,570.4214 205,568.4587 204,568.4587 Z M 204.9375,571.3108 206.75,571.3108 206.7813,571.3108 206.8126,571.3108 C 207.1804,571.2733 207.2472,573.475 206.8126,573.4575 L 206.7813,573.4575 204.9375,573.4575 C 204.9315,572.9908 204.9415,571.455 204.9375,571.3108 Z" id="path28785" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 199,569.3622 199,570.2345 200.75,570.2345 C 200.8768,570.2475 200.9472,570.2959 201,570.3591 201.0491,570.4179 201.118,570.5452 201.125,570.733 201.1255,570.7472 201.125,570.7489 201.125,570.7642 L 201.125,571.4496 199.2812,571.4496 199.25,571.4496 C 197.6394,571.333 197.5628,574.412 199.2187,574.3469 L 201.5312,574.3469 201.9687,574.3469 201.9687,573.9107 202,570.7642 C 202,570.3948 201.8978,570.0504 201.6875,569.7984 201.4771,569.5464 201.1583,569.3942 200.8437,569.3622 L 200.8124,569.3622 198.9999,569.3622 Z M 199.1875,572.3218 199.2188,572.3218 199.2501,572.3218 201.0938,572.3218 201.0625,573.4745 199.2188,573.4745 199.1875,573.4745 C 198.7195,573.4929 198.7861,572.2816 199.1875,572.3218 Z" id="path28787" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 202.9375,576.4095 C 198.6961,576.4095 195.2398,579.4974 194.9687,583.4095 L 195.9687,583.4095 C 196.248,580.0572 199.2557,577.4095 202.9375,577.4095 206.6193,577.4095 209.627,580.0572 209.9062,583.4095 L 210.9062,583.4095 C 210.6352,579.4974 207.1789,576.4095 202.9375,576.4095 Z" id="path28789" inkscape:connector-curvature="0" />
</g>
<g id="text-flow-into-frame" inkscape:label="flow_into_frame">
-<rect transform="translate(0,512.3622)" y="75" x="195" height="16" width="16" id="rect11841" style="fill:none;stroke:none" />
-<path id="rect12613" transform="translate(0,512.3622)" d="M 195,75 195,91 211,91 211,75 195,75 Z M 196,76 210,76 210,90 196,90 196,76 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path12635" d="M 197,589.3622 197,592.3622 198,591.3622 200,591.3622 200,596.3622 199,597.3622 203,597.3622 202,596.3622 202,591.3622 204,591.3622 205,592.3622 205,589.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path12649" d="M 205,594.3622 207,594.3622 207,598.3622 209,598.3622 206,601.3505 203,598.3622 205,598.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
+<rect transform="translate(0,512.3622)" y="75" x="195" height="16" width="16" id="rect11841" style="fill:none" />
+<path id="rect12613" transform="translate(0,512.3622)" d="M 195,75 195,91 211,91 211,75 195,75 Z M 196,76 210,76 210,90 196,90 196,76 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path12635" d="M 197,589.3622 197,592.3622 198,591.3622 200,591.3622 200,596.3622 199,597.3622 203,597.3622 202,596.3622 202,591.3622 204,591.3622 205,592.3622 205,589.3622 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path12649" d="M 205,594.3622 207,594.3622 207,598.3622 209,598.3622 206,601.3505 203,598.3622 205,598.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
</g>
<g id="text-unflow" inkscape:label="#unflow">
-<rect style="fill:none;stroke:none" id="rect12684" width="16" height="16" x="195" y="607.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 197,609.3622 197,612.3622 198,611.3622 200,611.3622 200,617.3622 199,618.3622 203,618.3622 202,617.3622 202,611.3622 204,611.3622 205,612.3622 205,609.3622 Z" id="path12688" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
-<rect y="607.3622" x="195" height="1" width="1" id="rect12692" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="197" height="1" width="1" id="rect12694" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="199" height="1" width="1" id="rect12696" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="201" height="1" width="1" id="rect12698" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="203" height="0.9999974" width="1" id="rect12700" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="205" height="0.9999974" width="1" id="rect12704" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="611.3622" x="195" height="0.9999974" width="1" id="rect12706" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="613.3622" x="195" height="1" width="1" id="rect12710" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="615.3622" x="195" height="1" width="1" id="rect12712" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="617.3622" x="195" height="1" width="1" id="rect12714" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="619.3622" x="195" height="1" width="1" id="rect12716" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="621.3622" x="195" height="0.9999974" width="1" id="rect12718" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="609.3622" x="195" height="0.9999974" width="1" id="rect12720" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="209" height="0.9999974" width="1" id="rect12722" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="607.3622" x="207" height="0.9999974" width="1" id="rect12724" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12726" width="1" height="1" x="197" y="621.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12728" width="1" height="1" x="199" y="621.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12730" width="1" height="1" x="201" y="621.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12732" width="1" height="1" x="203" y="621.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12742" width="1" height="0.9999974" x="209" y="611.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12744" width="1" height="1" x="209" y="613.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12746" width="1" height="1" x="209" y="615.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect12750" width="1" height="0.9999974" x="209" y="609.3622" />
-<path inkscape:connector-curvature="0" id="path18300" d="M 205,618.3622 207,618.3622 211,623.3622 209,623.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 211,618.3622 209,618.3622 205,623.3622 207,623.3622 Z" id="path18302" inkscape:connector-curvature="0" />
-</g>
-<g id="g18503" inkscape:label="#remove_manual_kerns" transform="translate(0,20)">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 205,638.3622 207,638.3622 211,643.3622 209,643.3622 Z" id="path18430" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path18432" d="M 211,638.3622 209,638.3622 205,643.3622 207,643.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<g inkscape:label="#remove_manual_kerns" id="text-unkern">
-<rect y="627.3622" x="195" height="16" width="16" id="rect18414" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path18418" d="M 196,628.3622 196,631.3622 197,630.3622 199,630.3622 199,635.3622 198,636.3622 202,636.3622 201,635.3622 201,630.3622 203,630.3622 204,631.3622 204,628.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18422" width="1" height="8.000003" x="196" y="633.3622" />
-<rect y="633.3622" x="203" height="8.000003" width="1" id="rect18427" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18436" width="4" height="1" x="198" y="128" transform="translate(0,512.3622)" />
-</g>
+<rect style="fill:none" id="rect12684" width="16" height="16" x="195" y="607.3622" />
+<path style="fill:url(#linearGradient19282)" d="M 197,609.3622 197,612.3622 198,611.3622 200,611.3622 200,617.3622 199,618.3622 203,618.3622 202,617.3622 202,611.3622 204,611.3622 205,612.3622 205,609.3622 Z" id="path12688" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+<rect y="607.3622" x="195" height="1" width="1" id="rect12692" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="197" height="1" width="1" id="rect12694" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="199" height="1" width="1" id="rect12696" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="201" height="1" width="1" id="rect12698" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="203" height="0.9999974" width="1" id="rect12700" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="205" height="0.9999974" width="1" id="rect12704" style="fill:url(#linearGradient19282)" />
+<rect y="611.3622" x="195" height="0.9999974" width="1" id="rect12706" style="fill:url(#linearGradient19282)" />
+<rect y="613.3622" x="195" height="1" width="1" id="rect12710" style="fill:url(#linearGradient19282)" />
+<rect y="615.3622" x="195" height="1" width="1" id="rect12712" style="fill:url(#linearGradient19282)" />
+<rect y="617.3622" x="195" height="1" width="1" id="rect12714" style="fill:url(#linearGradient19282)" />
+<rect y="619.3622" x="195" height="1" width="1" id="rect12716" style="fill:url(#linearGradient19282)" />
+<rect y="621.3622" x="195" height="0.9999974" width="1" id="rect12718" style="fill:url(#linearGradient19282)" />
+<rect y="609.3622" x="195" height="0.9999974" width="1" id="rect12720" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="209" height="0.9999974" width="1" id="rect12722" style="fill:url(#linearGradient19282)" />
+<rect y="607.3622" x="207" height="0.9999974" width="1" id="rect12724" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect12726" width="1" height="1" x="197" y="621.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12728" width="1" height="1" x="199" y="621.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12730" width="1" height="1" x="201" y="621.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12732" width="1" height="1" x="203" y="621.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12742" width="1" height="0.9999974" x="209" y="611.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12744" width="1" height="1" x="209" y="613.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12746" width="1" height="1" x="209" y="615.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect12750" width="1" height="0.9999974" x="209" y="609.3622" />
+<path inkscape:connector-curvature="0" id="path18300" d="M 205,618.3622 207,618.3622 211,623.3622 209,623.3622 Z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 211,618.3622 209,618.3622 205,623.3622 207,623.3622 Z" id="path18302" inkscape:connector-curvature="0" />
</g>
<g id="text-convert-to-regular" inkscape:label="#convert_to_text">
-<rect transform="translate(0,512.3622)" y="115" x="195" height="16" width="16" id="rect18513" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path18534" d="M 197,629.3622 197,631.3622 198,630.3622 199,630.3622 199,633.3622 198,634.3622 201,634.3622 200,633.3622 200,630.3622 201,630.3622 202,631.3622 202,629.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path id="rect18536" transform="translate(0,512.3622)" d="M 195,115 195,124 204,124 204,115 195,115 Z M 196,116 203,116 203,123 196,123 196,116 Z" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 204,636.3622 204,638.3622 205,637.3622 206,637.3622 206,640.3622 205,641.3622 208,641.3622 207,640.3622 207,637.3622 208,637.3622 209,638.3622 209,636.3622 Z" id="path18541" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
-<rect y="634.3622" x="206" height="1" width="1" id="rect18543" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="634.3622" x="208" height="1" width="1" id="rect18545" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="122" x="210" height="1" width="1" id="rect18548" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="124" x="210" height="1" width="1" id="rect18550" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="126" x="210" height="1" width="1" id="rect18552" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="128" x="210" height="1" width="1" id="rect18554" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="130" x="210" height="1" width="1" id="rect18556" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="130" x="208" height="1" width="1" id="rect18558" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="130" x="206" height="1" width="1" id="rect18560" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="130" x="204" height="1" width="1" id="rect18562" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="130" x="202" height="1" width="1" id="rect18564" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="128" x="202" height="1" width="1" id="rect18566" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="126" x="202" height="1" width="1" id="rect18568" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="help-keyborad-shortcuts" inkscape:label="#help-keys">
-<rect y="527.3622" x="225" height="16" width="16" id="rect18842" style="fill:none;fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="115" x="195" height="16" width="16" id="rect18513" style="opacity:0.3;fill:none" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path18534" d="M 197,629.3622 197,631.3622 198,630.3622 199,630.3622 199,633.3622 198,634.3622 201,634.3622 200,633.3622 200,630.3622 201,630.3622 202,631.3622 202,629.3622 Z" style="fill:url(#linearGradient19282)" />
+<path id="rect18536" transform="translate(0,512.3622)" d="M 195,115 195,124 204,124 204,115 195,115 Z M 196,116 203,116 203,123 196,123 196,116 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 204,636.3622 204,638.3622 205,637.3622 206,637.3622 206,640.3622 205,641.3622 208,641.3622 207,640.3622 207,637.3622 208,637.3622 209,638.3622 209,636.3622 Z" id="path18541" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+<rect y="634.3622" x="206" height="1" width="1" id="rect18543" style="fill:url(#linearGradient19282)" />
+<rect y="634.3622" x="208" height="1" width="1" id="rect18545" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="122" x="210" height="1" width="1" id="rect18548" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="124" x="210" height="1" width="1" id="rect18550" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="126" x="210" height="1" width="1" id="rect18552" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="128" x="210" height="1" width="1" id="rect18554" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="130" x="210" height="1" width="1" id="rect18556" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="130" x="208" height="1" width="1" id="rect18558" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="130" x="206" height="1" width="1" id="rect18560" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="130" x="204" height="1" width="1" id="rect18562" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="130" x="202" height="1" width="1" id="rect18564" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="128" x="202" height="1" width="1" id="rect18566" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="126" x="202" height="1" width="1" id="rect18568" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="text-unkern" inkscape:label="#remove_manual_kerns" transform="translate(0,20)">
+<rect style="fill:none" id="rect18414" width="16" height="16" x="195" y="627.3622" />
+<path style="fill:url(#linearGradient19282)" d="m 196,628.3622 0,3 1,-1 2,0 0,5 -1,1 4,0 -1,-1 0,-5 2,0 1,1 0,-3 z" id="path18418" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+<rect y="633.3622" x="196" height="8.000003" width="1" id="rect18422" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect18427" width="1" height="8.000003" x="203" y="633.3622" />
+<rect y="640.3622" x="198" height="1" width="4" id="rect18436" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 211,638.3622 -2,0 -4,5 2,0 z" id="path18432" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path18430" d="m 205,638.3622 2,0 4,5 -2,0 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="dialog-filters" transform="translate(195,707.3622)">
+<title id="title44223">stock-reshow-filter</title>
+<rect style="fill:none" id="rect44225" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" d="M 8,1 C 7.77935,1 7.55919,1.0113 7.34375,1.0312 L 6.9375,3.12495 C 6.60304,3.19825 6.27445,3.30084 5.96875,3.43745 L 4.4375,1.9687 C 4.04887,2.19881 3.71055,2.48278 3.375,2.7812 L 4.28125,4.68745 C 4.05883,4.93644 3.857,5.20995 3.6875,5.49995 L 1.59375,5.2187 C 1.41603,5.62747 1.28503,6.05507 1.1875,6.49995 l 1.84375,1 C 3.01415,7.66809 3,7.8274 3,8 L 5,8 C 5,6.34315 6.34315,5 8,5 c 1.65685,0 3,1.34315 3,3 l 2,0 C 13,7.8274 12.9857,7.66809 12.9688,7.5 l 1.84375,-1 C 14.715,6.05512 14.58397,5.62752 14.40625,5.21875 L 12.3125,5.5 C 12.143,5.21 11.94117,4.93649 11.71875,4.6875 L 12.625,2.78125 C 12.28945,2.48283 11.95113,2.19886 11.5625,1.96875 L 10.03125,3.4375 C 9.72555,3.30089 9.39696,3.19834 9.0625,3.125 L 8.65625,1.03125 C 8.44081,1.01125 8.22065,1 8,1 Z" id="path44227" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="m 1,9 0,7 14,0 0,-7 -14,0 z m 3,1 1,0 0,5 -1,0 0,-4 -1,1 0,-1 1,-1 z m 3.5,0 C 8.331,10 9,10.669 9,11.5 l 0,2 C 9,14.331 8.331,15 7.5,15 6.669,15 6,14.331 6,13.5 l 0,-2 C 6,10.669 6.669,10 7.5,10 Z m 4.5,0 2,2 -4,0 2,-2 z M 7.5,11 C 7.223,11 7,11.223 7,11.5 l 0,2 C 7,13.777 7.223,14 7.5,14 7.777,14 8,13.777 8,13.5 l 0,-2 C 8,11.223 7.777,11 7.5,11 Z m 2.5,2 4,0 -2,2 -2,-2 z" id="path44229" inkscape:connector-curvature="0" />
+</g>
+<g id="help-keyboard-shortcuts" inkscape:label="#help-keys">
+<rect y="527.3622" x="225" height="16" width="16" id="rect18842" style="fill:none" />
<g transform="matrix(-0.00733,-0.997771,0.9999731,-0.0073138,-315.6033,868.5894)" id="g12753">
-<path inkscape:connector-curvature="0" id="path3940-4" d="M 329.5002,548.0094 C 328.1398,548.0094 327.0057,546.8845 327.0057,545.5 327.0057,544.1155 328.1398,542.9906 329.5002,542.9906 330.8606,542.9906 331.9947,544.1155 331.9947,545.5 331.9947,546.8845 330.8606,548.0094 329.5002,548.0094 Z M 329.5002,546.562 C 330.1123,546.562 330.5772,546.0879 330.5772,545.5 330.5772,544.9121 330.1123,544.438 329.5002,544.438 328.8881,544.438 328.4232,544.9121 328.4232,545.5 328.4232,546.0879 328.8881,546.562 329.5002,546.562 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:4.7997398;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" id="path3942-0" d="M 335.4927,548.0109 C 334.1372,548.0109 333.0072,546.8853 333.0072,545.5 333.0072,544.1147 334.1372,542.9891 335.4927,542.9891 336.8483,542.9891 337.9783,544.1147 337.9783,545.5 337.9783,546.8853 336.8483,548.0109 335.4927,548.0109 Z M 335.4927,546.5627 C 336.1026,546.5627 336.5658,546.0883 336.5658,545.5 336.5658,544.9117 336.1026,544.4373 335.4927,544.4373 334.8829,544.4373 334.4196,544.9117 334.4196,545.5 334.4196,546.0883 334.8829,546.5627 335.4927,546.5627 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:4.7997398;marker:none;enable-background:accumulate" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 329.1262,554 C 328.3982,553.6191 328.1606,552.7905 328.5809,552.1308 L 331.6156,547.1247 330.4167,545.4966 331.3875,544.063 332.4928,545.7711 333.5766,544.063 334.5384,545.4359 333.3699,547.1247 336.4046,552.1308 C 336.8249,552.7905 336.5873,553.6191 335.8593,554 L 332.4928,548.4997 329.1262,554 Z" id="rect4875-9" />
-</g>
-<rect transform="translate(0,512.3622)" y="20" x="235" height="1" width="2" id="rect24427" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="532.3622" x="238" height="1" width="2" id="rect24429" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="534.3622" x="239" height="2" width="1" id="rect24431" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="537.3622" x="239" height="2" width="1" id="rect24433" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="540.3622" x="238" height="1" width="2" id="rect24437" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24439" width="2" height="1" x="235" y="540.3622" />
-<rect y="540.3622" x="232" height="1" width="2" id="rect24441" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24443" width="2" height="1" x="229" y="540.3622" />
-<rect y="540.3622" x="226" height="1" width="2" id="rect24445" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<path inkscape:connector-curvature="0" id="path3940-4" d="m 329.5002,548.0094 c -1.3604,0 -2.4945,-1.1249 -2.4945,-2.5094 0,-1.3845 1.1341,-2.5094 2.4945,-2.5094 1.3604,0 2.4945,1.1249 2.4945,2.5094 0,1.3845 -1.1341,2.5094 -2.4945,2.5094 z m 0,-1.4474 c 0.6121,0 1.077,-0.4741 1.077,-1.062 0,-0.5879 -0.4649,-1.062 -1.077,-1.062 -0.6121,0 -1.077,0.4741 -1.077,1.062 0,0.5879 0.4649,1.062 1.077,1.062 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:4.7997398" />
+<path inkscape:connector-curvature="0" id="path3942-0" d="m 335.4927,548.0109 c -1.3555,0 -2.4855,-1.1256 -2.4855,-2.5109 0,-1.3853 1.13,-2.5109 2.4855,-2.5109 1.3556,0 2.4856,1.1256 2.4856,2.5109 0,1.3853 -1.13,2.5109 -2.4856,2.5109 z m 0,-1.4482 c 0.6099,0 1.0731,-0.4744 1.0731,-1.0627 0,-0.5883 -0.4632,-1.0627 -1.0731,-1.0627 -0.6098,0 -1.0731,0.4744 -1.0731,1.0627 0,0.5883 0.4633,1.0627 1.0731,1.0627 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:4.7997398" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 329.1262,554 c -0.728,-0.3809 -0.9656,-1.2095 -0.5453,-1.8692 l 3.0347,-5.0061 -1.1989,-1.6281 0.9708,-1.4336 1.1053,1.7081 1.0838,-1.7081 0.9618,1.3729 -1.1685,1.6888 3.0347,5.0061 c 0.4203,0.6597 0.1827,1.4883 -0.5453,1.8692 l -3.3665,-5.5003 -3.3666,5.5003 z" id="rect4875-9" />
+</g>
+<rect transform="translate(0,512.3622)" y="20" x="235" height="1" width="2" id="rect24427" style="fill:url(#linearGradient19282)" />
+<rect y="532.3622" x="238" height="1" width="2" id="rect24429" style="fill:url(#linearGradient19282)" />
+<rect y="534.3622" x="239" height="2" width="1" id="rect24431" style="fill:url(#linearGradient19282)" />
+<rect y="537.3622" x="239" height="2" width="1" id="rect24433" style="fill:url(#linearGradient19282)" />
+<rect y="540.3622" x="238" height="1" width="2" id="rect24437" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24439" width="2" height="1" x="235" y="540.3622" />
+<rect y="540.3622" x="232" height="1" width="2" id="rect24441" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24443" width="2" height="1" x="229" y="540.3622" />
+<rect y="540.3622" x="226" height="1" width="2" id="rect24445" style="fill:url(#linearGradient19282)" />
</g>
<g id="help-contents" inkscape:label="#help_tutorials">
-<g inkscape:label="fedora-release-notes" id="g6848" style="display:inline" transform="translate(-58.0002,352.3615)">
-<rect style="fill:none;stroke:none" id="rect5524" width="16" height="16" x="283.0002" y="195.0007" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.9999998;marker:none;enable-background:new" d="M 286.5627,196.0007 C 285.7058,196.0007 285.0002,196.7063 285.0002,197.5632 L 285.0002,207.4069 C 285.0002,209.0152 286.487,209.9352 287.3439,209.9382 L 297.0002,209.9694 297.0002,200.0006 287.5627,199.9694 C 285.6092,200.0006 285.3425,197.0319 287.5783,197.0007 L 297.0002,197.0007 C 297.0002,197.0007 297.1252,195.9695 296.0002,196.0007 Z" id="path6822" inkscape:connector-curvature="0" sodipodi:nodetypes="ssscccccccs" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999998;marker:none;enable-background:new" d="M 286.0002,200.0007 296.0002,200.0007 C 294.6481,199.4693 294.7428,197.5681 296.0002,197.0007 L 286.0002,197.0007 Z" id="path6826" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<g style="display:inline;enable-background:new" transform="matrix(0.0153969,0,0,0.0153974,285.147,200.9978)" id="g2912-64">
-<g transform="matrix(1.048788,0,0,1.048788,185.121,0)" id="g2440-5" style="fill:#3c6eb4;fill-opacity:1" />
-</g>
-</g>
+<g inkscape:label="fedora-release-notes" id="g6848" transform="translate(-58.0002,352.3615)">
+<rect style="fill:none" id="rect5524" width="16" height="16" x="283.0002" y="195.0007" />
+<path style="color:#000000;opacity:0.3;fill:url(#linearGradient19282);stroke-width:0.9999998" d="M 286.0002,200.0007 296.0002,200.0007 C 294.6481,199.4693 294.7428,197.5681 296.0002,197.0007 L 286.0002,197.0007 Z" id="path6826" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.9999998" d="M 286.5627,196.0007 C 285.7058,196.0007 285.0002,196.7063 285.0002,197.5632 L 285.0002,207.4069 C 285.0002,209.0152 286.487,209.9352 287.3439,209.9382 L 297.0002,209.9694 297.0002,200.0006 287.5627,199.9694 C 285.6092,200.0006 285.3425,197.0319 287.5783,197.0007 L 297.0002,197.0007 C 297.0002,197.0007 297.1252,195.9695 296.0002,196.0007 Z" id="path6822" inkscape:connector-curvature="0" sodipodi:nodetypes="ssscccccccs" />
</g>
-<g id="inkscape-logo" inkscape:label="#g37118">
-<g transform="translate(-115.9014,24.37132)" inkscape:label="inkscape" id="g13277-6" style="display:inline">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 348.9984,543 C 348.5422,543 348.0983,543.1737 347.7487,543.5344 L 341.5358,549.9476 C 341.1932,550.3012 341.0071,550.7688 341.0003,551.2302 341.0002,551.2372 341.0003,551.2581 341.0003,551.2658 341.0002,552.6387 344.6908,551.2873 345.0223,552.9658 345.2017,553.8743 343.0002,553.4808 343.0002,554.3948 343.0002,555.467 346.0942,554.7115 346.9781,555.5954 347.3412,556.4793 345.7924,556.3467 346.0671,557.168 346.5849,557.7023 347.7485,557.4067 347.9722,558.2691 348.2278,559.2543 349.9129,559.081 350.8897,558.3595 351.4075,557.8253 350.084,557.5647 350.6017,557.0305 351.1195,556.4962 353.6931,556.6019 353.7116,555.4344 353.4672,554.7009 352.5021,554.601 352.4874,553.7341 352.4358,553 353.2534,553.2042 355.905,552.4736 356.9653,551.9767 357.0006,551.7234 356.9966,551.2658 356.9965,551.2568 356.9966,551.2399 356.9966,551.2302 356.9906,550.7688 356.8036,550.3012 356.461,549.9476 L 350.2481,543.5345 C 349.8985,543.1737 349.4547,543 348.9984,543 Z M 349.1318,544.3506 C 349.6016,544.3546 350.8926,545.9557 352.0414,547.145 352.3645,547.5771 351.9014,547.9909 351.9014,547.9909 L 349.507,546.6905 348.4331,548.1301 347.5136,546.7387 346.9388,548.8995 345.2929,547.922 345.7279,547.3468 348.3181,544.7078 C 348.517,544.5057 348.6704,544.3471 349.1316,544.3507 Z" id="path13254-1" inkscape:connector-curvature="0" sodipodi:nodetypes="sccccssccscscccscccscccccccccccc" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 356.2628,553.9727 C 356.1365,553.9687 356.0169,553.9834 355.927,554.0086 355.7575,554.0574 354.9341,554.08 355.0002,554.6901 355.7276,554.995 356.8522,555.2285 356.9844,554.6184 357.0837,554.1609 356.642,553.9868 356.2628,553.9728 Z" id="path13250-6" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke-width:1pt" d="M 344.0771,556.0045 C 343.9329,555.9918 343.7918,556.0051 343.6538,556.0577 343.1021,556.2674 342.7308,556.7335 343.2462,556.9263 343.7617,557.1191 344.1269,556.8995 344.5788,556.6604 345.0307,556.4212 345.019,556.3745 344.9864,556.2822 344.9237,556.2947 344.5098,556.0425 344.0771,556.0045 Z" id="path13248-6" inkscape:connector-curvature="0" />
-<path style="fill:none;stroke-width:1pt" d="M 354.2054,556 C 353.8358,556.1525 353.8402,556.6822 354.1358,556.911 354.4315,557.1398 354.8014,556.9917 354.9492,556.8393 355.0971,556.6868 354.9452,556.1525 354.2054,556 Z" id="path1217-0" inkscape:connector-curvature="0" />
-<rect style="fill:none;stroke:none" id="rect13270-8" width="15.99999" height="16" x="341.0002" y="543" />
</g>
+<g id="inkscape-logo" inkscape:label="#inkscape_options">
+<rect y="567.3713" x="225.0988" height="16" width="15.99999" id="rect13270-8" style="fill:none" />
+<path sodipodi:nodetypes="sccccssccscscccscccscccccccccccc" inkscape:connector-curvature="0" id="path13254-1" d="m 233.097,567.3713 c -0.4562,0 -0.9001,0.1737 -1.2497,0.5344 l -6.2129,6.4132 c -0.3426,0.3536 -0.5287,0.8212 -0.5355,1.2826 -10e-5,0.01 0,0.028 0,0.036 -10e-5,1.3729 3.6905,0.021 4.022,1.7 0.1794,0.9085 -2.0221,0.515 -2.0221,1.429 0,1.0722 3.094,0.3167 3.9779,1.2006 0.3631,0.8839 -1.1857,0.7513 -0.911,1.5726 0.5178,0.5343 1.6814,0.2387 1.9051,1.1011 0.2556,0.9852 1.9407,0.8119 2.9175,0.09 0.5178,-0.5342 -0.8057,-0.7948 -0.288,-1.329 0.5178,-0.5343 3.0914,-0.4286 3.1099,-1.5961 -0.2444,-0.7335 -1.2095,-0.8334 -1.2242,-1.7003 -0.052,-0.7341 0.766,-0.5299 3.4176,-1.2605 1.0603,-0.4969 1.0956,-0.7502 1.0916,-1.2078 -1e-4,-0.01 0,-0.026 0,-0.036 -0.01,-0.4614 -0.193,-0.929 -0.5356,-1.2826 l -6.2129,-6.4131 c -0.3496,-0.3604 -0.7934,-0.5341 -1.2497,-0.5341 z m 0.1334,1.3506 c 0.4698,0 1.7608,1.6051 2.9096,2.7944 0.3231,0.4321 -0.14,0.8459 -0.14,0.8459 l -2.3944,-1.3004 -1.0739,1.4396 -0.9195,-1.3914 -0.5748,2.1608 -1.6459,-0.9775 0.435,-0.5752 2.5902,-2.639 c 0.1989,-0.2021 0.3523,-0.3607 0.8135,-0.3571 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path inkscape:connector-curvature="0" id="path13250-6" d="m 240.3614,578.344 c -0.1263,0 -0.2459,0.011 -0.3358,0.036 -0.1695,0.049 -0.9929,0.071 -0.9268,0.6815 0.7274,0.3049 1.852,0.5384 1.9842,-0.072 0.099,-0.4575 -0.3424,-0.6316 -0.7216,-0.6456 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path inkscape:connector-curvature="0" id="path13248-6" d="m 228.1757,580.3758 c -0.1442,-0.013 -0.2853,6e-4 -0.4233,0.053 -0.5517,0.2097 -0.923,0.6758 -0.4076,0.8686 0.5155,0.1928 0.8807,-0.027 1.3326,-0.2659 0.4519,-0.2392 0.4402,-0.2859 0.4076,-0.3782 -0.063,0.013 -0.4766,-0.2397 -0.9093,-0.2777 z" style="fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1pt" />
+<path inkscape:connector-curvature="0" id="path1217-0" d="m 238.304,580.3713 c -0.3696,0.1525 -0.3652,0.6822 -0.07,0.911 0.2957,0.2288 0.6656,0.081 0.8134,-0.072 0.1479,-0.1525 0,-0.6868 -0.7438,-0.8393 z" style="fill:none;stroke-width:1pt" />
</g>
<g id="dialog-memory" inkscape:label="#about_memory">
+<rect transform="translate(110,607.3622)" style="fill:none" id="rect22433" width="16" height="16" x="115" y="-20" />
<g inkscape:label="preferences-environment" id="g22488" transform="translate(110,607.3622)" style="fill:url(#linearGradient19282)">
-<rect style="fill:none;stroke:none" id="rect22433" width="16" height="16" x="115" y="-20" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22439" width="1" height="2" x="-121" y="17" rx="2" ry="0" transform="scale(-1)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22441" width="1" height="2" x="-123" y="17" rx="2" ry="0" transform="scale(-1)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22443" width="1" height="2" x="-125" y="17" rx="2" ry="0" transform="scale(-1)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22445" width="1" height="2" x="-127" y="17" rx="2" ry="0" transform="scale(-1)" />
-<rect transform="scale(-1)" ry="0" rx="2" y="4" x="-121" height="2" width="1" id="rect22461" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(-1)" ry="0" rx="2" y="4" x="-123" height="2" width="1" id="rect22463" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(-1)" ry="0" rx="2" y="4" x="-125" height="2" width="1" id="rect22465" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(-1)" ry="0" rx="2" y="4" x="-127" height="2" width="1" id="rect22467" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22469" width="2" height="1" x="116" y="-15" rx="2" ry="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22471" width="2" height="1" x="116" y="-13" rx="2" ry="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22473" width="2" height="1" x="116" y="-11" rx="2" ry="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22475" width="2" height="1" x="116" y="-9" rx="2" ry="0" />
-<rect ry="0" rx="2" y="-15" x="129" height="1" width="2" id="rect22477" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0" rx="2" y="-13" x="129" height="1" width="2" id="rect22479" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0" rx="2" y="-11" x="129" height="1" width="2" id="rect22481" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0" rx="2" y="-9" x="129" height="1" width="2" id="rect22483" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<path inkscape:connector-curvature="0" id="rect40967" d="M 229,591.3622 229,600.3622 238,600.3622 238,591.3622 229,591.3622 Z M 230,592.3622 237,592.3622 237,599.3622 230,599.3622 230,592.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect id="rect22439" width="1" height="2" x="-121" y="17" rx="2" ry="0" transform="scale(-1)" />
+<rect id="rect22441" width="1" height="2" x="-123" y="17" rx="2" ry="0" transform="scale(-1)" />
+<rect id="rect22443" width="1" height="2" x="-125" y="17" rx="2" ry="0" transform="scale(-1)" />
+<rect id="rect22445" width="1" height="2" x="-127" y="17" rx="2" ry="0" transform="scale(-1)" />
+<rect transform="scale(-1)" ry="0" rx="2" y="4" x="-121" height="2" width="1" id="rect22461" />
+<rect transform="scale(-1)" ry="0" rx="2" y="4" x="-123" height="2" width="1" id="rect22463" />
+<rect transform="scale(-1)" ry="0" rx="2" y="4" x="-125" height="2" width="1" id="rect22465" />
+<rect transform="scale(-1)" ry="0" rx="2" y="4" x="-127" height="2" width="1" id="rect22467" />
+<rect id="rect22469" width="2" height="1" x="116" y="-15" rx="2" ry="0" />
+<rect id="rect22471" width="2" height="1" x="116" y="-13" rx="2" ry="0" />
+<rect id="rect22473" width="2" height="1" x="116" y="-11" rx="2" ry="0" />
+<rect id="rect22475" width="2" height="1" x="116" y="-9" rx="2" ry="0" />
+<rect ry="0" rx="2" y="-15" x="129" height="1" width="2" id="rect22477" />
+<rect ry="0" rx="2" y="-13" x="129" height="1" width="2" id="rect22479" />
+<rect ry="0" rx="2" y="-11" x="129" height="1" width="2" id="rect22481" />
+<rect ry="0" rx="2" y="-9" x="129" height="1" width="2" id="rect22483" />
+</g>
+<path inkscape:connector-curvature="0" id="rect40967" d="M 229,591.3622 229,600.3622 238,600.3622 238,591.3622 229,591.3622 Z M 230,592.3622 237,592.3622 237,599.3622 230,599.3622 230,592.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="guides" inkscape:label="#guide">
-<rect y="931.3622" x="165" height="16" width="16" id="rect41012" style="fill:none;stroke:none" />
-<rect y="932.3622" x="169" height="14" width="1" id="rect41014" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="942.3622" x="166" height="1" width="14" id="rect41016" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="931.3622" x="165" height="16" width="16" id="rect41012" style="fill:none" />
+<rect y="932.3622" x="169" height="14" width="1" id="rect41014" style="fill:url(#linearGradient19282)" />
+<rect y="942.3622" x="166" height="1" width="14" id="rect41016" style="fill:url(#linearGradient19282)" />
</g>
<g id="grid-rectangular" inkscape:label="#grid_xy">
<g inkscape:label="#g17424" id="show-grid-0" transform="translate(120,204)">
-<rect style="fill:none;stroke:none" id="rect17376-9" width="16" height="16" x="75" y="215" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17397-4" width="1" height="16" x="75" y="215" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17399-6" width="16" height="1" x="75" y="215" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17401-5" width="1" height="16" x="90" y="215" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17403-6" width="16" height="1" x="75" y="230" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17408-6" width="16" height="1" x="75" y="218" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17410-1" width="16" height="1" x="75" y="221" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17412-5" width="16" height="1" x="75" y="224" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17414-5" width="16" height="1" x="75" y="739.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17416-7" width="1" height="16" x="78" y="215" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17418-4" width="1" height="16" x="81" y="215" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17420-6" width="1" height="16" x="84" y="215" transform="translate(0,512.3622)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17422-4" width="1" height="16" x="87" y="215" transform="translate(0,512.3622)" />
+<rect style="fill:none" id="rect17376-9" width="16" height="16" x="75" y="215" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17397-4" width="1" height="16" x="75" y="215" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17399-6" width="16" height="1" x="75" y="215" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17401-5" width="1" height="16" x="90" y="215" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17403-6" width="16" height="1" x="75" y="230" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17408-6" width="16" height="1" x="75" y="218" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17410-1" width="16" height="1" x="75" y="221" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17412-5" width="16" height="1" x="75" y="224" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17414-5" width="16" height="1" x="75" y="739.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17416-7" width="1" height="16" x="78" y="215" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17418-4" width="1" height="16" x="81" y="215" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17420-6" width="1" height="16" x="84" y="215" transform="translate(0,512.3622)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17422-4" width="1" height="16" x="87" y="215" transform="translate(0,512.3622)" />
</g>
</g>
<g id="grid-axonometric" inkscape:label="#grid_axo">
-<rect y="931.3622" x="225" height="16" width="16" id="rect41042" style="fill:none;stroke:none" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 227.0067,932.3622 227.0067,946.3622 228,946.3622 228,932.3622 227.0067,932.3622 Z" id="path4674" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 236.9869,932.3622 236.9869,946.3622 237.9802,946.3622 237.9802,932.3622 236.9869,932.3622 Z" id="path5266" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 232.0205,931.3622 232.0205,947.3622 233.0138,947.3622 233.0138,931.3622 232.0205,931.3622 Z" id="path5268" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 225.5473,934.3622 225,935.2772 240.4849,944.3622 241,943.4472 225.5473,934.3622 Z" id="path4720" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 225.5176,940.3622 225,941.2372 236,947.3622 236.5176,946.5184 225.5176,940.3622 Z" id="path5309" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 230.4522,931.4393 229.9408,932.2967 240.4886,938.3622 241,937.473 230.4522,931.4393 Z" id="path5311" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 234.4737,931.3622 225,936.4962 225.5263,937.3622 235,932.2282 234.4737,931.3622 Z" id="path5313" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 240.4839,933.3622 225,942.4471 225.5161,943.3622 241,934.2772 240.4839,933.3622 Z" id="path5315" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0070437;marker:none;enable-background:accumulate" d="M 240.5164,939.3622 229,946.459 229.4836,947.3622 241,940.2654 240.5164,939.3622 Z" id="path5317" inkscape:connector-curvature="0" />
-</g>
-<g id="path-tweak-shrink" inkscape:label="#g14732">
-<rect y="527.3622" x="255" height="16" width="15.96876" id="rect41318" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6138721;marker:none" d="M 270.9688,538.3622 C 267.0369,538.3309 266.5564,536.3493 263.0574,536.346 259.5583,536.343 259.0636,538.3622 255,538.3622 L 255.0312,536.0893 255.0312,533.3392 C 259.0481,533.3168 259.5317,535.4457 263.0322,535.4434 266.5328,535.4414 267.0326,533.3463 271,533.3392 Z" id="path4445" sodipodi:nodetypes="czccczcc" />
-</g>
-<g id="path-tweak-grow" inkscape:label="#g14757">
-<rect style="fill:none;stroke:none" id="rect41443" width="16" height="16" x="255" y="547.3622" />
-<path sodipodi:nodetypes="sccsccs" inkscape:connector-curvature="0" id="path41457" d="M 263,553.3622 C 259,553.3622 260,555.3622 255,555.4247 L 255,556.3622 C 260,556.3622 259,558.3622 263,558.3622 267,558.3622 266,556.3622 271,556.3622 L 271,555.4247 C 266,555.3622 267,553.3622 263,553.3622 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.6138721;marker:none" />
-</g>
-<g id="path-tweak-push" inkscape:label="#g14782">
-<rect y="567.3622" x="255" height="16" width="16" id="rect41487" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 255,574.3622 C 255,574.3622 258.3921,575.1241 260.4375,572.9872 262.4375,570.8978 264.4375,570.8978 266.4375,572.9872 268.4829,575.124 271,574.3622 271,574.3622 L 271,579.3622 C 271,579.3622 268.4517,580.124 266.4062,577.9872 264.4062,575.8978 262.4062,575.8978 260.4062,577.9872 258.3608,580.1241 255,579.3622 255,579.3622 Z" id="path41499" inkscape:connector-curvature="0" sodipodi:nodetypes="cssccsscc" />
-</g>
-<g id="path-tweak-roughen" inkscape:label="#g15575">
-<rect y="587.3622" x="255" height="16" width="16" id="rect14728" style="fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccccccccccc" transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path15573" d="M 255,82 255,82 258.0312,77.53125 C 261.0312,81.03125 258.0312,77.53125 261,81 L 264,76 266,82 268.4687,78.875 271,82 271,87 267,83.4375 266,88 263.5,84.03125 C 260,88 263.5312,84 260,88 L 258.0312,82.34375 C 255,87 255,87 255,87 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="path-tweak-repel" inkscape:label="#g15612">
-<rect y="607.3622" x="255" height="16" width="16" id="rect15598" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="cssccsscc" inkscape:connector-curvature="0" id="path15604" d="M 255,611.3622 C 255,611.3622 258,612.3622 260,610.3622 262,608.3622 264,608.3622 266,610.3622 268,612.3622 271,611.3622 271,611.3622 L 271,613.3622 C 271,613.3622 268,614.3622 266,612.3622 264,610.3622 262,610.3622 260,612.3622 258,614.3622 255,613.3622 255,613.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 255,618.3622 C 255,618.3622 258,617.3622 260,619.3622 262,621.3622 264,621.3622 266,619.3622 268,617.3622 271,618.3622 271,618.3622 L 271,616.3622 C 271,616.3622 268,615.3622 266,617.3622 264,619.3622 262,619.3622 260,617.3622 258,615.3622 255,616.3622 255,616.3622 Z" id="path15610" inkscape:connector-curvature="0" sodipodi:nodetypes="cssccsscc" />
-</g>
-<g id="path-tweak-attract" inkscape:label="#g15659">
-<rect style="fill:none;stroke:none" id="rect15638" width="16" height="16" x="255" y="627.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 255,631.9575 C 255,631.9575 257,631.4698 259,633.3622 261,635.2545 265.0531,635.3091 267,633.3622 269,631.3622 271,631.9575 271,631.9575 L 271,630.3692 C 271,630.3692 269,629.5775 267,631.4698 265,633.3622 261,633.3622 259,631.4698 257,629.5775 255,630.3692 255,630.3692 Z" id="path15640" inkscape:connector-curvature="0" sodipodi:nodetypes="cssccsscc" />
-<path sodipodi:nodetypes="cssccsscc" inkscape:connector-curvature="0" id="path15657" d="M 255,638.7668 C 255,638.7668 257,639.2546 259,637.3622 261,635.4698 265,635.4698 267,637.3622 269,639.2545 271,638.7668 271,638.7668 L 271,640.3552 C 271,640.3552 269,641.1469 267,639.2545 265,637.3622 261,637.3622 259,639.2545 257,641.1469 255,640.3552 255,640.3552 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="object-tweak-paint" inkscape:label="#g15742">
-<rect y="647.3622" x="255" height="16" width="16" id="rect4527" style="display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect y="649.3622" x="-265" height="3.999994" width="4.000002" id="rect4544" style="display:inline;visibility:visible;fill:#bfbfbf;fill-opacity:0.2980413;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" transform="scale(-1,1)" />
-<rect y="-657.3175" x="257.0061" height="3.955307" width="3.993931" id="rect4549" style="display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" transform="scale(1,-1)" />
-<rect y="-657.3622" x="265" height="4" width="4" id="rect4553" style="display:inline;visibility:visible;fill:#bfbfbf;fill-opacity:0.2980392;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" transform="scale(1,-1)" />
-<rect y="657.3622" x="-265" height="4.000005" width="3.999996" id="rect4557" style="display:inline;visibility:visible;fill:#bfbfbf;fill-opacity:0.2980413;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" transform="scale(-1,1)" />
-<rect y="653.3622" x="261" height="4.000055" width="4.000013" id="rect15731" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="object-tweak-jitter-color" inkscape:label="#g15827">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect4563" width="16" height="16" x="255" y="667.3622" />
-<rect style="display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" id="rect4567" width="4" height="4" x="257" y="677.3622" />
-<rect y="-681.3622" x="-269" height="3.930722" width="4" id="rect4569" style="display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" transform="scale(-1)" />
-<rect y="-677.3622" x="-265" height="3.999997" width="4" id="rect4573" style="display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" transform="scale(-1)" />
-<rect transform="scale(1,-1)" style="display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:0.9803922;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" id="rect4575" width="4" height="4.000002" x="261" y="-673.3622" />
-<rect y="-677.4315" x="-269" height="4.069275" width="4" id="rect4577" style="display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" transform="scale(-1)" />
-<rect style="display:inline;visibility:visible;fill:#bfbfbf;fill-opacity:0.2980392;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" id="rect4579" width="4" height="4.000002" x="261" y="677.3622" />
-<rect y="673.3622" x="257" height="3.999997" width="4" id="rect4581" style="display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
-</g>
-<g id="object-tweak-push" inkscape:label="#g15982">
-<rect style="display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect4991" width="16" height="16" x="255" y="687.3622" />
-<g id="g5135" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="translate(-116.8263,551.3634)">
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" id="path5011" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" cx="375.0941" cy="137.9821" r="1.111868" />
-<use xlink:href="#path5011" transform="translate(4.825002e-8,2.41142)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5085" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0067742,5.089253)" id="use5087" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0027824,7.946541)" id="use5091" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.959973,-0.63416)" id="use5095" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.006247,0.88896)" id="use5097" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.034311,2.716243)" id="use5099" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.998324,5.976212)" id="use5101" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.922205,-0.70933)" id="use5105" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.986644,0.3787152)" id="use5107" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(6.028303,2.049693)" id="use5109" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.985226,4.82628)" id="use5111" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.86036,-0.67653)" id="use5115" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.908855,0.84335)" id="use5117" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.937926,2.560875)" id="use5119" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.901517,5.920781)" id="use5121" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.79723,-0.00985)" id="use5125" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.80716,2.53059)" id="use5127" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,5.183143)" id="use5129" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.80214,7.912301)" id="use5131" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" width="1250" height="1250" />
-<use xlink:href="#path5011" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" id="use5136" transform="translate(0.0027824,10.71149)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5011" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" id="use5138" transform="translate(2.998324,9.724665)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5011" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" id="use5140" transform="translate(5.985226,9.503606)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5011" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" id="use5142" transform="translate(8.901517,9.887791)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5011" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579" id="use5144" transform="translate(11.80214,10.67725)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-</g>
-</g>
-<g id="g16106">
-<g inkscape:label="#g5082" transform="translate(-116.8231,570.8367)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="object-tweak-attract">
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5124" transform="translate(8.861385,11.02164)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.953795,11.09914)" id="use5130" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5088" transform="translate(11.11579,3.027365)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.0383,9.082095)" id="use5126" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090" transform="translate(10.38143,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,10.40446)" id="use5132" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
-<circle transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2773579;marker:none" id="path5084" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.706381,0.9318868)" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5092" transform="translate(2.953795,0.8543842)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5094" transform="translate(11.81518)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5096" transform="translate(1.317544,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5098" transform="translate(0.7764177,9.082095)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5100" transform="translate(5.90759,1.588803)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5103" transform="translate(0.6601638,3.027365)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5106" transform="translate(3.225052,3.298622)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5108" transform="translate(3.147551,8.733335)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5110" transform="translate(5.90759,4.189904)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5112" transform="translate(8.706381,3.376124)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5114" transform="translate(3.961329,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5116" transform="translate(5.90759,7.764549)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5120" transform="translate(7.698848,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5122" transform="translate(8.628879,8.772087)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0,12.10946)" id="use5128" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,12.10946)" id="use5134" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084" />
-</g>
-<rect y="707.3622" x="255" height="16" width="16" id="rect16104" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-</g>
-<g id="g16249">
-<g inkscape:label="#g5082-9" transform="translate(-116.7986,590.7307)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="object-tweak-randomize">
-<circle transform="matrix(1.20571,0,0,1.20571,-78.42654,-27.79061)" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2773579;marker:none" id="path5084-3" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086-7" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.561625,0.49145)" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5088-6" transform="translate(11.84313,2.65475)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090-6" transform="translate(11.465,6.015863)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5092-8" transform="translate(2.800431,0.1644349)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5094-4" transform="translate(11.94058,-0.0096427)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5096-4" transform="translate(-0.1240991,6.118019)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5098-4" transform="translate(0.2602591,9.383794)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5100-0" transform="translate(6.0991,-0.2204626)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5103-8" transform="translate(0.4371078,2.794418)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5106-4" transform="translate(2.823264,2.99384)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5108-9" transform="translate(2.2685,8.914454)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5110-6" transform="translate(7.821966,3.036785)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5112-0" transform="translate(8.506131,3.395216)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5114-7" transform="translate(2.865657,4.495371)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5116-9" transform="translate(5.940444,8.422506)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5118-4" transform="translate(6.998359,5.075075)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5120-9" transform="translate(7.573388,6.436901)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5122-7" transform="translate(8.395772,9.33012)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5124-1" transform="translate(8.885973,11.77538)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.49834,9.064573)" id="use5126-2" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(-0.009413,12.10337)" id="use5128-6" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.166048,12.23381)" id="use5130-6" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.944623,11.84999)" id="use5132-7" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(12.07179,12.10332)" id="use5134-4" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#path5084-3" />
-</g>
-<rect y="727.3622" x="255" height="16" width="16" id="rect16247" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-</g>
-<g id="object-tweak-shrink" inkscape:label="#g17007">
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" id="path5084-2" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.330773,0,0,1.304296,-242.6855,568.8429)" cx="375.0941" cy="137.9821" r="1.111868" />
-<use xlink:href="#path5084-2" transform="matrix(0.9860759,0,0,0.9860759,13.35199,10.42661)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9791266,0,0,0.9791266,18.39427,18.90514)" id="use5088-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9025255,0,0,0.9025255,38.04092,79.5399)" id="use5090-1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9860707,0,0,0.9860707,6.832833,10.43046)" id="use5092-4" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(13.04072)" id="use5094-42" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9068615,0,0,0.9068615,23.88811,76.29305)" id="use5096-0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9828022,0,0,0.9828022,4.410936,22.70267)" id="use5098-8" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9220478,0,0,0.9220478,26.5136,58.37159)" id="use5100-6" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9801935,0,0,0.9801935,5.080138,18.10632)" id="use5103-0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6146776,0,0,0.6146776,102.0872,291.8091)" id="use5106-9" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6232617,0,0,0.6232617,99.88627,291.931)" id="use5108-2" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4296546,0,0,0.4296546,152.8021,430.3566)" id="use5110-1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6112925,0,0,0.6112925,109.4759,294.3438)" id="use5112-7" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4261003,0,0,0.4261003,150.4533,436.293)" id="use5114-3" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4378052,0,0,0.4378052,150.7115,430.8031)" id="use5116-0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.256807,0,0,0.256807,197.1343,563.0618)" id="use5118-6" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4222839,0,0,0.4222839,157.953,439.1508)" id="use5120-92" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6190024,0,0,0.6190024,107.4987,295.1204)" id="use5122-6" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9884129,0,0,0.9884129,12.75241,21.77614)" id="use5124-2" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5126-4" transform="matrix(0.9803125,0,0,0.9803125,18.09011,24.56693)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5128-4" transform="translate(0,13.0996)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5130-0" transform="matrix(0.9897789,0,0,0.9897789,5.881653,20.75324)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5132-1" transform="matrix(0.9302193,0,0,0.9302193,24.41779,65.35227)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5134-8" transform="translate(13.04072,13.0996)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
-<rect y="747.3622" x="255.0004" height="16" width="15.99962" id="rect16409" style="opacity:0.3;fill:none;stroke:none" />
-</g>
-<g id="object-tweak-rotate" style="fill:url(#linearGradient19282);fill-opacity:1" transform="matrix(1.206069,0,0,1.043228,-194.3522,625.3875)" inkscape:label="#g5082-36">
-<g id="g16897">
-<rect y="136.0917" x="372.576" height="15.33701" width="13.26624" id="tweak_rotate_mode" style="display:inline;fill:none;stroke:none;stroke-width:1;marker:none" inkscape:label="#rect5080-5" />
-<g inkscape:label="#g5082-36" transform="matrix(0.8291402,0,0,0.9585631,64.23459,5.309395)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="object-tweak-rotate-9">
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5086-1-3" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="rotate(6.891451,378.6993,212.0572)" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5088-9-5" transform="rotate(6.742276,354.4789,240.2747)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5090-9-7" transform="rotate(13.88251,355.3094,190.0243)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5092-7-7" transform="rotate(8.166722,375.7447,159.1597)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5094-1-2" transform="translate(11.81518)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5096-08-7" transform="rotate(17.82176,354.9598,141.5001)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5098-0-4" transform="rotate(8.378837,312.2742,143.0133)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5100-2-4" transform="rotate(15.2684,377.2218,160.51)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5103-7-0" transform="rotate(9.387622,355.833,139.986)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5106-2-2" transform="rotate(44.87149,372.0792,143.563)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5108-6-5" transform="rotate(42.22786,363.9853,146.8381)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5110-65-0" transform="rotate(63.21644,374.7624,144.7858)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5112-8-3" transform="rotate(41.22188,374.6744,151.767)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5114-5-8" transform="rotate(65.03753,370.9967,143.8163)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5116-6-2" transform="rotate(59.91134,369.3427,148.139)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5118-0-4" transform="rotate(88.2,374.0981,144.5479)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5120-1-8" transform="rotate(60.38546,373.4959,149.115)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5122-0-2" transform="rotate(38.71798,365.7743,155.6236)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use height="1250" width="1250" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="use5124-4-5" transform="rotate(5.269124,247.1145,240.8168)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#rect5405-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(5.910683,292.2152,257.4433)" id="use5126-7-1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#rect5405-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0,12.10946)" id="use5128-0-6" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#rect5405-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(6.371765,266.9682,171.0607)" id="use5130-7-6" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#rect5405-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(12.64041,322.556,171.1961)" id="use5132-5-6" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#rect5405-3" />
-<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,12.10946)" id="use5134-1-1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" width="1250" height="1250" xlink:href="#rect5405-3" />
-<rect style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.3344132;marker:none" id="rect5405-3" width="1.257945" height="3.036042" x="373.7597" y="136.9544" />
-</g>
-</g>
-</g>
-<g id="object-tweak-duplicate" inkscape:label="#g17291">
-<rect inkscape:label="#rect5080-7" style="display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="tweak_moreless_mode" width="16" height="16" x="255" y="787.3622" />
-<path inkscape:connector-curvature="0" id="use5685" d="M 260.4062,788.3622 C 260.5336,789.6933 261.6355,790.7372 263,790.7372 264.3645,790.7372 265.4664,789.6933 265.5937,788.3622 L 260.4062,788.3622 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use5687" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.138679;marker:none" transform="matrix(2.202097,0,0,2.162349,-563.9937,496.4009)" cx="375.0941" cy="137.9821" r="1.111868" />
-<path inkscape:connector-curvature="0" id="use5828" d="M 263,799.5809 C 261.5484,799.5809 260.375,800.7856 260.375,802.2372 260.375,802.2819 260.373,802.3181 260.375,802.3622 L 265.625,802.3622 C 265.627,802.3176 265.625,802.2824 265.625,802.2372 265.625,800.7856 264.4516,799.5809 263,799.5809 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" />
-<path inkscape:connector-curvature="0" id="path5885" d="M 270,792.5497 C 268.5792,792.5831 267.4375,793.7458 267.4375,795.1747 267.4375,796.6035 268.5792,797.7663 270,797.7997 L 270,792.5497 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" />
-<path inkscape:connector-curvature="0" id="path5889" d="M 256,792.5497 256,797.7997 C 257.4225,797.7662 258.5625,796.6052 258.5625,795.1747 258.5625,793.7443 257.4222,792.5835 256,792.5497 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" />
-<path inkscape:connector-curvature="0" id="path5893" d="M 267.4687,788.3622 C 267.5941,789.6728 268.6646,790.7057 270,790.7372 L 270,788.3622 267.4687,788.3622 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" />
-<path inkscape:connector-curvature="0" id="path5895" d="M 256,788.3622 256,790.7372 C 257.3385,790.7054 258.4077,789.6757 258.5312,788.3622 L 256,788.3622 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" />
-<path inkscape:connector-curvature="0" id="path5897" d="M 270,799.6122 C 268.5795,799.6459 267.4375,800.8086 267.4375,802.2372 267.4375,802.2786 267.4355,802.3212 267.4375,802.3622 L 270,802.3622 270,799.6122 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" />
-<path inkscape:connector-curvature="0" id="path5899" d="M 256,799.5809 256,802.3622 258.5625,802.3622 C 258.5645,802.3176 258.5625,802.2824 258.5625,802.2372 258.5625,800.8066 257.4224,799.6152 256,799.5809 Z" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path5911" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.138679;marker:none" transform="matrix(2.086944,0,0,2.086944,-519.1206,507.9152)" cx="375.0941" cy="137.9821" r="1.111868" />
-</g>
-<g id="object-tweak-blur" inkscape:label="#g18302">
-<circle transform="matrix(1.20571,0,0,1.20571,-195.2234,642.9926)" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" id="path7657" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7660" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.9359693,0,0,0.9359693,-85.18357,680.2121)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7662" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.9556962,0,0,0.9556962,-89.62949,680.5174)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7664" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.088184,0,0,1.088184,-139.325,665.2638)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7666" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.8516448,0,0,0.8516448,-59.46192,691.8473)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7668" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.20571,0,0,1.20571,-183.4083,642.9926)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7670" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.093412,0,0,1.093412,-153.1011,664.5425)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7672" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.9320213,0,0,0.9320213,-92.56455,689.8388)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7674" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.111722,0,0,1.111722,-154.0615,655.9613)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7676" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.9569822,0,0,0.9569822,-101.927,680.34)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7696" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.994998,0,0,0.994998,-107.3253,684.1765)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7698" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.985232,0,0,0.985232,-100.7082,682.4968)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7700" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.20571,0,0,1.20571,-195.2234,655.1021)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7702" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.9404333,0,0,0.9404333,-92.76607,691.7054)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7704" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.121575,0,0,1.121575,-157.7571,666.7113)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7706" style="color:#000000;display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(1.20571,0,0,1.20571,-183.4083,655.1021)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(0,0,0,0,257.9388,809.1229)" id="path18244" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="249" cy="293" r="1" />
-<circle transform="matrix(1.188915,0,0,1.188915,-185.8816,648.4478)" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579;stroke-opacity:1;marker:none" id="path18274" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(0.7868642,0,0,0.7868642,-32.12087,703.9236)" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" id="path18276" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path18278" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579;stroke-opacity:1;marker:none" transform="matrix(1.188915,0,0,1.188915,-180.0038,648.4036)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path18280" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" transform="matrix(0.7641009,0,0,0.7641009,-26.53634,710.0645)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path18282" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579;stroke-opacity:1;marker:none" transform="matrix(1.111722,0,0,1.111722,-153.9731,662.0991)" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(0.7391118,0,0,0.7391118,-11.28526,713.4684)" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" id="path18284" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(1.188915,0,0,1.188915,-185.8816,654.4478)" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579;stroke-opacity:1;marker:none" id="path18286" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle transform="matrix(0.711897,0,0,0.711897,-4.00112,720.2677)" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2773579;marker:none" id="path18288" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
-<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path18290" style="color:#000000;display:inline;visibility:visible;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579;stroke-opacity:1;marker:none" transform="matrix(1.188915,0,0,1.188915,-180.0038,654.4036)" cx="375.0941" cy="137.9821" r="1.111868" />
-<ellipse transform="matrix(3.241379,0,0,2.666667,-552.8896,22.62291)" id="path18292" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="250.8125" cy="296.2031" rx="0.1875" ry="0.234375" />
-<ellipse style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path18294" transform="matrix(3.241379,0,0,2.666667,-552.9521,28.59166)" cx="250.8125" cy="296.2031" rx="0.1875" ry="0.234375" />
-<ellipse transform="matrix(3.241379,0,0,2.666667,-547.0459,22.56041)" id="path18296" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="250.8125" cy="296.2031" rx="0.1875" ry="0.234375" />
-<ellipse transform="matrix(3.241379,0,0,2.666667,-547.0459,28.62291)" id="path18298" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="250.8125" cy="296.2031" rx="0.1875" ry="0.234375" />
-<rect rx="0.9999907" ry="0" y="807.3622" x="255" height="16" width="16" id="rect18300" style="fill:none;fill-opacity:1;stroke:none" />
+<rect y="931.3622" x="225" height="16" width="16" id="rect41042" style="fill:none" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 227.0067,932.3622 227.0067,946.3622 228,946.3622 228,932.3622 227.0067,932.3622 Z" id="path4674" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 236.9869,932.3622 236.9869,946.3622 237.9802,946.3622 237.9802,932.3622 236.9869,932.3622 Z" id="path5266" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 232.0205,931.3622 232.0205,947.3622 233.0138,947.3622 233.0138,931.3622 232.0205,931.3622 Z" id="path5268" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 225.5473,934.3622 225,935.2772 240.4849,944.3622 241,943.4472 225.5473,934.3622 Z" id="path4720" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 225.5176,940.3622 225,941.2372 236,947.3622 236.5176,946.5184 225.5176,940.3622 Z" id="path5309" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 230.4522,931.4393 229.9408,932.2967 240.4886,938.3622 241,937.473 230.4522,931.4393 Z" id="path5311" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 234.4737,931.3622 225,936.4962 225.5263,937.3622 235,932.2282 234.4737,931.3622 Z" id="path5313" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 240.4839,933.3622 225,942.4471 225.5161,943.3622 241,934.2772 240.4839,933.3622 Z" id="path5315" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0070437" d="M 240.5164,939.3622 229,946.459 229.4836,947.3622 241,940.2654 240.5164,939.3622 Z" id="path5317" inkscape:connector-curvature="0" />
+</g>
+<g id="path-tweak-shrink">
+<rect y="527.3622" x="255" height="16" width="15.96876" id="rect41318" style="fill:none" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.6138721" d="m 270.9688,538.3622 c -3.9319,-0.031 -4.4124,-2.0129 -7.9114,-2.0162 -3.4991,-0 -3.9938,2.0162 -8.0574,2.0162 l 0.031,-2.2729 0,-2.7501 c 4.0169,-0.022 4.5005,2.1065 8.001,2.1042 3.5006,-0 4.0004,-2.0971 7.9678,-2.1042 z" id="path4445" sodipodi:nodetypes="czccczcc" />
+</g>
+<g id="path-tweak-grow">
+<rect style="fill:none" id="rect41443" width="16" height="16" x="255" y="547.3622" />
+<path sodipodi:nodetypes="sccsccs" inkscape:connector-curvature="0" id="path41457" d="m 263,553.3622 c -4,0 -3,2 -8,2.0625 l 0,0.9375 c 5,0 4,2 8,2 4,0 3,-2 8,-2 l 0,-0.9375 c -5,-0.062 -4,-2.0625 -8,-2.0625 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.6138721" />
+</g>
+<g id="path-tweak-push">
+<rect y="567.3622" x="255" height="16" width="16" id="rect41487" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 255,574.3622 c 0,0 3.3921,0.7619 5.4375,-1.375 2,-2.0894 4,-2.0894 6,0 2.0454,2.1368 4.5625,1.375 4.5625,1.375 l 0,5 c 0,0 -2.5483,0.7618 -4.5938,-1.375 -2,-2.0894 -4,-2.0894 -6,0 -2.0454,2.1369 -5.4062,1.375 -5.4062,1.375 z" id="path41499" inkscape:connector-curvature="0" sodipodi:nodetypes="cssccsscc" />
+</g>
+<g id="path-tweak-roughen">
+<rect y="587.3622" x="255" height="16" width="16" id="rect14728" style="fill:none" />
+<path sodipodi:nodetypes="cccccccccccccccc" transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path15573" d="m 255,82 0,0 3.0312,-4.46875 c 3,3.5 0,0 2.9688,3.46875 l 3,-5 2,6 2.4687,-3.125 L 271,82 271,87 267,83.4375 266,88 263.5,84.03125 C 260,88 263.5312,84 260,88 l -1.9688,-5.65625 C 255,87 255,87 255,87 Z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="path-tweak-repel">
+<rect y="607.3622" x="255" height="16" width="16" id="rect15598" style="fill:none" />
+<path sodipodi:nodetypes="cssccsscc" inkscape:connector-curvature="0" id="path15604" d="m 255,611.3622 c 0,0 3,1 5,-1 2,-2 4,-2 6,0 2,2 5,1 5,1 l 0,2 c 0,0 -3,1 -5,-1 -2,-2 -4,-2 -6,0 -2,2 -5,1 -5,1 z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 255,618.3622 c 0,0 3,-1 5,1 2,2 4,2 6,0 2,-2 5,-1 5,-1 l 0,-2 c 0,0 -3,-1 -5,1 -2,2 -4,2 -6,0 -2,-2 -5,-1 -5,-1 z" id="path15610" inkscape:connector-curvature="0" sodipodi:nodetypes="cssccsscc" />
+</g>
+<g id="path-tweak-attract">
+<rect style="fill:none" id="rect15638" width="16" height="16" x="255" y="627.3622" />
+<path style="fill:url(#linearGradient19282)" d="m 255,631.9575 c 0,0 2,-0.4877 4,1.4047 2,1.8923 6.0531,1.9469 8,0 2,-2 4,-1.4047 4,-1.4047 l 0,-1.5883 c 0,0 -2,-0.7917 -4,1.1006 -2,1.8924 -6,1.8924 -8,0 -2,-1.8923 -4,-1.1006 -4,-1.1006 z" id="path15640" inkscape:connector-curvature="0" sodipodi:nodetypes="cssccsscc" />
+<path sodipodi:nodetypes="cssccsscc" inkscape:connector-curvature="0" id="path15657" d="m 255,638.7668 c 0,0 2,0.4878 4,-1.4046 2,-1.8924 6,-1.8924 8,0 2,1.8923 4,1.4046 4,1.4046 l 0,1.5884 c 0,0 -2,0.7917 -4,-1.1007 -2,-1.8923 -6,-1.8923 -8,0 -2,1.8924 -4,1.1007 -4,1.1007 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="object-tweak-paint">
+<rect y="647.3622" x="255" height="16" width="16" id="rect4527" style="fill:none" />
+<rect y="649.3622" x="-265" height="3.999994" width="4.000002" id="rect4544" style="fill:url(#linearGradient19282);fill-opacity:0.2980413" transform="scale(-1,1)" />
+<rect y="-657.3175" x="257.0061" height="3.955307" width="3.993931" id="rect4549" style="opacity:0.3;fill:url(#linearGradient19282)" transform="scale(1,-1)" />
+<rect y="-657.3622" x="265" height="4" width="4" id="rect4553" style="fill:url(#linearGradient19282);fill-opacity:0.2980392" transform="scale(1,-1)" />
+<rect y="657.3622" x="-265" height="4.000005" width="3.999996" id="rect4557" style="fill:url(#linearGradient19282);fill-opacity:0.2980413" transform="scale(-1,1)" />
+<rect y="653.3622" x="261" height="4.000055" width="4.000013" id="rect15731" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="object-tweak-jitter-color">
+<rect style="color:#000000;fill:none" id="rect4563" width="16" height="16" x="255" y="667.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect4567" width="4" height="4" x="257" y="677.3622" />
+<rect y="-681.3622" x="-269" height="3.930722" width="4" id="rect4569" style="fill:url(#linearGradient19282)" transform="scale(-1)" />
+<rect y="-677.3622" x="-265" height="3.999997" width="4" id="rect4573" style="fill:url(#linearGradient19282)" transform="scale(-1)" />
+<rect transform="scale(1,-1)" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:0.9803922" id="rect4575" width="4" height="4.000002" x="261" y="-673.3622" />
+<rect y="-677.4315" x="-269" height="4.069275" width="4" id="rect4577" style="opacity:0.3;fill:url(#linearGradient19282)" transform="scale(-1)" />
+<rect style="fill:url(#linearGradient19282);fill-opacity:0.2980392" id="rect4579" width="4" height="4.000002" x="261" y="677.3622" />
+<rect y="673.3622" x="257" height="3.999997" width="4" id="rect4581" style="opacity:0.3;fill:url(#linearGradient19282)" />
+</g>
+<g id="object-tweak-push">
+<rect style="fill:none" id="rect4991" width="16" height="16" x="255" y="687.3622" />
+<g id="g5135" style="fill:url(#linearGradient19282)" transform="translate(-116.8263,551.3634)">
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" id="path5011" style="color:#000000;stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" cx="375.0941" cy="137.9821" r="1.111868" />
+<use xlink:href="#path5011" transform="translate(4.825002e-8,2.41142)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5085" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0067742,5.089253)" id="use5087" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0027824,7.946541)" id="use5091" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.959973,-0.63416)" id="use5095" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.006247,0.88896)" id="use5097" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.034311,2.716243)" id="use5099" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.998324,5.976212)" id="use5101" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.922205,-0.70933)" id="use5105" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.986644,0.3787152)" id="use5107" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(6.028303,2.049693)" id="use5109" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.985226,4.82628)" id="use5111" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.86036,-0.67653)" id="use5115" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.908855,0.84335)" id="use5117" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.937926,2.560875)" id="use5119" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.901517,5.920781)" id="use5121" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.79723,-0.00985)" id="use5125" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.80716,2.53059)" id="use5127" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,5.183143)" id="use5129" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.80214,7.912301)" id="use5131" style="stroke-width:0.2773579" width="1250" height="1250" />
+<use xlink:href="#path5011" height="1250" width="1250" style="stroke-width:0.2773579" id="use5136" transform="translate(0.0027824,10.71149)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#path5011" height="1250" width="1250" style="stroke-width:0.2773579" id="use5138" transform="translate(2.998324,9.724665)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#path5011" height="1250" width="1250" style="stroke-width:0.2773579" id="use5140" transform="translate(5.985226,9.503606)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#path5011" height="1250" width="1250" style="stroke-width:0.2773579" id="use5142" transform="translate(8.901517,9.887791)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#path5011" height="1250" width="1250" style="stroke-width:0.2773579" id="use5144" transform="translate(11.80214,10.67725)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+</g>
+</g>
+<g id="object-tweak-attract">
+<rect y="707.3622" x="255" height="16" width="16" id="rect16104" style="opacity:0.3;fill:none" />
+<g transform="translate(-116.8231,570.8367)" style="fill:url(#linearGradient19282)" id="g6152">
+<use height="1250" width="1250" id="use5124" transform="translate(8.861385,11.02164)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.953795,11.09914)" id="use5130" width="1250" height="1250" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5088" transform="translate(11.11579,3.027365)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.0383,9.082095)" id="use5126" width="1250" height="1250" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5090" transform="translate(10.38143,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,10.40446)" id="use5132" width="1250" height="1250" xlink:href="#path5084" />
+<circle transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" style="color:#000000;stroke-width:0.2773579" id="path5084" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
+<use height="1250" width="1250" id="use5086" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.706381,0.9318868)" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5092" transform="translate(2.953795,0.8543842)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5094" transform="translate(11.81518)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5096" transform="translate(1.317544,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5098" transform="translate(0.7764177,9.082095)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5100" transform="translate(5.90759,1.588803)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5103" transform="translate(0.6601638,3.027365)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5106" transform="translate(3.225052,3.298622)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5108" transform="translate(3.147551,8.733335)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5110" transform="translate(5.90759,4.189904)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5112" transform="translate(8.706381,3.376124)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5114" transform="translate(3.961329,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5116" transform="translate(5.90759,7.764549)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5120" transform="translate(7.698848,6.05473)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use height="1250" width="1250" id="use5122" transform="translate(8.628879,8.772087)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0,12.10946)" id="use5128" width="1250" height="1250" xlink:href="#path5084" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,12.10946)" id="use5134" width="1250" height="1250" xlink:href="#path5084" />
+</g>
+</g>
+<g id="object-tweak-randomize">
+<rect y="727.3622" x="255" height="16" width="16" id="rect16247" style="opacity:0.3;fill:none" />
+<g transform="translate(-116.7986,590.7307)" style="fill:url(#linearGradient19282)" id="g6154">
+<circle transform="matrix(1.20571,0,0,1.20571,-78.42654,-27.79061)" style="color:#000000;stroke-width:0.2773579" id="path5084-3" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
+<use height="1250" width="1250" id="use5086-7" inkscape:tiled-clone-of="#path5011" y="0" x="0" transform="translate(8.561625,0.49145)" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5088-6" transform="translate(11.84313,2.65475)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5090-6" transform="translate(11.465,6.015863)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5092-8" transform="translate(2.800431,0.1644349)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5094-4" transform="translate(11.94058,-0.0096427)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5096-4" transform="translate(-0.1240991,6.118019)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5098-4" transform="translate(0.2602591,9.383794)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5100-0" transform="translate(6.0991,-0.2204626)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5103-8" transform="translate(0.4371078,2.794418)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5106-4" transform="translate(2.823264,2.99384)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5108-9" transform="translate(2.2685,8.914454)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5110-6" transform="translate(7.821966,3.036785)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5112-0" transform="translate(8.506131,3.395216)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5114-7" transform="translate(2.865657,4.495371)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5116-9" transform="translate(5.940444,8.422506)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5118-4" transform="translate(6.998359,5.075075)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5120-9" transform="translate(7.573388,6.436901)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5122-7" transform="translate(8.395772,9.33012)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use height="1250" width="1250" id="use5124-1" transform="translate(8.885973,11.77538)" inkscape:tiled-clone-of="#path5011" y="0" x="0" xlink:href="#path5084-3" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.49834,9.064573)" id="use5126-2" width="1250" height="1250" xlink:href="#path5084-3" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(-0.009413,12.10337)" id="use5128-6" width="1250" height="1250" xlink:href="#path5084-3" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.166048,12.23381)" id="use5130-6" width="1250" height="1250" xlink:href="#path5084-3" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.944623,11.84999)" id="use5132-7" width="1250" height="1250" xlink:href="#path5084-3" />
+<use x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(12.07179,12.10332)" id="use5134-4" width="1250" height="1250" xlink:href="#path5084-3" />
+</g>
+</g>
+<g id="object-tweak-shrink">
+<rect y="747.3622" x="255.0004" height="16" width="15.99962" id="rect16409" style="opacity:0.3;fill:none" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" id="path5084-2" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.330773,0,0,1.304296,-242.6855,568.8429)" cx="375.0941" cy="137.9821" r="1.111868" />
+<use xlink:href="#path5084-2" transform="matrix(0.9860759,0,0,0.9860759,13.35199,10.42661)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-8" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9791266,0,0,0.9791266,18.39427,18.90514)" id="use5088-8" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9025255,0,0,0.9025255,38.04092,79.5399)" id="use5090-1" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9860707,0,0,0.9860707,6.832833,10.43046)" id="use5092-4" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(13.04072)" id="use5094-42" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9068615,0,0,0.9068615,23.88811,76.29305)" id="use5096-0" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9828022,0,0,0.9828022,4.410936,22.70267)" id="use5098-8" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9220478,0,0,0.9220478,26.5136,58.37159)" id="use5100-6" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9801935,0,0,0.9801935,5.080138,18.10632)" id="use5103-0" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6146776,0,0,0.6146776,102.0872,291.8091)" id="use5106-9" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6232617,0,0,0.6232617,99.88627,291.931)" id="use5108-2" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4296546,0,0,0.4296546,152.8021,430.3566)" id="use5110-1" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6112925,0,0,0.6112925,109.4759,294.3438)" id="use5112-7" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4261003,0,0,0.4261003,150.4533,436.293)" id="use5114-3" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4378052,0,0,0.4378052,150.7115,430.8031)" id="use5116-0" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.256807,0,0,0.256807,197.1343,563.0618)" id="use5118-6" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4222839,0,0,0.4222839,157.953,439.1508)" id="use5120-92" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6190024,0,0,0.6190024,107.4987,295.1204)" id="use5122-6" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9884129,0,0,0.9884129,12.75241,21.77614)" id="use5124-2" style="fill:url(#linearGradient19282)" width="1250" height="1250" />
+<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282)" id="use5126-4" transform="matrix(0.9803125,0,0,0.9803125,18.09011,24.56693)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282)" id="use5128-4" transform="translate(0,13.0996)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282)" id="use5130-0" transform="matrix(0.9897789,0,0,0.9897789,5.881653,20.75324)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282)" id="use5132-1" transform="matrix(0.9302193,0,0,0.9302193,24.41779,65.35227)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:url(#linearGradient19282)" id="use5134-8" transform="translate(13.04072,13.0996)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+</g>
+<g id="object-tweak-rotate" style="fill:url(#linearGradient19282)" transform="matrix(1.206069,0,0,1.043228,-194.3522,625.3875)" inkscape:label="#tweak_rotate_mode">
+<rect style="fill:none" width="13.26624" height="15.33701" x="372.576" y="136.0917" id="rect4073" />
+<g transform="matrix(0.8291402,0,0,0.9585631,64.23459,5.309395)" id="g4075">
+<use xlink:href="#rect5405-3" transform="rotate(6.891451,378.6993,212.0572)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-1-3" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(6.742276,354.4789,240.2747)" id="use5088-9-5" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(13.88251,355.3094,190.0243)" id="use5090-9-7" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(8.166722,375.7447,159.1597)" id="use5092-7-7" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518)" id="use5094-1-2" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(17.82176,354.9598,141.5001)" id="use5096-08-7" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(8.378837,312.2742,143.0133)" id="use5098-0-4" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(15.2684,377.2218,160.51)" id="use5100-2-4" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(9.387622,355.833,139.986)" id="use5103-7-0" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(44.87149,372.0792,143.563)" id="use5106-2-2" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(42.22786,363.9853,146.8381)" id="use5108-6-5" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(63.21644,374.7624,144.7858)" id="use5110-65-0" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(41.22188,374.6744,151.767)" id="use5112-8-3" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(65.03753,370.9967,143.8163)" id="use5114-5-8" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(59.91134,369.3427,148.139)" id="use5116-6-2" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(88.2,374.0981,144.5479)" id="use5118-0-4" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(60.38546,373.4959,149.115)" id="use5120-1-8" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(38.71798,365.7743,155.6236)" id="use5122-0-2" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="rotate(5.269124,247.1145,240.8168)" id="use5124-4-5" width="1250" height="1250" />
+<use xlink:href="#rect5405-3" height="1250" width="1250" id="use5126-7-1" transform="rotate(5.910683,292.2152,257.4433)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#rect5405-3" height="1250" width="1250" id="use5128-0-6" transform="translate(0,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#rect5405-3" height="1250" width="1250" id="use5130-7-6" transform="rotate(6.371765,266.9682,171.0607)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#rect5405-3" height="1250" width="1250" id="use5132-5-6" transform="rotate(12.64041,322.556,171.1961)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<use xlink:href="#rect5405-3" height="1250" width="1250" id="use5134-1-1" transform="translate(11.81518,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" />
+<rect y="136.9544" x="373.7597" height="3.036042" width="1.257945" id="rect5405-3" style="color:#000000;stroke-width:0.3344132" />
+</g>
+</g>
+<g id="object-tweak-duplicate" inkscape:label="#tweak_moreless_mode">
+<rect style="fill:none" width="16" height="16" x="255" y="787.3622" id="rect4103" />
+<path inkscape:connector-curvature="0" id="use5685" d="m 260.4062,788.3622 c 0.1274,1.3311 1.2293,2.375 2.5938,2.375 1.3645,0 2.4664,-1.0439 2.5937,-2.375 l -5.1875,0 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use5687" style="color:#000000;opacity:0.3;fill:url(#linearGradient19282);stroke-width:0.138679" transform="matrix(2.202097,0,0,2.162349,-563.9937,496.4009)" cx="375.0941" cy="137.9821" r="1.111868" />
+<path inkscape:connector-curvature="0" id="use5828" d="m 263,799.5809 c -1.4516,0 -2.625,1.2047 -2.625,2.6563 0,0.045 -0,0.081 0,0.125 l 5.25,0 c 0,-0.045 0,-0.08 0,-0.125 0,-1.4516 -1.1734,-2.6563 -2.625,-2.6563 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" />
+<path inkscape:connector-curvature="0" id="path5885" d="m 270,792.5497 c -1.4208,0.033 -2.5625,1.1961 -2.5625,2.625 0,1.4288 1.1417,2.5916 2.5625,2.625 l 0,-5.25 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" />
+<path inkscape:connector-curvature="0" id="path5889" d="m 256,792.5497 0,5.25 c 1.4225,-0.034 2.5625,-1.1945 2.5625,-2.625 0,-1.4304 -1.1403,-2.5912 -2.5625,-2.625 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" />
+<path inkscape:connector-curvature="0" id="path5893" d="m 267.4687,788.3622 c 0.1254,1.3106 1.1959,2.3435 2.5313,2.375 l 0,-2.375 -2.5313,0 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" />
+<path inkscape:connector-curvature="0" id="path5895" d="m 256,788.3622 0,2.375 c 1.3385,-0.032 2.4077,-1.0615 2.5312,-2.375 l -2.5312,0 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" />
+<path inkscape:connector-curvature="0" id="path5897" d="m 270,799.6122 c -1.4205,0.034 -2.5625,1.1964 -2.5625,2.625 0,0.041 -0,0.084 0,0.125 l 2.5625,0 0,-2.75 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" />
+<path inkscape:connector-curvature="0" id="path5899" d="m 256,799.5809 0,2.7813 2.5625,0 c 0,-0.045 0,-0.08 0,-0.125 0,-1.4306 -1.1401,-2.622 -2.5625,-2.6563 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path5911" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.138679" transform="matrix(2.086944,0,0,2.086944,-519.1206,507.9152)" cx="375.0941" cy="137.9821" r="1.111868" />
+</g>
+<g id="object-tweak-blur">
+<rect y="807.3622" x="255" height="16" width="16" id="rect18300" style="fill:none" />
+<circle transform="matrix(1.20571,0,0,1.20571,-195.2234,642.9926)" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" id="path7657" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7660" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.9359693,0,0,0.9359693,-85.18357,680.2121)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7662" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.9556962,0,0,0.9556962,-89.62949,680.5174)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7664" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.088184,0,0,1.088184,-139.325,665.2638)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7666" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.8516448,0,0,0.8516448,-59.46192,691.8473)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7668" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-183.4083,642.9926)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7670" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.093412,0,0,1.093412,-153.1011,664.5425)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7672" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.9320213,0,0,0.9320213,-92.56455,689.8388)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7674" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.111722,0,0,1.111722,-154.0615,655.9613)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7676" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.9569822,0,0,0.9569822,-101.927,680.34)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7696" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.994998,0,0,0.994998,-107.3253,684.1765)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7698" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.985232,0,0,0.985232,-100.7082,682.4968)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7700" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-195.2234,655.1021)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7702" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.9404333,0,0,0.9404333,-92.76607,691.7054)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7704" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.121575,0,0,1.121575,-157.7571,666.7113)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="use7706" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.20571,0,0,1.20571,-183.4083,655.1021)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle transform="matrix(0,0,0,0,257.9388,809.1229)" id="path18244" style="fill:url(#linearGradient19282)" cx="249" cy="293" r="1" />
+<circle transform="matrix(1.188915,0,0,1.188915,-185.8816,648.4478)" style="color:#000000;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579" id="path18274" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle transform="matrix(0.7868642,0,0,0.7868642,-32.12087,703.9236)" style="color:#000000;opacity:0.3;fill:url(#linearGradient19282);stroke-width:0.2773579" id="path18276" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path18278" style="color:#000000;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.188915,0,0,1.188915,-180.0038,648.4036)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path18280" style="color:#000000;opacity:0.3;fill:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(0.7641009,0,0,0.7641009,-26.53634,710.0645)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path18282" style="color:#000000;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.111722,0,0,1.111722,-153.9731,662.0991)" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle transform="matrix(0.7391118,0,0,0.7391118,-11.28526,713.4684)" style="color:#000000;opacity:0.3;fill:url(#linearGradient19282);stroke-width:0.2773579" id="path18284" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle transform="matrix(1.188915,0,0,1.188915,-185.8816,654.4478)" style="color:#000000;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579" id="path18286" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle transform="matrix(0.711897,0,0,0.711897,-4.00112,720.2677)" style="color:#000000;opacity:0.3;fill:url(#linearGradient19282);stroke-width:0.2773579" id="path18288" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" cx="375.0941" cy="137.9821" r="1.111868" />
+<circle inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" id="path18290" style="color:#000000;opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.2773579" transform="matrix(1.188915,0,0,1.188915,-180.0038,654.4036)" cx="375.0941" cy="137.9821" r="1.111868" />
+<ellipse transform="matrix(3.241379,0,0,2.666667,-552.8896,22.62291)" id="path18292" style="fill:url(#linearGradient19282)" cx="250.8125" cy="296.2031" rx="0.1875" ry="0.234375" />
+<ellipse style="fill:url(#linearGradient19282)" id="path18294" transform="matrix(3.241379,0,0,2.666667,-552.9521,28.59166)" cx="250.8125" cy="296.2031" rx="0.1875" ry="0.234375" />
+<ellipse transform="matrix(3.241379,0,0,2.666667,-547.0459,22.56041)" id="path18296" style="fill:url(#linearGradient19282)" cx="250.8125" cy="296.2031" rx="0.1875" ry="0.234375" />
+<ellipse transform="matrix(3.241379,0,0,2.666667,-547.0459,28.62291)" id="path18298" style="fill:url(#linearGradient19282)" cx="250.8125" cy="296.2031" rx="0.1875" ry="0.234375" />
</g>
<g id="tool-pointer" inkscape:label="#draw_select">
-<rect y="527.3309" x="284.9688" height="24" width="24" id="rect10522" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path8245" d="M 291,530.7715 291,545.8895 292.2962,545.8895 294.8887,540.6366 300,549.3622 304,549.3622 297.4812,539.4356 303.5989,539.4356 303.5989,537.818 291,529.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="527.3309" x="284.9688" height="24" width="24" id="rect10522" style="color:#000000;fill:none" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path8245" d="M 291,530.7715 291,545.8895 292.2962,545.8895 294.8887,540.6366 300,549.3622 304,549.3622 297.4812,539.4356 303.5989,539.4356 303.5989,537.818 291,529.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="tool-pointer-16px" inkscape:label="#g25899">
-<g inkscape:label="stock-cursor" id="g8247" style="display:inline" transform="translate(196.9998,-71.63782)">
-<rect style="fill:none;stroke:none" id="rect8243" width="16" height="16" x="-120" y="382" transform="translate(241.0002,217)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 125.0002,601.9231 125.0002,611 125.8233,611 127.4694,607.8461 130.531,613 133.0002,613 129.1156,607 133.0002,607 133.0002,606.1538 125.0002,601.0769 Z" id="path8245-6" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
+<g inkscape:label="stock-cursor" id="g8247" transform="translate(196.9998,-71.63782)">
+<rect style="fill:none" id="rect8243" width="16" height="16" x="-120" y="382" transform="translate(241.0002,217)" />
+<path style="fill:url(#linearGradient19282)" d="M 125.0002,601.9231 125.0002,611 125.8233,611 127.4694,607.8461 130.531,613 133.0002,613 129.1156,607 133.0002,607 133.0002,606.1538 125.0002,601.0769 Z" id="path8245-6" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
</g>
</g>
<g id="tool-node-editor" inkscape:label="#draw_node" transform="translate(0,3)">
-<rect y="555.4009" x="285" height="24" width="24" id="rect10524" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="csc" id="path13970" d="M 287.5,577.4009 C 287,569.4009 288.1365,565.0439 291.4649,561.9987 294.4024,559.3112 299,557.4009 307,557.9009" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999996;marker:none" id="rect10534" width="4" height="4" x="289" y="559.3622" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999995;marker:none" id="rect10541" width="3" height="3" x="286" y="575.3622" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" id="path10543" d="M 294,564.3622 301.8,578.4009 307,573.1363 294,564.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<use style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" xlink:href="#rect10541" height="1250" width="1250" transform="translate(18.99987,-19.00036)" id="use5791" y="0" x="0" />
+<rect y="555.4009" x="285" height="24" width="24" id="rect10524" style="color:#000000;fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="csc" id="path13970" d="M 287.5,577.4009 C 287,569.4009 288.1365,565.0439 291.4649,561.9987 294.4024,559.3112 299,557.4009 307,557.9009" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999996" id="rect10534" width="4" height="4" x="289" y="559.3622" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999995" id="rect10541" width="3" height="3" x="286" y="575.3622" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" id="path10543" d="M 294,564.3622 301.8,578.4009 307,573.1363 294,564.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<use style="fill:url(#linearGradient19282)" xlink:href="#rect10541" height="1250" width="1250" transform="translate(18.99987,-19.00036)" id="use5791" y="0" x="0" />
</g>
<g id="tool-node-editor-16px" inkscape:label="#g13976" transform="matrix(0.9996703,0,0,0.9975116,0.1048399,4.421879)">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect13947" width="15.98754" height="16.01739" x="318.0086" y="555.3535" />
-<rect y="557.3622" x="320" height="3.999997" width="4" id="rect13950" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999996;marker:none" />
-<rect y="568.3622" x="318" height="2.999997" width="2.999998" id="rect13952" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999995;marker:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 324.0039,561.3341 329.1999,570.7034 332.6638,567.1899 324.0039,561.3341 Z" id="path13954" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
-<use x="0" y="0" id="use13956" transform="matrix(0.9994803,0,0,1.000725,45.15021,-20.41907)" width="1250" height="1250" xlink:href="#rect10541" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="csccsccc" inkscape:connector-curvature="0" id="path10536" d="M 333.9687,556.3934 C 327.637,556.1377 323.5218,557.864 321.6875,560.0809 319.324,562.9374 318.829,563.9913 319.1157,571.3934 L 320.0312,571.3309 C 320,566.4559 319.8068,563.6542 322,561.3622 324.0459,559.2241 325.5086,557.3366 334.0153,557.4247 L 333.9375,556.3934 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" />
-</g>
-<g id="zoom-16px" inkscape:label="#g14119">
-<g inkscape:label="#g11534" id="zoom-fit-drawing-8" transform="translate(243,-18)">
-<g inkscape:label="#zoom_select" id="g11478-6" transform="translate(0,20)">
-<g id="g11480-6" inkscape:label="#zoom_select" transform="translate(-23,19.5)">
-<g inkscape:label="#zoom_selection" id="g11482-8">
-<g inkscape:label="#g11150" id="g11484-2" transform="translate(0,20)">
-<g id="g11486-8" transform="translate(0,19.96825)">
-<g id="g11488-9" transform="matrix(1,0,0,0.9980195,0,21.07621)" />
-</g>
-</g>
-</g>
-</g>
-<g transform="translate(-21,40)" id="g11492-1">
-<g id="g11494-4" transform="translate(21)">
-<g id="g11496-6" transform="translate(0,20)">
-<g id="g11498-9">
-<rect transform="translate(0,512.3622)" y="15" x="75" height="16" width="16" id="rect11500-0" style="fill:none;stroke:none" />
-</g>
-<g id="g11502-5">
-<path inkscape:connector-curvature="0" id="path11504-8" transform="translate(-243,456.3622)" d="M 325.5,71 C 321.3579,71 318,74.33709 318,78.4375 318,82.53789 321.3579,85.84375 325.5,85.84375 326.9733,85.84375 328.3409,85.41397 329.5,84.6875 L 331.4687,86.625 C 331.9867,87.13661 332.8021,87.11304 333.3125,86.59375 L 333.5625,86.34375 C 334.0729,85.82451 334.0805,84.98035 333.5625,84.46875 L 331.6562,82.625 C 332.4955,81.42604 333,80.00669 333,78.4375 333,74.3371 329.6421,71 325.5,71 Z M 325.5,73 C 328.5376,73 331,75.46243 331,78.5 331,81.53757 328.5376,84 325.5,84 322.4624,84 320,81.53757 320,78.5 320,75.46243 322.4624,73 325.5,73 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-</g>
-</g>
-</g>
+<rect style="color:#000000;fill:none" id="rect13947" width="15.98754" height="16.01739" x="318.0086" y="555.3535" />
+<rect y="557.3622" x="320" height="3.999997" width="4" id="rect13950" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999996" />
+<rect y="568.3622" x="318" height="2.999997" width="2.999998" id="rect13952" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999995" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 324.0039,561.3341 329.1999,570.7034 332.6638,567.1899 324.0039,561.3341 Z" id="path13954" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" />
+<use x="0" y="0" id="use13956" transform="matrix(0.9994803,0,0,1.000725,45.15021,-20.41907)" width="1250" height="1250" xlink:href="#rect10541" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="csccsccc" inkscape:connector-curvature="0" id="path10536" d="M 333.9687,556.3934 C 327.637,556.1377 323.5218,557.864 321.6875,560.0809 319.324,562.9374 318.829,563.9913 319.1157,571.3934 L 320.0312,571.3309 C 320,566.4559 319.8068,563.6542 322,561.3622 324.0459,559.2241 325.5086,557.3366 334.0153,557.4247 L 333.9375,556.3934 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" />
</g>
<g id="zoom" inkscape:label="#draw_zoom">
-<g inkscape:label="#zoom_select" id="g14065" transform="matrix(1.5,0,0,1.5,172.5,-291.6811)">
-<g id="g14067" inkscape:label="#zoom_select" transform="translate(-23,19.5)">
-<g inkscape:label="#zoom_selection" id="g14069">
-<g inkscape:label="#g11150" id="g14071" transform="translate(0,20)">
-<g id="g14073" transform="translate(0,19.96825)">
-<g id="g14075" transform="matrix(1,0,0,0.9980195,0,21.07621)" />
-</g>
-</g>
-</g>
-</g>
-<g transform="translate(-21,40)" id="g14077">
-<g id="g14079" transform="translate(21)">
-<g id="g14081" transform="translate(0,20)">
-<g id="g14083">
-<rect transform="translate(0,512.3622)" y="15" x="75" height="16" width="16" id="rect14085" style="fill:none;stroke:none" />
-</g>
-<g id="g14087">
-<path sodipodi:nodetypes="cssccccccsccsssss" id="path14089" d="M 82.64074,528.6955 C 79.12862,528.6955 76.28148,531.4771 76.28148,534.8949 76.28148,538.3127 79.12862,541.0682 82.64074,541.0682 83.89,541.0682 85.04956,540.71 86.03234,540.1045 L 88.33333,542.6955 C 88.77254,543.122 89.4639,543.1023 89.89665,542.6695 L 90.10863,542.4611 C 90.54138,542.0283 90.54783,541.3247 90.10863,540.8983 L 87.86063,538.3853 C 88.57228,537.386 89,536.2029 89,534.8949 89,531.4771 86.15286,528.6956 82.64074,528.6956 Z M 82.64074,530.3626 C 85.2163,530.3626 87.3042,532.4151 87.3042,534.947 87.3042,537.4789 85.2163,539.5314 82.64074,539.5314 80.06518,539.5314 77.97728,537.4789 77.97728,534.947 77.97728,532.4151 80.06518,530.3626 82.64074,530.3626 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-</g>
-</g>
-</g>
+<rect style="fill:none;stroke-width:1.5" id="rect14085" width="24" height="24" x="285" y="589.3622" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);stroke-width:1.5" d="m 296.4611,591.3622 c -5.2682,0 -9.5389,4.1724 -9.5389,9.299 0,5.1268 4.2707,9.26 9.5389,9.26 1.8739,0 3.6132,-0.5373 5.0874,-1.4455 L 305,612.3622 c 0.6588,0.6397 1.6958,0.6101 2.345,-0.039 l 0.3179,-0.3126 c 0.6492,-0.6492 0.6588,-1.7046 0,-2.3442 l -3.372,-3.7695 c 1.0675,-1.499 1.7091,-3.2737 1.7091,-5.2357 0,-5.1267 -4.2707,-9.2989 -9.5389,-9.2989 z m 0,2.5006 c 3.8633,0 6.9952,3.0787 6.9952,6.8766 0,3.7978 -3.1319,6.8766 -6.9952,6.8766 -3.8633,0 -6.9952,-3.0788 -6.9952,-6.8766 0,-3.7979 3.1319,-6.8766 6.9952,-6.8766 z" id="path14089" sodipodi:nodetypes="cssccccccsccsssss" />
</g>
+<g id="zoom-16px">
+<rect y="589.3622" x="318" height="16" width="16" id="rect11500-0" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path11504-8" d="m 325.5,589.3622 c -4.1421,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.3579,7.4063 7.5,7.4063 1.4733,0 2.8409,-0.4298 4,-1.1563 l 1.9687,1.9375 c 0.518,0.5116 1.3334,0.488 1.8438,-0.031 l 0.25,-0.25 c 0.5104,-0.5192 0.518,-1.3634 0,-1.875 l -1.9063,-1.8438 c 0.8393,-1.199 1.3438,-2.6183 1.3438,-4.1875 0,-4.1004 -3.3579,-7.4375 -7.5,-7.4375 z m 0,2 c 3.0376,0 5.5,2.4624 5.5,5.5 0,3.0376 -2.4624,5.5 -5.5,5.5 -3.0376,0 -5.5,-2.4624 -5.5,-5.5 0,-3.0376 2.4624,-5.5 5.5,-5.5 z" style="fill:url(#linearGradient19282)" />
</g>
<g id="draw-rectangle" inkscape:label="#draw_rect">
-<rect y="620.3622" x="285" height="24" width="24" id="rect14154" style="fill:none;stroke:none" />
-<path id="rect14156" transform="translate(0,512.3622)" d="M 287,110 287,130 307,130 307,110 287,110 Z M 289,112 305,112 305,128 289,128 289,112 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect y="620.3622" x="285" height="24" width="24" id="rect14154" style="fill:none" />
+<path id="rect14156" transform="translate(0,512.3622)" d="M 287,110 287,130 307,130 307,110 287,110 Z M 289,112 305,112 305,128 289,128 289,112 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
-<g id="draw-rectangle-16px" inkscape:label="#g14172">
-<rect y="620.3622" x="318" height="16" width="16" id="rect14161" style="fill:none;fill-opacity:1;stroke:none" />
-<path id="rect14163" transform="translate(0,512.3622)" d="M 319,109 319,123 333,123 333,109 319,109 Z M 321,111 331,111 331,121 321,121 321,111 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<g id="draw-rectangle-16px">
+<rect y="620.3622" x="318" height="16" width="16" id="rect14161" style="fill:none" />
+<path id="rect14163" transform="translate(0,512.3622)" d="m 319,109 0,14 14,0 0,-14 -14,0 z m 2,2 10,0 0,10 -10,0 0,-10 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
-<g id="draw-ellipse" inkscape:label="#g14219">
-<rect y="651.3622" x="285" height="24" width="24" id="rect14195" style="fill:none;fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path14203" d="M 297,652.3622 C 290.9249,652.3622 286,657.2871 286,663.3622 286,669.4373 290.9249,674.3622 297,674.3622 303.0751,674.3622 308,669.4373 308,663.3622 308,657.2871 303.0751,652.3622 297,652.3622 Z M 297,654.1955 C 302.0626,654.1955 306.1667,658.2996 306.1667,663.3622 306.1667,668.4248 302.0626,672.5288 297,672.5288 291.9374,672.5288 287.8333,668.4248 287.8333,663.3622 287.8333,658.2996 291.9374,654.1955 297,654.1955 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g id="draw-ellipse">
+<rect y="651.3622" x="285" height="24" width="24" id="rect14195" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path14203" d="m 297,652.3622 c -6.0751,0 -11,4.9249 -11,11 0,6.0751 4.9249,11 11,11 6.0751,0 11,-4.9249 11,-11 0,-6.0751 -4.9249,-11 -11,-11 z m 0,1.8333 c 5.0626,0 9.1667,4.1041 9.1667,9.1667 0,5.0626 -4.1041,9.1666 -9.1667,9.1666 -5.0626,0 -9.1667,-4.104 -9.1667,-9.1666 0,-5.0626 4.1041,-9.1667 9.1667,-9.1667 z" style="fill:url(#linearGradient19282)" />
</g>
-<g id="draw-ellipse-16px" inkscape:label="#g14223">
-<g transform="translate(0,31)" id="g14208" inkscape:label="#g14172">
-<rect y="620.3622" x="318" height="16" width="16" id="rect14210" style="fill:none;stroke:none" />
+<g id="draw-ellipse-16px">
+<rect style="fill:none" id="rect14210" width="16" height="16" x="318" y="651.3622" />
+<path id="path14214" transform="translate(0,512.3622)" d="m 326,139 c -4.4183,0 -8,3.5817 -8,8 0,4.4183 3.5817,8 8,8 4.4183,0 8,-3.5817 8,-8 0,-4.4183 -3.5817,-8 -8,-8 z m 0,2 c 3.3137,0 6,2.6863 6,6 0,3.3137 -2.6863,6 -6,6 -3.3137,0 -6,-2.6863 -6,-6 0,-3.3137 2.6863,-6 6,-6 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
-<path id="path14214" transform="translate(0,512.3622)" d="M 326,139 C 321.5817,139 318,142.5817 318,147 318,151.4183 321.5817,155 326,155 330.4183,155 334,151.4183 334,147 334,142.5817 330.4183,139 326,139 Z M 326,141 C 329.3137,141 332,143.6863 332,147 332,150.3137 329.3137,153 326,153 322.6863,153 320,150.3137 320,147 320,143.6863 322.6863,141 326,141 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g style="fill:none" transform="matrix(0.9001378,0,0,0.8929798,-118.0438,528.387)" id="g14408" />
-<g id="draw-polygon-star" inkscape:label="#g14435">
+<g id="draw-polygon-star">
<g style="fill:none" transform="matrix(1.152542,0,0,1.167743,-234.553,477.0869)" id="g6790">
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="star" transform="matrix(0.8676476,0,0,0.856353,202.6658,29.35174)" d="M 294.5,171 286,177.6562 289,188 290.9375,188 292.0152,185.9634 C 291.4607,185.9574 291.0393,186.0048 290.4861,186.0442 L 287.9281,178.3535 294.5518,173.0884 299.5303,177 300.875,176 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.9850147;marker:none" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="star" transform="matrix(0.8676476,0,0,0.856353,202.6658,29.35174)" d="m 294.5,171 -8.5,6.6562 3,10.3438 1.9375,0 1.0777,-2.0366 c -0.5545,-0.01 -0.9759,0.041 -1.5291,0.081 l -2.558,-7.6907 6.6237,-5.2651 4.9785,3.9116 1.3447,-1 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.9850147" />
</g>
-<rect y="682.3622" x="285" height="24" width="24" id="rect3610" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1.0000001;marker:none" />
-<path sodipodi:nodetypes="cccccccccccccccccccccc" inkscape:connector-curvature="0" id="path14419" transform="translate(0,512.3622)" d="M 302.5937,174.0312 297.4687,178.8125 290.8437,177.0937 293.6875,183.5 290,189.4062 296.9062,188.5937 301.2187,194 302.625,187 309.0312,185.2955 302.9687,181 Z M 301.3286,177.4861 301.5786,181.9062 305.6464,184.6089 301.4924,185.6076 300.4794,190.779 297.7187,187.2317 292.7348,187.6045 295.8848,183.6121 293.3415,179.1563 298.0053,180.4634 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" />
+<rect y="682.3622" x="285" height="24" width="24" id="rect3610" style="color:#000000;fill:none;stroke-width:1.0000001" />
+<path sodipodi:nodetypes="cccccccccccccccccccccc" inkscape:connector-curvature="0" id="path14419" transform="translate(0,512.3622)" d="m 302.5937,174.0312 -5.125,4.7813 -6.625,-1.7188 2.8438,6.4063 -3.6875,5.9062 6.9062,-0.8125 4.3125,5.4063 1.4063,-7 6.4062,-1.7045 L 302.9687,181 Z m -1.2651,3.4549 0.25,4.4201 4.0678,2.7027 -4.154,0.9987 -1.013,5.1714 -2.7607,-3.5473 -4.9839,0.3728 3.15,-3.9924 -2.5433,-4.4558 4.6638,1.3071 z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd" />
</g>
-<g id="draw-polygon-star-16px" inkscape:label="#g14441">
+<g id="draw-polygon-star-16px">
<g id="g14422" transform="matrix(0.7673619,0,0,0.7784952,-27.93671,545.512)" style="fill:none">
-<path style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.9850147;marker:none" d="M 294.5,171 286,177.6562 289.0039,187.5 291.116,187.5469 291.9682,186.0103 290.8147,186.0443 288.3974,178.4005 294.411,173.9322 299.0482,177.6095 300.875,176 Z" transform="matrix(0.8676476,0,0,0.856353,202.6658,29.35174)" id="path14424" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
+<path style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.9850147" d="m 294.5,171 -8.5,6.6562 3.0039,9.8438 2.1121,0.047 0.8522,-1.5366 -1.1535,0.034 -2.4173,-7.6438 6.0136,-4.4683 4.6372,3.6773 L 300.875,176 Z" transform="matrix(0.8676476,0,0,0.856353,202.6658,29.35174)" id="path14424" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
</g>
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1.0000001;marker:none" id="rect14426" width="15.97919" height="16" x="317.9815" y="682.3622" />
-<path id="path14432" transform="translate(0,512.3622)" d="M 329.6875,172.6875 326.2812,175.875 321.875,174.7187 323.7812,179 321.3125,182.9375 325.9062,182.4062 328.7812,186 329.7187,181.3437 333.9687,180.1875 329.9375,177.3437 329.6875,172.6875 Z M 328.5937,175.8437 328.7187,178.2187 330.9062,179.6875 328.6562,180.2187 328.125,183 326.625,181.0937 323.9687,181.2812 325.6562,179.1562 324.2812,176.75 326.7812,177.4375 328.5937,175.8437 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" inkscape:connector-curvature="0" />
+<rect style="color:#000000;fill:none;stroke-width:1.0000001" id="rect14426" width="15.97919" height="16" x="317.9815" y="682.3622" />
+<path id="path14432" transform="translate(0,512.3622)" d="m 329.6875,172.6875 -3.4063,3.1875 -4.4062,-1.1563 1.9062,4.2813 -2.4687,3.9375 4.5937,-0.5313 2.875,3.5938 0.9375,-4.6563 4.25,-1.1562 -4.0312,-2.8438 -0.25,-4.6562 z m -1.0938,3.1562 0.125,2.375 2.1875,1.4688 -2.25,0.5312 -0.5312,2.7813 -1.5,-1.9063 -2.6563,0.1875 1.6875,-2.125 -1.375,-2.4062 2.5,0.6875 1.8125,-1.5938 z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
</g>
<g id="draw-spiral" inkscape:label="#draw-arc">
-<rect y="712.3622" x="285" height="24.00002" width="24" id="rect14479" style="fill:none;fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path225" d="M 296.1892,725.3522 C 297.1615,725.1241 297.6087,726.4602 297.4413,727.2523 297.0912,728.9088 295.2379,729.4848 293.8815,728.94 291.7669,728.0905 291.0837,725.3273 291.9662,723.253 293.1812,720.3976 296.5504,719.5123 299.0795,720.8586 302.3271,722.5875 303.3068,727.0195 301.658,730.3324 299.6334,734.4005 294.6779,735.6038 290.9911,733.4335 286.6026,730.85 285.3235,724.7166 287.7495,720.1728 290.5719,714.8868 297.1297,713.3638 301.9699,716.3651 307.5027,719.7957 309.0821,727.6408 305.8747,733.4126 305.8642,733.4315 305.8536,733.4504 305.8431,733.4692" style="font-size:12px;fill:none;stroke:url(#linearGradient19282);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-</g>
-<g id="draw-spiral-16px" inkscape:label="#g14544">
-<rect style="fill:none;stroke:none" id="rect14538" width="16" height="16" x="318" y="712.3622" />
-<path style="font-size:12px;fill:none;stroke:url(#linearGradient19282);stroke-width:1.2997133;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 325.9524,720.7966 C 326.5873,720.6491 326.8792,721.5133 326.7699,722.0256 326.5413,723.097 325.3313,723.4696 324.4457,723.1172 323.065,722.5678 322.6189,720.7805 323.1951,719.4389 323.9884,717.592 326.1882,717.0194 327.8396,717.8902 329.96,719.0084 330.5997,721.8751 329.5231,724.0178 328.2012,726.6491 324.9657,727.4274 322.5585,726.0236 319.6931,724.3527 318.858,720.3856 320.442,717.4466 322.2847,714.0276 326.5665,713.0425 329.7268,714.9838 333.3393,717.2027 334.3705,722.2769 332.2763,726.0101 332.2683,726.0223 332.2625,726.0345 332.2557,726.0467" id="path14540" inkscape:connector-curvature="0" />
+<rect y="712.3622" x="285" height="24.00002" width="24" id="rect14479" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path225" d="M 296.1892,725.3522 C 297.1615,725.1241 297.6087,726.4602 297.4413,727.2523 297.0912,728.9088 295.2379,729.4848 293.8815,728.94 291.7669,728.0905 291.0837,725.3273 291.9662,723.253 293.1812,720.3976 296.5504,719.5123 299.0795,720.8586 302.3271,722.5875 303.3068,727.0195 301.658,730.3324 299.6334,734.4005 294.6779,735.6038 290.9911,733.4335 286.6026,730.85 285.3235,724.7166 287.7495,720.1728 290.5719,714.8868 297.1297,713.3638 301.9699,716.3651 307.5027,719.7957 309.0821,727.6408 305.8747,733.4126 305.8642,733.4315 305.8536,733.4504 305.8431,733.4692" style="fill:none;stroke:url(#linearGradient19282);stroke-width:2;stroke-linecap:round;stroke-linejoin:round" />
</g>
-<g id="draw-freehand-16px" inkscape:label="#g18453" transform="matrix(1,0,0,0.9969194,0,2.339264)">
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path69005" d="M 331.1562,744.3622 329.2812,746.3622 C 330.61,746.3881 331.9464,747.5738 332,748.7997 L 334,746.7997 C 333.9446,745.5344 332.5256,744.3113 331.1562,744.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<rect ry="0" rx="0" y="743.3622" x="318" height="16" width="16" id="rect63426" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc" id="path2273-6-2" d="M 320.6304,755.3982 328.1506,747.3637 C 329.5199,747.3128 330.9446,748.5272 331,749.7925 L 323.51,757.5865 319,759.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<path sodipodi:nodetypes="csccccc" inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0219795;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 320.2474,751.8512 C 316.3902,750.0262 320.0353,750.8763 320.9242,749.8802 321.4865,749.2502 320.5579,748.4937 320.0427,748.0827 319.5015,747.6511 318.9506,746.9388 318.8852,746.2487 318.7957,745.3054 319.6419,744.5816 320.1739,744.2829 320.7342,743.9682 321.6309,743.7282 322.4383,743.8626 323.3086,744.0075 324.2427,744.4886 324.5377,744.7843" id="path18428" />
+<g id="draw-spiral-16px">
+<rect style="fill:none" id="rect14538" width="16" height="16" x="318" y="712.3622" />
+<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.2997133;stroke-linecap:round;stroke-linejoin:round" d="m 325.9524,720.7966 c 0.6349,-0.1475 0.9268,0.7167 0.8175,1.229 -0.2286,1.0714 -1.4386,1.444 -2.3242,1.0916 -1.3807,-0.5494 -1.8268,-2.3367 -1.2506,-3.6783 0.7933,-1.8469 2.9931,-2.4195 4.6445,-1.5487 2.1204,1.1182 2.7601,3.9849 1.6835,6.1276 -1.3219,2.6313 -4.5574,3.4096 -6.9646,2.0058 -2.8654,-1.6709 -3.7005,-5.638 -2.1165,-8.577 1.8427,-3.419 6.1245,-4.4041 9.2848,-2.4628 3.6125,2.2189 4.6437,7.2931 2.5495,11.0263 -0.01,0.012 -0.014,0.024 -0.021,0.037" id="path14540" inkscape:connector-curvature="0" />
</g>
<g id="draw-freehand" inkscape:label="#draw_freehand" transform="matrix(0.9999983,0,0,0.9920972,-0.0013719,5.877665)">
-<g transform="matrix(1.500002,0,0,1.507293,163.5014,476.6427)" style="display:inline" id="g18432" inkscape:label="stock-tool-pencil">
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path18434" transform="translate(241.0002,217)" d="M -146.8437,-39 -148.7187,-37 C -147.39,-36.97414 -146.0536,-35.78843 -146,-34.5625 L -144,-36.5625 C -144.0554,-37.82782 -145.4744,-39.0509 -146.8437,-39 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<rect ry="0" rx="0" y="177" x="81.0002" height="16" width="16" id="rect18437" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc" id="path18439" d="M 83.63056,189.036 91.15078,181.0015 C 92.52013,180.9506 93.94484,182.165 94.0002,183.4303 L 86.51016,191.2243 82.0002,193 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+<g transform="matrix(1.500002,0,0,1.507293,163.5014,476.6427)" id="g18432" inkscape:label="stock-tool-pencil">
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path18434" transform="translate(241.0002,217)" d="M -146.8437,-39 -148.7187,-37 C -147.39,-36.97414 -146.0536,-35.78843 -146,-34.5625 L -144,-36.5625 C -144.0554,-37.82782 -145.4744,-39.0509 -146.8437,-39 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<rect y="177" x="81.0002" height="16" width="16" id="rect18437" style="fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc" id="path18439" d="M 83.63056,189.036 91.15078,181.0015 C 92.52013,180.9506 93.94484,182.165 94.0002,183.4303 L 86.51016,191.2243 82.0002,193 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+</g>
+<path id="path18441" d="M 288.3729,756.2291 C 282.5871,753.4783 288.0548,754.7596 289.3882,753.2582 290.2316,752.3086 288.8387,751.1684 288.0659,750.5489 287.2541,749.8983 286.4277,748.8247 286.3296,747.7845 286.1954,746.3626 287.4648,745.2717 288.2628,744.8214 289.1032,744.3472 290.4482,743.9854 291.6593,744.188 292.9647,744.4064 294.366,745.1316 294.8084,745.5771" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.5366927;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" sodipodi:nodetypes="csccccc" />
</g>
-<path id="path18441" d="M 288.3729,756.2291 C 282.5871,753.4783 288.0548,754.7596 289.3882,753.2582 290.2316,752.3086 288.8387,751.1684 288.0659,750.5489 287.2541,749.8983 286.4277,748.8247 286.3296,747.7845 286.1954,746.3626 287.4648,745.2717 288.2628,744.8214 289.1032,744.3472 290.4482,743.9854 291.6593,744.188 292.9647,744.4064 294.366,745.1316 294.8084,745.5771" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.5366927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0" sodipodi:nodetypes="csccccc" />
+<g id="draw-freehand-16px" transform="matrix(1,0,0,0.9969194,0,2.339264)">
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path69005" d="m 331.1562,744.3622 -1.875,2 c 1.3288,0.026 2.6652,1.2116 2.7188,2.4375 l 2,-2 c -0.055,-1.2653 -1.4744,-2.4884 -2.8438,-2.4375 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<rect y="743.3622" x="318" height="16" width="16" id="rect63426" style="fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccc" id="path2273-6-2" d="m 320.6304,755.3982 7.5202,-8.0345 c 1.3693,-0.051 2.794,1.1635 2.8494,2.4288 l -7.49,7.794 -4.51,1.7757 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path sodipodi:nodetypes="csccccc" inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0219795;stroke-linecap:round;stroke-linejoin:round" d="m 320.2474,751.8512 c -3.8572,-1.825 -0.2121,-0.9749 0.6768,-1.971 0.5623,-0.63 -0.3663,-1.3865 -0.8815,-1.7975 -0.5412,-0.4316 -1.0921,-1.1439 -1.1575,-1.834 -0.089,-0.9433 0.7567,-1.6671 1.2887,-1.9658 0.5603,-0.3147 1.457,-0.5547 2.2644,-0.4203 0.8703,0.1449 1.8044,0.626 2.0994,0.9217" id="path18428" />
</g>
<g id="draw-path" inkscape:label="#draw_pen" transform="matrix(1,0,0,1.005373,0,-4.160648)">
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 299.3105,788.8172 297.7261,793.3262 C 297.3068,794.5509 299.0258,795.2054 299.4618,793.9356 L 301.2217,789.461 Z" id="path6331" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315" d="M 298.3053,782.7608 299.0988,783.942 305.023,786.3649 306.5841,785.8557 308.5733,780.3533 C 306.0733,780.3533 308.0733,774.3533 301.5733,774.3533 L 298.3053,782.7608 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 299,785.3622 298.2984,787.3622 303.2984,789.2614 304,787.3622 Z" id="path5211" sodipodi:nodetypes="ccccc" />
-<rect y="774.3622" x="285" height="23.86286" width="24" id="rect6268" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" id="path6270" d="M 289.157,793.883 C 300.8183,791.9441 287.4792,775.8414 287.4792,775.8414 L 298.5208,775.8414" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9583844;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect6272" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0028691;marker:none" d="M 286,793.3622 290,793.3622 290,797.3622 286,797.3622 Z" />
-<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.1173255;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 287,795.8798 296,795.8798" id="path18601" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect transform="translate(0,512.3622)" y="262" x="286" height="4" width="4" id="rect18603" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="draw-path-16px" inkscape:label="#g18689">
-<path sodipodi:nodetypes="ccccc" id="path18655" d="M 327.5403,784.0475 326.484,787.0697 C 326.2045,787.8905 327.3505,788.3292 327.6412,787.4782 L 328.8144,784.479 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 326.8702,779.9881 327.3992,780.7798 331.3486,782.4038 332.3893,782.0625 333.7154,778.3745 C 332.0488,778.3745 333.3821,774.3529 329.0488,774.3529 L 326.8702,779.9881 Z" id="path18657" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path18659" d="M 327.3333,781.7317 326.8656,783.0722 330.1989,784.3452 330.6666,783.0722 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect18661" width="15.99971" height="15.99436" x="318.0002" y="774.3588" />
-<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9760898;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 320.4034,786.8724 C 326.7656,785.6869 319.488,775.8417 319.488,775.8417 L 325.5121,775.8417" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" id="path18695" />
-<path inkscape:connector-curvature="0" id="path18687" d="M 319.0001,786.36 322.0001,786.36 322.0001,789.3617 319.0001,789.3617 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0028691;marker:none" />
-<path inkscape:connector-curvature="0" id="path18685" d="M 324.5485,789.1046 324.5485,789.1066" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0028691;marker:none" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path18667" d="M 319.4687,787.7828 324.5483,787.7828" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9398006;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18669" width="2.999945" height="2.995842" x="318.0002" y="774.3588" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 299.3105,788.8172 297.7261,793.3262 C 297.3068,794.5509 299.0258,795.2054 299.4618,793.9356 L 301.2217,789.461 Z" id="path6331" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315" d="M 298.3053,782.7608 299.0988,783.942 305.023,786.3649 306.5841,785.8557 308.5733,780.3533 C 306.0733,780.3533 308.0733,774.3533 301.5733,774.3533 L 298.3053,782.7608 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 299,785.3622 298.2984,787.3622 303.2984,789.2614 304,787.3622 Z" id="path5211" sodipodi:nodetypes="ccccc" />
+<rect y="774.3622" x="285" height="23.86286" width="24" id="rect6268" style="color:#000000;fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" id="path6270" d="M 289.157,793.883 C 300.8183,791.9441 287.4792,775.8414 287.4792,775.8414 L 298.5208,775.8414" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9583844" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect6272" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0028691" d="M 286,793.3622 290,793.3622 290,797.3622 286,797.3622 Z" />
+<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.1173255" d="M 287,795.8798 296,795.8798" id="path18601" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
+<rect transform="translate(0,512.3622)" y="262" x="286" height="4" width="4" id="rect18603" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="draw-path-16px">
+<path sodipodi:nodetypes="ccccc" id="path18655" d="m 327.5403,784.0475 -1.0563,3.0222 c -0.2795,0.8208 0.8665,1.2595 1.1572,0.4085 l 1.1732,-2.9992 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="m 326.8702,779.9881 0.529,0.7917 3.9494,1.624 1.0407,-0.3413 1.3261,-3.688 c -1.6666,0 -0.3333,-4.0216 -4.6666,-4.0216 l -2.1786,5.6352 z" id="path18657" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccc" id="path18659" d="m 327.3333,781.7317 -0.4677,1.3405 3.3333,1.273 0.4677,-1.273 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
+<rect style="color:#000000;fill:none" id="rect18661" width="15.99971" height="15.99436" x="318.0002" y="774.3588" />
+<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9760898" d="m 320.4034,786.8724 c 6.3622,-1.1855 -0.9154,-11.0307 -0.9154,-11.0307 l 6.0241,0" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" id="path18695" />
+<path inkscape:connector-curvature="0" id="path18687" d="m 319.0001,786.36 3,0 0,3.0017 -3,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0028691" />
+<path inkscape:connector-curvature="0" id="path18685" d="m 324.5485,789.1046 0,0" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0028691" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path18667" d="m 319.4687,787.7828 5.0796,0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9398006" />
+<rect style="fill:url(#linearGradient19282)" id="rect18669" width="2.999945" height="2.995842" x="318.0002" y="774.3588" />
</g>
<g id="draw-calligraphic">
-<rect y="805.3622" x="285" height="24" width="24" id="rect12294" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-</g>
-<path sodipodi:nodetypes="ccsccsc" id="path12296" d="M 285,805.3622 285,805.8622 C 291.7457,808.0497 284.0226,817.3245 285.8919,824.8622 288,833.3622 292.1779,826.8622 292.1779,826.8622 292.1779,826.8622 292,824.3622 291.7563,825.3622 291.7563,825.3622 289,829.3622 288,824.3622 286.3244,815.9841 300.5995,805.3622 285,805.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path23137" d="M 309,809.3622 309.0374,812.8073 303.955,807.3449 305.6649,805.4924 M 302.9575,808.4373 305,810.6223 305.9975,811.7148 308.0399,813.8998 306.9949,814.9923 C 305.9818,816.0834 306.0131,816.0874 305,819.3622 300.9471,823.7268 296.8776,823.7321 296.8776,823.7321 L 295.8801,824.8246 C 295.8801,824.8246 294.8508,825.9157 293.8376,824.8246 L 299.9175,818.2697 300.0125,818.1273 C 300.8143,818.5484 301.7689,818.4163 302.435,817.6998 303.2745,816.7956 303.2739,815.3251 302.435,814.4223 301.5961,813.5195 300.2346,813.5182 299.3951,814.4223 298.7291,815.1391 298.6236,816.219 299.0151,817.0823 L 298.9201,817.1773 292.8402,823.7322 C 291.827,822.641 292.8402,821.5472 292.8402,821.5472 L 293.8376,820.4547 C 293.8376,820.4547 293.8222,816.0794 297.8751,811.7149 300.9152,810.6224 300.9468,810.6211 301.96,809.5299 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="ccccccccccccccccsccccccccc" />
-<g id="draw-calligraphic-16px" inkscape:label="#g23167" transform="matrix(1.012692,0,0,0.9999339,-4.035935,0.054311)">
-<rect y="805.4244" x="317.9998" height="15.93774" width="15.79948" id="rect10047" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" id="path10153" d="M 333.5474,809.2372 332.8118,810.156 329.51,806.5762 330.6209,805.3622 M 328.862,807.2921 330.1889,808.724 330.8369,809.44 332.1638,810.8719 331.4849,811.5879 C 330.8267,812.3029 330.8471,812.3056 330.1889,814.4517 327.5559,817.312 324.9121,817.3155 324.9121,817.3155 L 324.2641,818.0314 C 324.2641,818.0314 323.5954,818.7465 322.9371,818.0314 L 326.887,813.7357 326.9487,813.6424 C 327.4696,813.9184 328.0897,813.8318 328.5225,813.3623 329.0679,812.7697 329.0675,811.8061 328.5225,811.2144 327.9775,810.6227 327.093,810.6219 326.5475,811.2144 326.1149,811.6841 326.0464,812.3918 326.3007,812.9576 L 326.239,813.0199 322.2891,817.3156 C 321.6309,816.6005 322.2891,815.8837 322.2891,815.8837 L 322.9371,815.1677 C 322.9371,815.1677 322.927,812.3004 325.5601,809.4401 327.5351,808.7242 327.5557,808.7233 328.2139,808.0082 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="ccccccccccccccccsccccccccc" />
-<path sodipodi:nodetypes="ccsccscc" id="path23141" d="M 318,806.0284 318,806.3622 C 321.6152,807.8224 318,815.3622 318,818.3622 318,824.4712 322,819.3622 322,819.3622 L 322,818.3622 C 322,818.3622 320.1938,821.4369 319.6579,818.0993 318.7599,812.5069 326.36,806.0284 318,806.0284 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="draw-text-16px" inkscape:label="#g18177">
-<rect y="836.3622" x="318" height="16" width="16" id="rect74840-6" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path74842-8" d="M 322.6429,837.3622 318,850.3622 320.7857,850.3622 C 322.1657,846.6479 320.7437,850.0497 322.1237,846.3354 L 326.7513,846.3354 328.2143,850.3622 331,850.3622 326.3571,837.3622 Z M 324.5,840.1479 326.3777,844.7907 322.6634,844.7907 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="325" x="332" height="14" width="1" id="rect17373" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect17375" d="M 331,324 331.75,324 332.4375,325 333.25,324 334,324 334,325 331,325 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="translate(0,512.3622)" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect17377" d="M 331,339 334,339 334,340 333.25,340 332.5625,339 331.75,340 331,340 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="translate(0,512.3622)" />
+<rect y="805.3622" x="285" height="24" width="24" id="rect12294" style="color:#000000;fill:none" />
+<path sodipodi:nodetypes="ccsccsc" id="path12296" d="M 285,805.3622 285,805.8622 C 291.7457,808.0497 284.0226,817.3245 285.8919,824.8622 288,833.3622 292.1779,826.8622 292.1779,826.8622 292.1779,826.8622 292,824.3622 291.7563,825.3622 291.7563,825.3622 289,829.3622 288,824.3622 286.3244,815.9841 300.5995,805.3622 285,805.3622 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path23137" d="M 309,809.3622 309.0374,812.8073 303.955,807.3449 305.6649,805.4924 M 302.9575,808.4373 305,810.6223 305.9975,811.7148 308.0399,813.8998 306.9949,814.9923 C 305.9818,816.0834 306.0131,816.0874 305,819.3622 300.9471,823.7268 296.8776,823.7321 296.8776,823.7321 L 295.8801,824.8246 C 295.8801,824.8246 294.8508,825.9157 293.8376,824.8246 L 299.9175,818.2697 300.0125,818.1273 C 300.8143,818.5484 301.7689,818.4163 302.435,817.6998 303.2745,816.7956 303.2739,815.3251 302.435,814.4223 301.5961,813.5195 300.2346,813.5182 299.3951,814.4223 298.7291,815.1391 298.6236,816.219 299.0151,817.0823 L 298.9201,817.1773 292.8402,823.7322 C 291.827,822.641 292.8402,821.5472 292.8402,821.5472 L 293.8376,820.4547 C 293.8376,820.4547 293.8222,816.0794 297.8751,811.7149 300.9152,810.6224 300.9468,810.6211 301.96,809.5299 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="ccccccccccccccccsccccccccc" />
+</g>
+<g id="draw-calligraphic-16px" transform="matrix(1.012692,0,0,0.9999339,-4.035935,0.054311)">
+<rect y="805.4244" x="317.9998" height="15.93774" width="15.79948" id="rect10047" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path10153" d="m 333.5474,809.2372 -0.7356,0.9188 -3.3018,-3.5798 1.1109,-1.214 m -1.7589,1.9299 1.3269,1.4319 0.648,0.716 1.3269,1.4319 -0.6789,0.716 c -0.6582,0.715 -0.6378,0.7177 -1.296,2.8638 -2.633,2.8603 -5.2768,2.8638 -5.2768,2.8638 l -0.648,0.7159 c 0,0 -0.6687,0.7151 -1.327,0 l 3.9499,-4.2957 0.062,-0.093 c 0.5209,0.276 1.141,0.1894 1.5738,-0.2801 0.5454,-0.5926 0.545,-1.5562 0,-2.1479 -0.545,-0.5917 -1.4295,-0.5925 -1.975,0 -0.4326,0.4697 -0.5011,1.1774 -0.2468,1.7432 l -0.062,0.062 -3.9499,4.2957 c -0.6582,-0.7151 0,-1.4319 0,-1.4319 l 0.648,-0.716 c 0,0 -0.01,-2.8673 2.623,-5.7276 1.975,-0.7159 1.9956,-0.7168 2.6538,-1.4319 z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="ccccccccccccccccsccccccccc" />
+<path sodipodi:nodetypes="ccsccscc" id="path23141" d="m 318,806.0284 0,0.3338 c 3.6152,1.4602 0,9 0,12 0,6.109 4,1 4,1 l 0,-1 c 0,0 -1.8062,3.0747 -2.3421,-0.2629 -0.898,-5.5924 6.7021,-12.0709 -1.6579,-12.0709 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="draw-text" inkscape:label="#draw_text">
-<rect y="836.3622" x="285" height="24" width="24" id="rect74840-4" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path74842-5" d="M 291.1071,838.3622 285.0357,858.3622 289,858.3622 C 289,858.3622 289,858.3622 290.4573,853.3622 L 297.0427,853.3622 299.0357,858.3622 303,858.3622 296.3929,838.3622 Z M 293.75,842.8622 296.4221,850.3622 291.1363,850.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect18162" d="M 304,858.3622 308,858.3622 308,859.3622 307,859.3622 306,858.3622 305,859.3622 304,859.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect18164" d="M 304,837.3622 305,837.3622 306,838.3622 307,837.3622 308,837.3622 308,838.3622 304,838.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="838.3622" x="305" height="20" width="2" id="rect18166" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="836.3622" x="285" height="24" width="24" id="rect74840-4" style="fill:none" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path74842-5" d="M 291.1071,838.3622 285.0357,858.3622 289,858.3622 C 289,858.3622 289,858.3622 290.4573,853.3622 L 297.0427,853.3622 299.0357,858.3622 303,858.3622 296.3929,838.3622 Z M 293.75,842.8622 296.4221,850.3622 291.1363,850.3622 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect18162" d="M 304,858.3622 308,858.3622 308,859.3622 307,859.3622 306,858.3622 305,859.3622 304,859.3622 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect18164" d="M 304,837.3622 305,837.3622 306,838.3622 307,837.3622 308,837.3622 308,838.3622 304,838.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect y="838.3622" x="305" height="20" width="2" id="rect18166" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="draw-text-16px">
+<rect y="836.3622" x="318" height="16" width="16" id="rect74840-6" style="fill:none" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path74842-8" d="m 322.6429,837.3622 -4.6429,13 2.7857,0 c 1.38,-3.7143 -0.042,-0.3125 1.338,-4.0268 l 4.6276,0 1.463,4.0268 2.7857,0 -4.6429,-13 z m 1.8571,2.7857 1.8777,4.6428 -3.7143,0 z" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="325" x="332" height="14" width="1" id="rect17373" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect17375" d="m 331,324 0.75,0 0.6875,1 0.8125,-1 0.75,0 0,1 -3,0 z" style="fill:url(#linearGradient19282)" transform="translate(0,512.3622)" />
+<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="rect17377" d="m 331,339 3,0 0,1 -0.75,0 -0.6875,-1 -0.8125,1 -0.75,0 z" style="fill:url(#linearGradient19282)" transform="translate(0,512.3622)" />
</g>
<g id="draw-connector" inkscape:label="#draw_connector">
-<path inkscape:connector-curvature="0" id="path18392" d="M 300.4588,870.364 A 0.4981283,0.4997142 0 0 0 300.2098,871.2696 L 305.0038,875.1108 305.0038,882.8556 A 0.4981283,0.4997142 0 1 0 305.9999,882.8556 L 305.9999,874.8609 A 0.4981283,0.4997142 0 0 0 305.8132,874.4862 L 300.8324,870.4889 A 0.4981283,0.4997142 0 0 0 300.4588,870.364 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" id="path5856" d="M 293.4826,876.3625 A 0.5014023,0.4705905 20.55043 0 0 293.0253,876.636 L 290,882.6619 A 0.5057406,0.4746622 20.55043 1 0 290.9093,883.1036 L 293.9346,877.0777 A 0.5014023,0.4705905 20.55043 0 0 293.4826,876.3625 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
+<path inkscape:connector-curvature="0" id="path18392" d="M 300.4588,870.364 A 0.4981283,0.4997142 0 0 0 300.2098,871.2696 L 305.0038,875.1108 305.0038,882.8556 A 0.4981283,0.4997142 0 1 0 305.9999,882.8556 L 305.9999,874.8609 A 0.4981283,0.4997142 0 0 0 305.8132,874.4862 L 300.8324,870.4889 A 0.4981283,0.4997142 0 0 0 300.4588,870.364 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path5856" d="M 293.4826,876.3625 A 0.5014023,0.4705905 20.55043 0 0 293.0253,876.636 L 290,882.6619 A 0.5057406,0.4746622 20.55043 1 0 290.9093,883.1036 L 293.9346,877.0777 A 0.5014023,0.4705905 20.55043 0 0 293.4826,876.3625 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" />
<g transform="translate(280.4917,662.8525)" id="g5746">
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none" id="rect5710" width="7.99868" height="6.999122" x="10.5083" y="205.5097" />
+<rect style="color:#000000;fill:url(#linearGradient19282)" id="rect5710" width="7.99868" height="6.999122" x="10.5083" y="205.5097" />
</g>
-<use xlink:href="#g5746" height="1250" width="1250" transform="translate(-4.99868,15.99998)" id="use5750" y="0" x="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use xlink:href="#use5750" height="1250" width="1250" transform="translate(15,8.780086e-4)" id="use5757" y="0" x="0" style="fill:url(#linearGradient19282);fill-opacity:1" />
-<rect y="867.3622" x="285" height="24" width="24" id="rect18379" style="fill:none;stroke:none" />
+<use xlink:href="#g5746" height="1250" width="1250" transform="translate(-4.99868,15.99998)" id="use5750" y="0" x="0" style="fill:url(#linearGradient19282)" />
+<use xlink:href="#use5750" height="1250" width="1250" transform="translate(15,8.780086e-4)" id="use5757" y="0" x="0" style="fill:url(#linearGradient19282)" />
+<rect y="867.3622" x="285" height="24" width="24" id="rect18379" style="fill:none" />
</g>
-<g id="draw-connector-16px" inkscape:label="">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 328.3059,869.3633 A 0.3320867,0.3075163 0 0 0 328.1399,869.9206 L 331.3359,872.2844 331.3359,877.0504 A 0.3320867,0.3075163 0 1 0 332,877.0504 L 332,872.1306 A 0.3320867,0.3075163 0 0 0 331.8755,871.9 L 328.5549,869.4402 A 0.3320867,0.3075163 0 0 0 328.3059,869.3633 Z" id="path18424" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 323.6168,873.3624 A 0.3743302,0.2706915 3.632971 0 0 323.2732,873.5187 L 321,876.9627 A 0.3775708,0.2730349 3.632971 0 0 321.6832,877.2151 L 323.9564,873.7711 A 0.3743302,0.2706915 3.632971 0 0 323.6168,873.3624 Z" id="path18426" inkscape:connector-curvature="0" />
+<g id="draw-connector-16px">
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" d="m 328.3059,869.3633 a 0.3320867,0.3075163 0 0 0 -0.166,0.5573 l 3.196,2.3638 0,4.766 a 0.3320867,0.3075163 0 1 0 0.6641,0 l 0,-4.9198 A 0.3320867,0.3075163 0 0 0 331.8755,871.9 l -3.3206,-2.4598 a 0.3320867,0.3075163 0 0 0 -0.249,-0.077 z" id="path18424" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" d="m 323.6168,873.3624 a 0.3743302,0.2706915 3.632971 0 0 -0.3436,0.1563 L 321,876.9627 a 0.3775708,0.2730349 3.632971 0 0 0.6832,0.2524 l 2.2732,-3.444 a 0.3743302,0.2706915 3.632971 0 0 -0.3396,-0.4087 z" id="path18426" inkscape:connector-curvature="0" />
<g id="g18428" transform="matrix(0.6251024,0,0,0.7143754,315.4312,720.5511)">
-<rect y="205.5097" x="10.5083" height="6.999122" width="7.99868" id="rect18430" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none" />
+<rect y="205.5097" x="10.5083" height="6.999122" width="7.99868" id="rect18430" style="color:#000000;fill:url(#linearGradient19282)" />
</g>
-<use style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" x="0" y="0" id="use18432" transform="matrix(0.6251039,0,0,0.7142909,137.0948,258.099)" width="1250" height="1250" xlink:href="#g5746" />
-<use style="fill:url(#linearGradient19282);fill-opacity:1" x="0" y="0" id="use18434" transform="matrix(0.6251039,0,0,0.7143752,150.2195,246.5958)" width="1250" height="1250" xlink:href="#use5750" />
-<rect style="fill:none;stroke:none" id="rect18438" width="16.00001" height="16.00001" x="318" y="867.3622" />
+<use style="fill:url(#linearGradient19282)" x="0" y="0" id="use18432" transform="matrix(0.6251039,0,0,0.7142909,137.0948,258.099)" width="1250" height="1250" xlink:href="#g5746" />
+<use style="fill:url(#linearGradient19282)" x="0" y="0" id="use18434" transform="matrix(0.6251039,0,0,0.7143752,150.2195,246.5958)" width="1250" height="1250" xlink:href="#use5750" />
+<rect style="fill:none" id="rect18438" width="16.00001" height="16.00001" x="318" y="867.3622" />
</g>
<g id="color-gradient" inkscape:label="#color_gradient">
-<rect y="898.4431" x="285.0783" height="24" width="24" id="rect2808" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.4532662;marker:none" />
-<path style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.453266;marker:none" d="M 286,899.3622 286,921.5184 308.1562,921.5184 308.1562,899.3622 286,899.3622 Z M 287,900.3622 306.9687,900.3622 306.9687,920.3309 287,920.3309 287,900.3622 Z" id="rect4244" inkscape:connector-curvature="0" />
-<path id="rect18546" transform="translate(0,512.3622)" d="M 288,389 288,407 296.625,398.375 292.25,394.9687 288.9062,394.9687 288.9062,390.9687 292.9062,390.9687 292.9062,394.1875 297.3437,397.6562 306,389 288,389 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 306,919.3622 306,901.3622 297.375,909.9872 301.75,913.3934 305.0937,913.3934 305.0937,917.3934 301.0937,917.3934 301.0937,914.1747 296.6562,910.7059 288,919.3622 306,919.3622 Z" id="path18574" />
-</g>
-<g id="color-gradient-16px" inkscape:label="#g18610">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.4532662;marker:none" id="rect18595" width="16" height="16" x="318" y="898.3622" />
-<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="path18597" d="M 319,899.3622 319,913.3622 333,913.3622 333,899.3622 Z M 320,900.3622 332,900.3622 332,912.3622 320,912.3622 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.453266;marker:none" />
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 321,901.3622 321,911.3622 325.7925,906.5188 323,904.3622 322,904.3622 322,902.3622 324,902.3622 324,904.3622 326.1918,906.1152 331,901.3622 Z" id="path18599" />
-<path sodipodi:nodetypes="ccccccccccc" id="path18602" d="M 331,911.3622 331,901.3622 326.2083,906.1538 329,908.3622 330,908.3622 330,910.3622 328,910.3622 328,908.3622 325.809,906.5531 321,911.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="color-picker-16px" inkscape:label="#g22418">
-<g inkscape:label="stock-tool-color-picker" id="g34059" style="display:inline" transform="matrix(1,0,0,0.9972457,136.9998,752.8939)">
-<rect style="fill:none;stroke:none" id="rect33857" width="16" height="16" x="-60" y="-40" transform="translate(241.0002,217)" rx="0.9978134" ry="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path3620" d="M 191.6122,182.4047 187.392,188.0681 185.6979,189.5607 185.0002,189 185.9965,186.9467 190.2167,181.2833 191.6122,182.4047 Z" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4352" d="M 185.0002,189.5745 C 185.0002,189.5745 183.523,190.243 183.5348,191.6542 183.5495,193.4122 186.1949,193.4977 186.2781,191.9387 186.3256,191.0477 185.0002,189.5745 185.0002,189.5745 Z" inkscape:connector-curvature="0" sodipodi:nodetypes="cssc" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path3583" d="M 187.6465,181.4304 192.2957,184.9578 193.0002,184.032 191.6055,182.9739 C 194.4092,182.1806 196.3254,178.799 194.4657,177.388 192.6061,175.9771 189.76,178.6532 189.7458,181.5629 L 188.351,180.5047 187.6465,181.4304 Z" inkscape:connector-curvature="0" />
+<rect y="898.4431" x="285.0783" height="24" width="24" id="rect2808" style="color:#000000;fill:none;stroke-width:0.4532662" />
+<path style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.453266" d="M 286,899.3622 286,921.5184 308.1562,921.5184 308.1562,899.3622 286,899.3622 Z M 287,900.3622 306.9687,900.3622 306.9687,920.3309 287,920.3309 287,900.3622 Z" id="rect4244" inkscape:connector-curvature="0" />
+<path id="rect18546" transform="translate(0,512.3622)" d="M 288,389 288,407 296.625,398.375 292.25,394.9687 288.9062,394.9687 288.9062,390.9687 292.9062,390.9687 292.9062,394.1875 297.3437,397.6562 306,389 288,389 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" style="opacity:0.3;fill:url(#linearGradient19282)" d="M 306,919.3622 306,901.3622 297.375,909.9872 301.75,913.3934 305.0937,913.3934 305.0937,917.3934 301.0937,917.3934 301.0937,914.1747 296.6562,910.7059 288,919.3622 306,919.3622 Z" id="path18574" />
</g>
+<g id="color-gradient-16px">
+<rect style="color:#000000;fill:none;stroke-width:0.4532662" id="rect18595" width="16" height="16" x="318" y="898.3622" />
+<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="path18597" d="m 319,899.3622 0,14 14,0 0,-14 z m 1,1 12,0 0,12 -12,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.453266" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 321,901.3622 0,10 4.7925,-4.8434 -2.7925,-2.1566 -1,0 0,-2 2,0 0,2 2.1918,1.753 4.8082,-4.753 z" id="path18599" />
+<path sodipodi:nodetypes="ccccccccccc" id="path18602" d="m 331,911.3622 0,-10 -4.7917,4.7916 2.7917,2.2084 1,0 0,2 -2,0 0,-2 -2.191,-1.8091 -4.809,4.8091 z" style="opacity:0.3;fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="color-picker" inkscape:label="#draw_dropper">
-<g transform="matrix(1.5,0,0,1.495868,13.49969,664.5935)" style="display:inline" id="g22401" inkscape:label="stock-tool-color-picker">
-<rect ry="0" rx="0.6652089" transform="translate(241.0002,217)" y="-40" x="-60" height="16" width="16" id="rect22403" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" d="M 191.6122,182.4047 187.392,188.0681 185.6979,189.5607 185.0002,189 185.9965,186.9467 190.2167,181.2833 191.6122,182.4047 Z" id="path22405" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<path sodipodi:nodetypes="cssc" inkscape:connector-curvature="0" d="M 185.0002,189.5745 C 185.0002,189.5745 183.523,190.243 183.5348,191.6542 183.5495,193.4122 186.1949,193.4977 186.2781,191.9387 186.3256,191.0477 185.0002,189.5745 185.0002,189.5745 Z" id="path22407" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<path inkscape:connector-curvature="0" d="M 187.6465,181.4304 192.2957,184.9578 193.0002,184.032 191.6055,182.9739 C 194.4092,182.1806 196.3254,178.799 194.4657,177.388 192.6061,175.9771 189.76,178.6532 189.7458,181.5629 L 188.351,180.5047 187.6465,181.4304 Z" id="path22409" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+<g transform="matrix(1.5,0,0,1.495868,13.49969,664.5935)" id="g22401" inkscape:label="stock-tool-color-picker">
+<rect transform="translate(241.0002,217)" y="-40" x="-60" height="16" width="16" id="rect22403" style="fill:none" />
+<path inkscape:connector-curvature="0" d="M 191.6122,182.4047 187.392,188.0681 185.6979,189.5607 185.0002,189 185.9965,186.9467 190.2167,181.2833 191.6122,182.4047 Z" id="path22405" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path sodipodi:nodetypes="cssc" inkscape:connector-curvature="0" d="M 185.0002,189.5745 C 185.0002,189.5745 183.523,190.243 183.5348,191.6542 183.5495,193.4122 186.1949,193.4977 186.2781,191.9387 186.3256,191.0477 185.0002,189.5745 185.0002,189.5745 Z" id="path22407" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path inkscape:connector-curvature="0" d="M 187.6465,181.4304 192.2957,184.9578 193.0002,184.032 191.6055,182.9739 C 194.4092,182.1806 196.3254,178.799 194.4657,177.388 192.6061,175.9771 189.76,178.6532 189.7458,181.5629 L 188.351,180.5047 187.6465,181.4304 Z" id="path22409" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
</g>
</g>
-<g id="color-fill-16px" inkscape:label="#g26221">
-<g id="g26215">
-<g transform="translate(175.9998,783.3622)" style="display:inline" id="g18711" inkscape:label="stock-tool-bucket-fill">
-<rect ry="0" rx="0.4696699" y="177" x="141.0002" height="16" width="16" id="rect18652" style="display:inline;fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" style="display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M -92,-36.84375 -94.46875,-35.03125 C -94.45975,-35.04347 -94.49859,-35.04886 -94.75,-35 -98.75,-34.22254 -99,-33.34272 -99,-32 L -99,-27 C -99,-26.446 -98.554,-26 -98,-26 -97.446,-26 -97,-26.446 -97,-27 L -97,-33.1875 -95.71875,-31.3125 -94.65625,-29.75 -91.875,-25.59375 C -91.49136,-25.02555 -90.8014,-24.82394 -90.34375,-25.15625 L -85.375,-28.75 C -84.91738,-29.08233 -84.86634,-29.80678 -85.25,-30.375 L -88,-34.4375 -88,-33 C -88,-31.89543 -88.89543,-31 -90,-31 -91.10457,-31 -92,-31.89543 -92,-33 L -92,-36.84375 Z" transform="translate(241.0002,217)" id="rect18654" />
-<rect ry="1" rx="1" y="177" x="150.0027" height="8" width="1.997469" id="rect18680" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g id="color-picker-16px">
+<g inkscape:label="stock-tool-color-picker" id="g34059" transform="matrix(1,0,0,0.9972457,136.9998,752.8939)">
+<rect style="fill:none" id="rect33857" width="16" height="16" x="-60" y="-40" transform="translate(241.0002,217)" rx="0.9978134" ry="0" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" id="path3620" d="m 191.6122,182.4047 -4.2202,5.6634 -1.6941,1.4926 -0.6977,-0.5607 0.9963,-2.0533 4.2202,-5.6634 1.3955,1.1214 z" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" id="path4352" d="m 185.0002,189.5745 c 0,0 -1.4772,0.6685 -1.4654,2.0797 0.015,1.758 2.6601,1.8435 2.7433,0.2845 0.048,-0.891 -1.2779,-2.3642 -1.2779,-2.3642 z" inkscape:connector-curvature="0" sodipodi:nodetypes="cssc" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" id="path3583" d="m 187.6465,181.4304 4.6492,3.5274 0.7045,-0.9258 -1.3947,-1.0581 c 2.8037,-0.7933 4.7199,-4.1749 2.8602,-5.5859 -1.8596,-1.4109 -4.7057,1.2652 -4.7199,4.1749 l -1.3948,-1.0582 -0.7045,0.9257 z" inkscape:connector-curvature="0" />
</g>
</g>
+<g id="color-fill">
+<rect style="fill:none" id="rect26190" width="24" height="24" x="285" y="960.3622" />
+<path inkscape:connector-curvature="0" id="path26192" d="m 297,966.3622 -3.7188,1.4687 c 0.014,-0.018 -0.029,-0.042 -0.4062,0.031 -6,1.1662 -6.375,2.4859 -6.375,4.5 l 0,7.5 c 0,0.831 0.669,1.5 1.5,1.5 0.831,0 2,-0.169 2,-1 l 0,-10 c 7,11 0,0.016 7.1875,11.625 0.5755,0.8523 1.5948,1.1547 2.2812,0.6562 l 7.4688,-5.4062 c 0.6864,-0.4985 0.763,-1.5852 0.1875,-2.4375 l -4.125,-6.0938 0,2.1563 0,1.5 c 0,0.554 -0.446,1 -1,1 l -4,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-0.5 0,-4.5 0,-1 z" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect26194" width="4" height="12" x="298" y="960.3622" rx="0.9999999" ry="1" />
</g>
-<g id="color-fill" inkscape:label="#g26209">
-<g id="g26204">
-<rect ry="0" rx="0.4696699" y="960.3622" x="285" height="24" width="24" id="rect26190" style="display:inline;fill:none;stroke:none" />
-<path style="display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 297,454 293.2812,455.4687 C 293.2948,455.4504 293.2521,455.4267 292.875,455.5 286.875,456.6662 286.5,457.9859 286.5,460 L 286.5,467.5 C 286.5,468.331 287.169,469 288,469 288.831,469 290,468.831 290,468 L 290,458 C 297,469 290,458.0156 297.1875,469.625 297.763,470.4773 298.7823,470.7797 299.4687,470.2812 L 306.9375,464.875 C 307.6239,464.3765 307.7005,463.2898 307.125,462.4375 L 303,456.3437 303,458.5 303,460 C 303,460.554 302.554,461 302,461 L 298,461 C 297.446,461 297,460.554 297,460 L 297,459.5 297,455 297,454 Z" transform="translate(0,512.3622)" id="path26192" inkscape:connector-curvature="0" />
-<rect ry="1" rx="0.9999999" y="960.3622" x="298" height="12" width="4" id="rect26194" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
+<g id="color-fill-16px">
+<g id="g26215">
+<g transform="translate(175.9998,783.3622)" id="g18711" inkscape:label="stock-tool-bucket-fill">
+<rect y="177" x="141.0002" height="16" width="16" id="rect18652" style="fill:none" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m -92,-36.84375 -2.46875,1.8125 c 0.009,-0.0122 -0.0298,-0.0176 -0.28125,0.0312 -4,0.77746 -4.25,1.65728 -4.25,3 l 0,5 c 0,0.554 0.446,1 1,1 0.554,0 1,-0.446 1,-1 l 0,-6.1875 1.28125,1.875 1.0625,1.5625 2.78125,4.15625 c 0.38364,0.5682 1.0736,0.76981 1.53125,0.4375 L -85.375,-28.75 c 0.45762,-0.33233 0.50866,-1.05678 0.125,-1.625 L -88,-34.4375 -88,-33 c 0,1.10457 -0.89543,2 -2,2 -1.10457,0 -2,-0.89543 -2,-2 l 0,-3.84375 z" transform="translate(241.0002,217)" id="rect18654" />
+<rect ry="1" rx="1" y="177" x="150.0027" height="8" width="1.997469" id="rect18680" style="fill:url(#linearGradient19282)" />
</g>
-<g id="draw-eraser-16px" inkscape:label="#g30021">
-<g inkscape:label="stock-tool-eraser" id="g34168" style="display:inline" transform="translate(255.9998,774.3622)">
-<rect style="fill:none;stroke:none" id="rect34148" width="16" height="16" x="-180" y="0" transform="translate(241.0002,217)" rx="0.9956156" ry="0" />
-<path id="path4066" d="M 72.15645,218 C 72.0776,218.0161 71.99695,218.0696 71.9377,218.125 L 67.65645,222.125 71.6877,226.4687 75.84395,222.5937 C 76.08094,222.3723 76.02234,221.9109 75.71895,221.5625 L 72.9377,218.3437 C 72.71016,218.0824 72.39301,217.9517 72.15645,218 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="rect34152" d="M 66.5002,223.2187 64.15645,225.4062 C 63.91946,225.6277 63.94681,226.0891 64.2502,226.4375 L 67.0627,229.6562 C 67.36609,230.0047 67.79446,230.0964 68.03145,229.875 L 70.5002,227.5625 66.5002,223.2187 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 69.7002,231 C 69.3124,231 69.0002,231.223 69.0002,231.5 69.0002,231.777 69.3124,232 69.7002,232 L 71.1002,232 75.3002,232 76.0002,232 76.0002,231.5 76.0002,231 75.3002,231 71.1002,231 69.7002,231 Z" id="rect34161" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path34166" d="M 64.3002,231 C 64.688,231 65.0002,231.223 65.0002,231.5 65.0002,231.777 64.688,232 64.3002,232 62.2002,232 62.3002,232 62.0002,232 L 62.0002,231.5 62.0002,231 C 62.0002,231 62.2002,231 64.3002,231 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="csccccc" />
</g>
</g>
<g id="draw-eraser" inkscape:label="#draw_erase">
-<rect style="fill:none;stroke:none" id="rect29999" width="24" height="24" x="285" y="991.3622" rx="0.9956156" ry="0" />
-<path id="path30001" d="M 301.7344,992.8622 C 301.6161,992.8864 301.4951,992.9666 301.4062,993.0497 L 294.9844,999.0497 301.0312,1005.565 307.2656,999.7528 C 307.6211,999.4206 307.5332,998.7286 307.0781,998.2059 L 302.9062,993.3778 C 302.5649,992.9858 302.0892,992.7897 301.7344,992.8622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="path30003" d="M 293.25,1000.69 289.7344,1003.972 C 289.3789,1004.304 289.4199,1004.996 289.875,1005.518 L 294.0937,1010.347 C 294.5488,1010.869 295.1914,1011.007 295.5469,1010.675 L 299.25,1007.206 293.25,1000.69 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 298.05,1012.362 C 297.4683,1012.362 297,1012.808 297,1013.362 297,1013.916 297.4683,1014.362 298.05,1014.362 L 300.15,1014.362 306.45,1014.362 307.5,1014.362 307.5,1013.362 307.5,1012.362 306.45,1012.362 300.15,1012.362 298.05,1012.362 Z" id="path30005" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path30007" d="M 290.7167,1012.362 C 291.4276,1012.362 292,1012.808 292,1013.362 292,1013.916 291.4276,1014.362 290.7167,1014.362 286.8667,1014.362 287.05,1014.362 286.5,1014.362 L 286.5,1013.362 286.5,1012.362 C 286.5,1012.362 286.8667,1012.362 290.7167,1012.362 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="csccccc" />
-</g>
-<g id="tool-spray-16px" inkscape:label="#g30456">
-<path inkscape:connector-curvature="0" style="fill:none;stroke:none" d="M 317,1022.362 333,1022.362 333,1038.362 317,1038.362 317,1022.362 Z" id="path30252" />
-<path sodipodi:nodetypes="ccccc" id="path30254" d="M 329,1027.362 329,1026.219 C 329,1025.076 327,1025.076 327,1026.219 L 327,1027.362 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 332,1032.362 331,1031.362 325,1031.362 324,1032.362 324,1036.362 C 324,1036.362 326,1038.362 332,1038.362 Z" id="path30256" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" id="path30258" d="M 331,1030.362 330,1028.362 326,1028.362 325,1030.362 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" id="path30260" transform="matrix(0.2904812,0,0,0.2904806,264.8886,876.549)" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" id="use30268" transform="matrix(0.4232259,0,0,0.4232249,236.5602,809.0157)" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle transform="matrix(0.447105,0,0,0.4232249,231.5605,806.0582)" id="use30270" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle transform="matrix(0.6353592,0,0,0.6353577,191.1977,699.6561)" id="use30274" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" id="use30276" transform="matrix(0.6353592,0,0,0.6353577,191.1257,695.5235)" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" id="use30278" transform="matrix(0.6353592,0,0,0.6353577,190.2861,697.877)" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" id="use30280" transform="matrix(1.072959,0,0,1.069944,98.24237,475.7339)" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle transform="matrix(1.080638,0,0,1.067236,96.90048,471.1599)" id="use30282" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle transform="matrix(1.080645,0,0,1.132046,95.75011,440.4371)" id="use30284" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" cx="206.5896" cy="518.4219" r="0.9253731" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" id="use30294" transform="matrix(0.5398428,0,0,0.5398415,212.0075,747.3505)" cx="206.5896" cy="518.4219" r="0.9253731" />
-</g>
-<g id="tool-spray" inkscape:label="#g30432">
-<path id="path5769" d="M 285,1022.362 309,1022.362 309,1046.362 285,1046.362 285,1022.362 Z" style="fill:none;stroke:none" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 303,1029.362 303,1027.362 C 302.4931,1025.807 300,1026.362 300,1027.362 L 300,1029.362 Z" id="path6331-0" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315-8" d="M 306.9558,1035.246 306,1034.362 297,1034.362 296.0288,1035.775 296,1042.362 C 298.8952,1044.185 299.7348,1046.937 307,1044.362 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 306,1033.362 304,1030.362 299,1030.362 297,1033.362 Z" id="path5211-1" sodipodi:nodetypes="ccccc" />
+<rect style="fill:none" id="rect29999" width="24" height="24" x="285" y="991.3622" />
+<path id="path30001" d="M 301.7344,992.8622 C 301.6161,992.8864 301.4951,992.9666 301.4062,993.0497 L 294.9844,999.0497 301.0312,1005.565 307.2656,999.7528 C 307.6211,999.4206 307.5332,998.7286 307.0781,998.2059 L 302.9062,993.3778 C 302.5649,992.9858 302.0892,992.7897 301.7344,992.8622 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="path30003" d="M 293.25,1000.69 289.7344,1003.972 C 289.3789,1004.304 289.4199,1004.996 289.875,1005.518 L 294.0937,1010.347 C 294.5488,1010.869 295.1914,1011.007 295.5469,1010.675 L 299.25,1007.206 293.25,1000.69 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 298.05,1012.362 C 297.4683,1012.362 297,1012.808 297,1013.362 297,1013.916 297.4683,1014.362 298.05,1014.362 L 300.15,1014.362 306.45,1014.362 307.5,1014.362 307.5,1013.362 307.5,1012.362 306.45,1012.362 300.15,1012.362 298.05,1012.362 Z" id="path30005" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path30007" d="M 290.7167,1012.362 C 291.4276,1012.362 292,1012.808 292,1013.362 292,1013.916 291.4276,1014.362 290.7167,1014.362 286.8667,1014.362 287.05,1014.362 286.5,1014.362 L 286.5,1013.362 286.5,1012.362 C 286.5,1012.362 286.8667,1012.362 290.7167,1012.362 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="csccccc" />
+</g>
+<g id="draw-eraser-16px">
+<g inkscape:label="stock-tool-eraser" id="g34168" transform="translate(255.9998,774.3622)">
+<rect style="fill:none" id="rect34148" width="16" height="16" x="-180" y="0" transform="translate(241.0002,217)" />
+<path id="path4066" d="m 72.15645,218 c -0.0789,0.016 -0.1595,0.07 -0.21875,0.125 l -4.28125,4 4.03125,4.3437 4.15625,-3.875 c 0.23699,-0.2214 0.17839,-0.6828 -0.125,-1.0312 L 72.9377,218.3437 C 72.71016,218.0824 72.39301,217.9517 72.15645,218 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="rect34152" d="m 66.5002,223.2187 -2.34375,2.1875 c -0.23699,0.2215 -0.20964,0.6829 0.0937,1.0313 l 2.8125,3.2187 c 0.30339,0.3485 0.73176,0.4402 0.96875,0.2188 l 2.46875,-2.3125 -4,-4.3438 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="m 69.7002,231 c -0.3878,0 -0.7,0.223 -0.7,0.5 0,0.277 0.3122,0.5 0.7,0.5 l 1.4,0 4.2,0 0.7,0 0,-0.5 0,-0.5 -0.7,0 -4.2,0 -1.4,0 z" id="rect34161" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path34166" d="m 64.3002,231 c 0.3878,0 0.7,0.223 0.7,0.5 0,0.277 -0.3122,0.5 -0.7,0.5 -2.1,0 -2,0 -2.3,0 l 0,-0.5 0,-0.5 c 0,0 0.2,0 2.3,0 z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="csccccc" />
+</g>
+</g>
+<g id="tool-spray">
+<path id="path5769" d="m 285,1022.362 24,0 0,24 -24,0 0,-24 z" style="fill:none" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="m 303,1029.362 0,-2 c -0.5069,-1.555 -3,-1 -3,0 l 0,2 z" id="path6331-0" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315-8" d="m 306.9558,1035.246 -0.9558,-0.884 -9,0 -0.9712,1.413 -0.029,6.587 c 2.8952,1.823 3.7348,4.575 11,2 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="m 306,1033.362 -2,-3 -5,0 -2,3 z" id="path5211-1" sodipodi:nodetypes="ccccc" />
<g id="g30296" transform="translate(-0.0829471,-0.7236201)">
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" id="path23475" transform="matrix(0.4357219,0,0,0.4357219,206.8329,803.6419)" cx="206.5896" cy="518.4219" r="0.9253731" />
-<use x="0" y="0" xlink:href="#path23475" id="use23477" transform="matrix(1.058646,0,0,1.058646,-18.17453,-59.24866)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23477" id="use23479" transform="translate(0,-2.208168)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23477" id="use23483" transform="matrix(1.376269,0,0,1.376269,-112.7939,-386.9417)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23479" id="use23485" transform="matrix(1.376269,0,0,1.376269,-113.1257,-387.8748)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.2295042;marker:none;enable-background:accumulate" id="use23487" transform="matrix(0.6348389,0,0,0.6348389,162.5891,700.4153)" cx="206.5896" cy="518.4219" r="0.9253731" />
-<use x="0" y="0" xlink:href="#use23483" id="use23489" transform="matrix(1.50123,0,0,1.50123,-149.6645,-516.0387)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23485" id="use23491" transform="matrix(1.50123,0,0,1.50123,-149.7893,-515.9651)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23487" id="use23493" transform="matrix(1.50123,0,0,1.50123,-149.5421,-516.0307)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23489" id="use23495" transform="matrix(1.485643,0,0,1.485643,-145.2412,-499.7435)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23491" id="use23497" transform="matrix(1.485643,0,0,1.485643,-145.0357,-499.6811)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23493" id="use23499" transform="matrix(1.485643,0,0,1.485643,-144.9878,-499.9836)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#path23475" id="use23501" transform="translate(-4.235815,-1.303328)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23501" id="use23503" transform="translate(0.4480189,2.688113)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23485" id="use23505" transform="translate(-4.724563)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use x="0" y="0" xlink:href="#use23505" id="use23509" transform="translate(0.6923928,4.113628)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<use style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" height="1052.362" width="744.0945" transform="translate(-0.734835,-1.044194)" id="use30430" xlink:href="#use23477" y="0" x="0" />
-</g>
+<circle style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" id="path23475" transform="matrix(0.4357219,0,0,0.4357219,206.8329,803.6419)" cx="206.5896" cy="518.4219" r="0.9253731" />
+<use x="0" y="0" xlink:href="#path23475" id="use23477" transform="matrix(1.058646,0,0,1.058646,-18.17453,-59.24866)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23477" id="use23479" transform="translate(0,-2.208168)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23477" id="use23483" transform="matrix(1.376269,0,0,1.376269,-112.7939,-386.9417)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23479" id="use23485" transform="matrix(1.376269,0,0,1.376269,-113.1257,-387.8748)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<circle style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" id="use23487" transform="matrix(0.6348389,0,0,0.6348389,162.5891,700.4153)" cx="206.5896" cy="518.4219" r="0.9253731" />
+<use x="0" y="0" xlink:href="#use23483" id="use23489" transform="matrix(1.50123,0,0,1.50123,-149.6645,-516.0387)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23485" id="use23491" transform="matrix(1.50123,0,0,1.50123,-149.7893,-515.9651)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23487" id="use23493" transform="matrix(1.50123,0,0,1.50123,-149.5421,-516.0307)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23489" id="use23495" transform="matrix(1.485643,0,0,1.485643,-145.2412,-499.7435)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23491" id="use23497" transform="matrix(1.485643,0,0,1.485643,-145.0357,-499.6811)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23493" id="use23499" transform="matrix(1.485643,0,0,1.485643,-144.9878,-499.9836)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#path23475" id="use23501" transform="translate(-4.235815,-1.303328)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23501" id="use23503" transform="translate(0.4480189,2.688113)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23485" id="use23505" transform="translate(-4.724563)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use x="0" y="0" xlink:href="#use23505" id="use23509" transform="translate(0.6923928,4.113628)" width="744.0945" height="1052.362" style="fill:url(#linearGradient19282)" />
+<use style="fill:url(#linearGradient19282)" height="1052.362" width="744.0945" transform="translate(-0.734835,-1.044194)" id="use30430" xlink:href="#use23477" y="0" x="0" />
+</g>
+</g>
+<g id="tool-spray-16px">
+<path inkscape:connector-curvature="0" style="fill:none" d="m 317,1022.362 16,0 0,16 -16,0 0,-16 z" id="path30252" />
+<path sodipodi:nodetypes="ccccc" id="path30254" d="m 329,1027.362 0,-1.143 c 0,-1.143 -2,-1.143 -2,0 l 0,1.143 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="m 332,1032.362 -1,-1 -6,0 -1,1 0,4 c 0,0 2,2 8,2 z" id="path30256" sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccc" id="path30258" d="m 331,1030.362 -1,-2 -4,0 -1,2 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
+<circle style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" id="path30260" transform="matrix(0.2904812,0,0,0.2904806,264.8886,876.549)" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" id="use30268" transform="matrix(0.4232259,0,0,0.4232249,236.5602,809.0157)" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle transform="matrix(0.447105,0,0,0.4232249,231.5605,806.0582)" id="use30270" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle transform="matrix(0.6353592,0,0,0.6353577,191.1977,699.6561)" id="use30274" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" id="use30276" transform="matrix(0.6353592,0,0,0.6353577,191.1257,695.5235)" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" id="use30278" transform="matrix(0.6353592,0,0,0.6353577,190.2861,697.877)" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" id="use30280" transform="matrix(1.072959,0,0,1.069944,98.24237,475.7339)" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle transform="matrix(1.080638,0,0,1.067236,96.90048,471.1599)" id="use30282" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle transform="matrix(1.080645,0,0,1.132046,95.75011,440.4371)" id="use30284" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" cx="206.5896" cy="518.4219" r="0.9253731" />
+<circle style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.2295042" id="use30294" transform="matrix(0.5398428,0,0,0.5398415,212.0075,747.3505)" cx="206.5896" cy="518.4219" r="0.9253731" />
+</g>
+<g id="tool-tweak">
+<rect style="color:#000000;fill:none" id="rect4400" width="24" height="24" x="285" y="1053.362" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="rect4412" d="m 299.1929,1056.371 c -1.0952,-0.05 -2.1049,0.13 -2.7404,0.528 -5.4824,3.44 -2.3872,12.059 -10.4395,10.501 l -0.044,9.025 21.0312,0 0.044,-9.025 c -5.4826,1.244 -7.7633,-0.221 -8.8391,-2.661 -0.9536,-2.163 -0.193,-4.085 1.0834,-4.316 2.5235,-0.459 2.2613,1.245 3.7602,1.673 1.4248,0.407 1.8586,-0.955 0.8603,-3.083 -0.8381,-1.786 -2.8906,-2.557 -4.716,-2.642 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.8916873" />
+</g>
+<g id="tool-tweak-16px">
+<rect y="1053.362" x="317" height="16" width="16" id="rect19598" style="color:#000000;fill:none" />
+<path sodipodi:nodetypes="ccccccccscc" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.8916873" d="m 326.803,1055.368 c -0.7291,-0.03 -1.4012,0.08 -1.8242,0.342 -3.6495,2.229 -1.5744,7.67 -6.9346,6.66 l -0.044,5.992 14,0 0.044,-5.992 c -3.6497,0.807 -5.1826,0 -5.8987,-1.58 -0.6349,-1.401 -0.1286,-2.646 0.7212,-2.796 1.6798,-0.298 1.5052,0.807 2.503,1.084 0.9485,0.263 1.2373,-0.619 0.5727,-1.998 -0.5579,-1.157 -1.9242,-1.657 -3.1394,-1.712 z" id="path19600" inkscape:connector-curvature="0" />
</g>
<g id="transform-affect-stroke" inkscape:label="#transfort_stroke">
-<path sodipodi:nodetypes="ccccccccccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2.7835436;marker:none;enable-background:accumulate" d="M 350,528.3622 350,530.3622 351.323,530.3622 360,530.3622 360,534.3622 360,535.3622 362,535.3622 362,533.3622 362,529.3622 362,528.3622 360.5378,528.3622 350.92,528.3622 Z" id="path5760" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path5762" d="M 350,532.3622 350,533.3622 350.5,533.3622 357,533.3622 357,534.8622 357,535.3622 358,535.3622 358,534.8622 358,532.8622 358,532.3622 357.5,532.3622 350.5,532.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000001px;marker:none;enable-background:accumulate" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.391772px;marker:none;enable-background:accumulate" d="M 353,539.342 353,541.3622 355,541.3622 355,539.342 353,539.342 Z" id="path5770" inkscape:connector-curvature="0" />
-<rect rx="0" y="527.3622" x="348" height="16" width="16" id="rect30527" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 356,541.3622 356,539.3622 359,539.3622 359,537.3622 361.9883,540.3622 359,543.3622 359,541.3622 Z" id="path30562" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path30570" d="M 350,539.3622 350,541.3823 352,541.3823 352,539.3622 350,539.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.391772px;marker:none;enable-background:accumulate" />
-</g>
-<use x="0" y="0" id="use4586" transform="matrix(0.692914,0,0,0.7095337,-83.81409,354.986)" width="1250" height="1250" xlink:href="#g5772" />
+<rect rx="0" y="527.3622" x="348" height="16" width="16" id="rect30527" style="opacity:0.3;fill:none" />
+<path sodipodi:nodetypes="ccccccccccccc" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2.7835436" d="M 350,528.3622 350,530.3622 351.323,530.3622 360,530.3622 360,534.3622 360,535.3622 362,535.3622 362,533.3622 362,529.3622 362,528.3622 360.5378,528.3622 350.92,528.3622 Z" id="path5760" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path5762" d="M 350,532.3622 350,533.3622 350.5,533.3622 357,533.3622 357,534.8622 357,535.3622 358,535.3622 358,534.8622 358,532.8622 358,532.3622 357.5,532.3622 350.5,532.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000001px" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.391772px" d="M 353,539.342 353,541.3622 355,541.3622 355,539.342 353,539.342 Z" id="path5770" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="M 356,541.3622 356,539.3622 359,539.3622 359,537.3622 361.9883,540.3622 359,543.3622 359,541.3622 Z" id="path30562" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path30570" d="M 350,539.3622 350,541.3823 352,541.3823 352,539.3622 350,539.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.391772px" />
+</g>
<g id="transform-affect-rounded-corners" inkscape:label="#transform_corners">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 381.0027,532.3644 C 380.7415,532.3872 380.5255,532.6367 380.55,532.8875 380.5745,533.1384 380.8349,533.345 381.0961,533.3208 L 385.4855,533.3521 C 386.6638,533.3611 386.9212,533.3981 387.3507,533.7922 387.7801,534.1863 388.0042,534.8238 388.0042,535.8543 388.0002,536.1069 388.239,536.3393 388.5021,536.3393 388.7651,536.3393 389.0037,536.1069 389,535.8543 389,534.6852 388.7261,533.7388 388.0353,533.1048 387.3445,532.4708 386.7967,532.4051 385.4856,532.3957 L 381.0961,532.3644 C 381.065,532.3614 381.0338,532.3614 381.0028,532.3644 Z" id="path4434" inkscape:connector-curvature="0" sodipodi:nodetypes="cscsscsccsccc" />
-<rect transform="translate(0,512.3622)" y="15" x="378" height="16" width="16" id="rect14108" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path14884" d="M 383,539.3622 383,541.3823 385,541.3823 385,539.3622 383,539.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.391772px;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" id="path14888" d="M 387,541.3622 387,539.3622 390,539.3622 390,537.3622 392.9883,540.3622 390,543.3622 390,541.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.391772px;marker:none;enable-background:accumulate" d="M 380,539.3823 380,541.4025 382,541.4025 382,539.3823 380,539.3823 Z" id="path14890" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path4436-0" d="M 380.8124,528.3666 A 1.004385,1.004385 0 1 0 380.9999,530.3666 L 386.4999,530.3666 C 388.0594,530.3666 389.155,530.7885 389.8749,531.4603 390.5948,532.1322 390.9999,533.0888 390.9999,534.3666 A 1.0001,1.0001 0 1 0 392.9999,534.3666 C 392.9999,532.6444 392.405,531.0697 391.2499,529.9916 390.0948,528.9134 388.4404,528.3666 386.4999,528.3666 L 380.9999,528.3666 A 1.0001,1.0001 0 0 0 380.8124,528.3666 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-</g>
-<use x="0" y="0" id="use4586-2" transform="matrix(0.695835,0,0,0.741921,-99.8199,349.5722)" width="1250" height="1250" xlink:href="#g5772" />
-<use transform="matrix(0.695835,0,0,0.741921,-55.8199,347.0722)" x="0" y="0" id="use4589" width="1250" height="1250" xlink:href="#g5772" />
+<rect transform="translate(0,512.3622)" y="15" x="378" height="16" width="16" id="rect14108" style="opacity:0.3;fill:none" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 381.0027,532.3644 C 380.7415,532.3872 380.5255,532.6367 380.55,532.8875 380.5745,533.1384 380.8349,533.345 381.0961,533.3208 L 385.4855,533.3521 C 386.6638,533.3611 386.9212,533.3981 387.3507,533.7922 387.7801,534.1863 388.0042,534.8238 388.0042,535.8543 388.0002,536.1069 388.239,536.3393 388.5021,536.3393 388.7651,536.3393 389.0037,536.1069 389,535.8543 389,534.6852 388.7261,533.7388 388.0353,533.1048 387.3445,532.4708 386.7967,532.4051 385.4856,532.3957 L 381.0961,532.3644 C 381.065,532.3614 381.0338,532.3614 381.0028,532.3644 Z" id="path4434" inkscape:connector-curvature="0" sodipodi:nodetypes="cscsscsccsccc" />
+<path inkscape:connector-curvature="0" id="path14884" d="M 383,539.3622 383,541.3823 385,541.3823 385,539.3622 383,539.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.391772px" />
+<path inkscape:connector-curvature="0" id="path14888" d="M 387,541.3622 387,539.3622 390,539.3622 390,537.3622 392.9883,540.3622 390,543.3622 390,541.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.391772px" d="M 380,539.3823 380,541.4025 382,541.4025 382,539.3823 380,539.3823 Z" id="path14890" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path4436-0" d="M 380.8124,528.3666 A 1.004385,1.004385 0 1 0 380.9999,530.3666 L 386.4999,530.3666 C 388.0594,530.3666 389.155,530.7885 389.8749,531.4603 390.5948,532.1322 390.9999,533.0888 390.9999,534.3666 A 1.0001,1.0001 0 1 0 392.9999,534.3666 C 392.9999,532.6444 392.405,531.0697 391.2499,529.9916 390.0948,528.9134 388.4404,528.3666 386.4999,528.3666 L 380.9999,528.3666 A 1.0001,1.0001 0 0 0 380.8124,528.3666 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2" />
+</g>
<g id="transform-affect-gradient" inkscape:label="#transform_gradient">
-<path sodipodi:nodetypes="ccccccccccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 410,528.3699 410,529.3699 410.5,529.3699 421,529.3699 421,535.8622 421,536.3622 422,536.3622 422,535.8622 422,528.8699 422,528.3699 421.5,528.3699 410.5,528.3699 Z" id="path4430" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 410,535.3622 410,536.3622 410.5,536.3622 417,536.3622 417,536.8622 417,537.3622 418,537.3622 418,536.8622 418,535.8622 418,535.3622 417.5,535.3622 410.5,535.3622 Z" id="path4432" inkscape:connector-curvature="0" />
-<rect y="527.3622" x="408" height="16" width="16" id="rect15054" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-<rect y="530.3622" x="412" height="4.000005" width="2.999998" id="rect5201" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="531.3622" x="411" height="1" width="1" id="rect5203" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="533.3622" x="411" height="1" width="1" id="rect5205" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="530.3622" x="418" height="4.000016" width="1.99995" id="rect5211" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="532.3622" x="417" height="1" width="1" id="rect5213" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect5217" width="1" height="1" x="417" y="530.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect5219" width="1" height="1" x="410" y="532.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect5221" width="1" height="1" x="410" y="530.3622" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect5223" width="1.000002" height="1" x="416" y="-534.3622" />
-<rect y="-532.3622" x="416" height="1" width="1.000002" id="rect5225" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(1,-1)" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect5227" width="1.000002" height="1" x="415" y="-531.3622" />
-<rect y="-533.3622" x="415" height="1" width="1.000002" id="rect5229" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(1,-1)" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.391772px;marker:none;enable-background:accumulate" d="M 413,539.3622 413,541.3823 415,541.3823 415,539.3622 413,539.3622 Z" id="path18881" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 417,541.3622 417,539.3622 420,539.3622 420,537.3622 422.9883,540.3622 420,543.3622 420,541.3622 Z" id="path18883" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path18885" d="M 410,539.3823 410,541.4025 412,541.4025 412,539.3823 410,539.3823 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.391772px;marker:none;enable-background:accumulate" />
-</g>
-<use transform="matrix(0.6289752,0,0,1.162431,18.93921,244.8503)" x="0" y="0" id="use4592" width="1250" height="1250" xlink:href="#g5772" />
+<rect y="527.3622" x="408" height="16" width="16" id="rect15054" style="opacity:0.3;fill:none" />
+<path sodipodi:nodetypes="ccccccccccccc" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 410,528.3699 410,529.3699 410.5,529.3699 421,529.3699 421,535.8622 421,536.3622 422,536.3622 422,535.8622 422,528.8699 422,528.3699 421.5,528.3699 410.5,528.3699 Z" id="path4430" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccccccc" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 410,535.3622 410,536.3622 410.5,536.3622 417,536.3622 417,536.8622 417,537.3622 418,537.3622 418,536.8622 418,535.8622 418,535.3622 417.5,535.3622 410.5,535.3622 Z" id="path4432" inkscape:connector-curvature="0" />
+<rect y="530.3622" x="412" height="4.000005" width="2.999998" id="rect5201" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="531.3622" x="411" height="1" width="1" id="rect5203" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="533.3622" x="411" height="1" width="1" id="rect5205" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="530.3622" x="418" height="4.000016" width="1.99995" id="rect5211" style="fill:url(#linearGradient19282)" />
+<rect y="532.3622" x="417" height="1" width="1" id="rect5213" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect5217" width="1" height="1" x="417" y="530.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect5219" width="1" height="1" x="410" y="532.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect5221" width="1" height="1" x="410" y="530.3622" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect5223" width="1.000002" height="1" x="416" y="-534.3622" />
+<rect y="-532.3622" x="416" height="1" width="1.000002" id="rect5225" style="fill:url(#linearGradient19282)" transform="scale(1,-1)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect5227" width="1.000002" height="1" x="415" y="-531.3622" />
+<rect y="-533.3622" x="415" height="1" width="1.000002" id="rect5229" style="fill:url(#linearGradient19282)" transform="scale(1,-1)" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.391772px" d="M 413,539.3622 413,541.3823 415,541.3823 415,539.3622 413,539.3622 Z" id="path18881" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="M 417,541.3622 417,539.3622 420,539.3622 420,537.3622 422.9883,540.3622 420,543.3622 420,541.3622 Z" id="path18883" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path18885" d="M 410,539.3823 410,541.4025 412,541.4025 412,539.3823 410,539.3823 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.391772px" />
+</g>
<g id="transform-affect-pattern" inkscape:label="#transform_pattern">
-<g id="g19092">
-<path sodipodi:nodetypes="ccccccccccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 440,528.3622 440,529.3622 440.5,529.3622 451,529.3622 451,535.8544 451,536.3544 452,536.3544 452,535.8544 452,528.8622 452,528.3622 451.5,528.3622 440.5,528.3622 Z" id="path18966" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 440,535.3544 440,536.3544 440.5,536.3544 447,536.3544 447,536.8544 447,537.3544 448,537.3544 448,536.8544 448,535.8544 448,535.3544 447.5,535.3544 440.5,535.3544 Z" id="path18968" inkscape:connector-curvature="0" />
-<rect y="527.3544" x="438" height="16" width="16" id="rect18970" style="opacity:0.3;fill:none;stroke:none" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.391772px;marker:none;enable-background:accumulate" d="M 443,539.3544 443,541.3746 445,541.3746 445,539.3544 443,539.3544 Z" id="path18996" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 447,541.3544 447,539.3544 450,539.3544 450,537.3544 452.9883,540.3544 450,543.3544 450,541.3544 Z" id="path18998" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path19000" d="M 440,539.3746 440,541.3947 442,541.3947 442,539.3746 440,539.3746 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.391772px;marker:none;enable-background:accumulate" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19028" width="1" height="0.9995091" x="440" y="530.3627" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19030" width="1" height="1" x="441" y="531.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19032" width="1" height="1" x="442" y="532.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19034" width="1" height="1" x="441" y="533.3622" />
-<rect y="530.3627" x="440" height="0.9995091" width="1" id="rect19036" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="531.3622" x="441" height="1" width="1" id="rect19038" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="532.3622" x="442" height="1" width="1" id="rect19040" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="533.3622" x="441" height="1" width="1" id="rect19042" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="530.3627" x="443" height="0.9995091" width="1" id="rect19060" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="531.3622" x="444" height="1" width="1" id="rect19062" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="532.3622" x="445" height="1" width="1" id="rect19064" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="533.3622" x="444" height="1" width="1" id="rect19066" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19068" width="1" height="0.9995091" x="443" y="530.3627" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19070" width="1" height="1" x="444" y="531.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19072" width="1" height="1" x="445" y="532.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19074" width="1" height="1" x="444" y="533.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19076" width="1" height="0.9995091" x="446" y="530.3627" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19078" width="1" height="1" x="447" y="531.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19080" width="1" height="1" x="448" y="532.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19082" width="1" height="1" x="447" y="533.3622" />
-<rect y="530.3627" x="446" height="0.9995091" width="1" id="rect19084" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="531.3622" x="447" height="1" width="1" id="rect19086" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="532.3622" x="448" height="1" width="1" id="rect19088" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="533.3622" x="447" height="1" width="1" id="rect19090" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-<g id="g19208">
-<g style="fill:url(#linearGradient19282);fill-opacity:1" inkscape:label="#g5821" id="node-transform" transform="translate(-131,503.3622)">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 480,55 480,60 481.5,58.5 483.5,60.5 482,62 487,62 487,57 485.5,58.5 483.5,56.5 485,55 480,55 Z" id="path5786" sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" />
-<use style="fill:url(#linearGradient19282);fill-opacity:1" x="0" y="0" xlink:href="#path5786" id="use5795" transform="matrix(-1,0,0,1,976,0)" width="1250" height="540" />
-<use style="fill:url(#linearGradient19282);fill-opacity:1" x="0" y="0" xlink:href="#path5786" id="use5805" transform="matrix(1,0,0,-1,0,126)" width="1250" height="540" />
-<use style="fill:url(#linearGradient19282);fill-opacity:1" x="0" y="0" xlink:href="#path5786" id="use5819" transform="rotate(180,488,63)" width="1250" height="540" />
-</g>
-<rect transform="translate(0,512.3622)" y="46" x="349" height="16" width="16" id="rect19206" style="fill:none;fill-opacity:1;stroke:none" />
+<rect style="opacity:0.3;fill:none" id="rect18970" width="16" height="16" x="438" y="527.3544" />
+<path inkscape:connector-curvature="0" id="path18966" d="m 440,528.3622 0,1 0.5,0 10.5,0 0,6.4922 0,0.5 1,0 0,-0.5 0,-6.9922 0,-0.5 -0.5,0 -11,0 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" sodipodi:nodetypes="ccccccccccccc" />
+<path inkscape:connector-curvature="0" id="path18968" d="m 440,535.3544 0,1 0.5,0 6.5,0 0,0.5 0,0.5 1,0 0,-0.5 0,-1 0,-0.5 -0.5,0 -7,0 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" sodipodi:nodetypes="ccccccccccccc" />
+<path inkscape:connector-curvature="0" id="path18996" d="m 443,539.3544 0,2.0202 2,0 0,-2.0202 -2,0 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.391772px" />
+<path inkscape:connector-curvature="0" id="path18998" d="m 447,541.3544 0,-2 3,0 0,-2 2.9883,3 -2.9883,3 0,-2 z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.391772px" d="m 440,539.3746 0,2.0201 2,0 0,-2.0201 -2,0 z" id="path19000" inkscape:connector-curvature="0" />
+<rect y="530.3627" x="440" height="0.9995091" width="1" id="rect19028" style="fill:url(#linearGradient19282)" />
+<rect y="531.3622" x="441" height="1" width="1" id="rect19030" style="fill:url(#linearGradient19282)" />
+<rect y="532.3622" x="442" height="1" width="1" id="rect19032" style="fill:url(#linearGradient19282)" />
+<rect y="533.3622" x="441" height="1" width="1" id="rect19034" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19036" width="1" height="0.9995091" x="440" y="530.3627" />
+<rect style="fill:url(#linearGradient19282)" id="rect19038" width="1" height="1" x="441" y="531.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19040" width="1" height="1" x="442" y="532.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19042" width="1" height="1" x="441" y="533.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19060" width="1" height="0.9995091" x="443" y="530.3627" />
+<rect style="fill:url(#linearGradient19282)" id="rect19062" width="1" height="1" x="444" y="531.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19064" width="1" height="1" x="445" y="532.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19066" width="1" height="1" x="444" y="533.3622" />
+<rect y="530.3627" x="443" height="0.9995091" width="1" id="rect19068" style="fill:url(#linearGradient19282)" />
+<rect y="531.3622" x="444" height="1" width="1" id="rect19070" style="fill:url(#linearGradient19282)" />
+<rect y="532.3622" x="445" height="1" width="1" id="rect19072" style="fill:url(#linearGradient19282)" />
+<rect y="533.3622" x="444" height="1" width="1" id="rect19074" style="fill:url(#linearGradient19282)" />
+<rect y="530.3627" x="446" height="0.9995091" width="1" id="rect19076" style="fill:url(#linearGradient19282)" />
+<rect y="531.3622" x="447" height="1" width="1" id="rect19078" style="fill:url(#linearGradient19282)" />
+<rect y="532.3622" x="448" height="1" width="1" id="rect19080" style="fill:url(#linearGradient19282)" />
+<rect y="533.3622" x="447" height="1" width="1" id="rect19082" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19084" width="1" height="0.9995091" x="446" y="530.3627" />
+<rect style="fill:url(#linearGradient19282)" id="rect19086" width="1" height="1" x="447" y="531.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19088" width="1" height="1" x="448" y="532.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19090" width="1" height="1" x="447" y="533.3622" />
+</g>
+<g id="node-transform">
+<g style="fill:url(#linearGradient19282)" id="g6213" transform="translate(-131,503.3622)">
+<path d="m 480,55 0,5 1.5,-1.5 2,2 -1.5,1.5 5,0 0,-5 -1.5,1.5 -2,-2 1.5,-1.5 -5,0 z" id="path5786" sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" />
+<use x="0" y="0" xlink:href="#path5786" id="use5795" transform="matrix(-1,0,0,1,976,0)" width="1250" height="540" />
+<use x="0" y="0" xlink:href="#path5786" id="use5805" transform="matrix(1,0,0,-1,0,126)" width="1250" height="540" />
+<use x="0" y="0" xlink:href="#path5786" id="use5819" transform="rotate(180,488,63)" width="1250" height="540" />
+</g>
+<rect transform="translate(0,512.3622)" y="46" x="349" height="16" width="16" id="rect19206" style="fill:none" />
</g>
<g id="node-add" inkscape:label="#node_insert">
-<rect y="558.3622" x="378" height="16" width="16" id="rect10573" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" d="M 378.4579,571.3622 A 0.5033269,0.5021925 0 1 0 378.5518,572.3622 L 393.4917,572.3622 A 0.5011798,0.5000502 0 1 0 393.4917,571.3622 L 378.5518,571.3622 A 0.5011798,0.5000502 0 0 0 378.4579,571.3622 Z" id="path10583" inkscape:connector-curvature="0" />
-<rect y="569.3622" x="383" height="5.000002" width="6" id="rect10585" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" ry="0" />
-<path inkscape:connector-curvature="0" id="path10587" d="M 385,558.3622 387,558.3622 387,561.3622 390,561.3622 390,563.3622 387,563.3622 387,566.3622 385,566.3622 385,563.3622 382,563.3622 382,561.3622 385,561.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="ccccccccccccc" />
+<rect y="558.3622" x="378" height="16" width="16" id="rect10573" style="color:#000000;fill:none" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" d="M 378.4579,571.3622 A 0.5033269,0.5021925 0 1 0 378.5518,572.3622 L 393.4917,572.3622 A 0.5011798,0.5000502 0 1 0 393.4917,571.3622 L 378.5518,571.3622 A 0.5011798,0.5000502 0 0 0 378.4579,571.3622 Z" id="path10583" inkscape:connector-curvature="0" />
+<rect y="569.3622" x="383" height="5.000002" width="6" id="rect10585" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd" ry="0" />
+<path inkscape:connector-curvature="0" id="path10587" d="M 385,558.3622 387,558.3622 387,561.3622 390,561.3622 390,563.3622 387,563.3622 387,566.3622 385,566.3622 385,563.3622 382,563.3622 382,561.3622 385,561.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" sodipodi:nodetypes="ccccccccccccc" />
</g>
<g id="node-delete" inkscape:label="#node_delete">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect19271" width="16" height="16" x="408" y="558.3622" />
-<path inkscape:connector-curvature="0" id="path19273" d="M 408.5,571.3622 A 0.5021925,0.5021925 0 1 0 408.5937,572.3622 L 423.5,572.3622 A 0.5000502,0.5000502 0 1 0 423.5,571.3622 L 408.5937,571.3622 A 0.5000502,0.5000502 0 0 0 408.5,571.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" id="rect19275" width="6" height="5" x="413" y="569.3622" />
-<path sodipodi:nodetypes="ccccccccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 415,561.3622 417,561.3622 417,561.3622 420,561.3622 420,563.3622 417,563.3622 417,563.3622 415,563.3622 415,563.3622 412,563.3622 412,561.3622 415,561.3622 Z" id="path19277" inkscape:connector-curvature="0" />
+<rect style="color:#000000;fill:none" id="rect19271" width="16" height="16" x="408" y="558.3622" />
+<path inkscape:connector-curvature="0" id="path19273" d="M 408.5,571.3622 A 0.5021925,0.5021925 0 1 0 408.5937,572.3622 L 423.5,572.3622 A 0.5000502,0.5000502 0 1 0 423.5,571.3622 L 408.5937,571.3622 A 0.5000502,0.5000502 0 0 0 408.5,571.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd" id="rect19275" width="6" height="5" x="413" y="569.3622" />
+<path sodipodi:nodetypes="ccccccccccccc" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 415,561.3622 417,561.3622 417,561.3622 420,561.3622 420,563.3622 417,563.3622 417,563.3622 415,563.3622 415,563.3622 412,563.3622 412,561.3622 415,561.3622 Z" id="path19277" inkscape:connector-curvature="0" />
</g>
<g id="node-join">
-<rect y="558.3622" x="438" height="16" width="16" id="rect3630" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect y="558.3622" x="440" height="3.999997" width="4" id="rect3632" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" />
-<rect y="569.3622" x="444" height="4.999998" width="4" id="rect4374" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000004;marker:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 445,562.3622 447,562.3622 447.006,565.368 449.006,565.368 446.006,568.3563 443.006,565.368 445.006,565.368 Z" id="path19382" inkscape:connector-curvature="0" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" id="rect19498" width="4" height="3.999997" x="448" y="558.3622" />
-<rect transform="translate(0,512.3622)" y="59" x="438" height="1" width="16" id="rect19520" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<rect y="559.3622" x="438" height="1" width="3" id="rect19524" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="559.3622" x="451" height="1" width="3" id="rect19526" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="558.3622" x="438" height="16" width="16" id="rect3630" style="color:#000000;fill:none" />
+<rect y="558.3622" x="440" height="3.999997" width="4" id="rect3632" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" />
+<rect y="569.3622" x="444" height="4.999998" width="4" id="rect4374" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000004" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="M 445,562.3622 447,562.3622 447.006,565.368 449.006,565.368 446.006,568.3563 443.006,565.368 445.006,565.368 Z" id="path19382" inkscape:connector-curvature="0" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" id="rect19498" width="4" height="3.999997" x="448" y="558.3622" />
+<rect transform="translate(0,512.3622)" y="59" x="438" height="1" width="16" id="rect19520" style="fill:url(#linearGradient19282);stroke-width:2" />
+<rect y="559.3622" x="438" height="1" width="3" id="rect19524" style="fill:url(#linearGradient19282)" />
+<rect y="559.3622" x="451" height="1" width="3" id="rect19526" style="fill:url(#linearGradient19282)" />
</g>
<g id="node-break" inkscape:label="#node_break">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect19506" width="16" height="16" x="468" y="558.3622" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" id="rect19510" width="4" height="3.999997" x="470" y="570.3622" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000004;marker:none" id="rect19514" width="4" height="4.999998" x="474" y="558.3622" />
-<path inkscape:connector-curvature="0" id="path19516" d="M 475.0058,564.368 477.0058,564.368 477.0058,567.368 479.0058,567.368 476.0058,570.3563 473.0058,567.368 475.0058,567.368 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<rect y="570.3622" x="478" height="3.999997" width="4" id="rect19518" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" />
-<rect transform="translate(0,512.3622)" y="48" x="468" height="1" width="16" id="rect19528" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<rect transform="translate(0,512.3622)" y="59" x="481" height="1" width="3" id="rect19530" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<rect transform="translate(0,512.3622)" y="59" x="468" height="1" width="3" id="rect19533" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+<rect style="color:#000000;fill:none" id="rect19506" width="16" height="16" x="468" y="558.3622" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" id="rect19510" width="4" height="3.999997" x="470" y="570.3622" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000004" id="rect19514" width="4" height="4.999998" x="474" y="558.3622" />
+<path inkscape:connector-curvature="0" id="path19516" d="M 475.0058,564.368 477.0058,564.368 477.0058,567.368 479.0058,567.368 476.0058,570.3563 473.0058,567.368 475.0058,567.368 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<rect y="570.3622" x="478" height="3.999997" width="4" id="rect19518" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" />
+<rect transform="translate(0,512.3622)" y="48" x="468" height="1" width="16" id="rect19528" style="fill:url(#linearGradient19282);stroke-width:2" />
+<rect transform="translate(0,512.3622)" y="59" x="481" height="1" width="3" id="rect19530" style="fill:url(#linearGradient19282);stroke-width:2" />
+<rect transform="translate(0,512.3622)" y="59" x="468" height="1" width="3" id="rect19533" style="fill:url(#linearGradient19282);stroke-width:2" />
</g>
<g id="node-delete-segment" inkscape:label="#node_delete_segment">
-<rect y="558.3622" x="498" height="16" width="16" id="rect19576" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect y="570.3622" x="500" height="3.999997" width="4" id="rect19578" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 505,563.3622 507,563.3622 507.006,566.368 509.006,566.368 506.006,569.3563 503.006,566.368 505.006,566.368 Z" id="path19582" inkscape:connector-curvature="0" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" id="rect19584" width="4" height="3.999997" x="508" y="570.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19588" width="3" height="1" x="511" y="571.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19590" width="3" height="1" x="498" y="571.3622" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" id="rect19600" width="4" height="3.999997" x="500" y="558.3622" />
-<rect y="558.3622" x="508" height="3.999997" width="4" id="rect19602" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" />
-<rect y="559.3622" x="498" height="1" width="16" id="rect19606" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="558.3622" x="498" height="16" width="16" id="rect19576" style="color:#000000;fill:none" />
+<rect y="570.3622" x="500" height="3.999997" width="4" id="rect19578" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="M 505,563.3622 507,563.3622 507.006,566.368 509.006,566.368 506.006,569.3563 503.006,566.368 505.006,566.368 Z" id="path19582" inkscape:connector-curvature="0" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" id="rect19584" width="4" height="3.999997" x="508" y="570.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19588" width="3" height="1" x="511" y="571.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19590" width="3" height="1" x="498" y="571.3622" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" id="rect19600" width="4" height="3.999997" x="500" y="558.3622" />
+<rect y="558.3622" x="508" height="3.999997" width="4" id="rect19602" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" />
+<rect y="559.3622" x="498" height="1" width="16" id="rect19606" style="fill:url(#linearGradient19282)" />
</g>
<g id="node-join-segment" inkscape:label="#node_join_segment">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect19608" width="16" height="16" x="528" y="558.3622" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" id="rect19610" width="4" height="3.999997" x="530" y="570.3622" />
-<path inkscape:connector-curvature="0" id="path19612" d="M 535,563.3622 537,563.3622 537.006,566.368 539.006,566.368 536.006,569.3563 533.006,566.368 535.006,566.368 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<rect y="570.3622" x="538" height="3.999997" width="4" id="rect19614" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" />
-<rect y="559.3622" x="541" height="1.000003" width="3" id="rect19616" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="559.3622" x="528" height="1" width="3" id="rect19618" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="558.3622" x="530" height="3.999997" width="4" id="rect19620" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000001;marker:none" id="rect19622" width="4" height="3.999997" x="538" y="558.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19624" width="16" height="1" x="528" y="571.3622" />
+<rect style="color:#000000;fill:none" id="rect19608" width="16" height="16" x="528" y="558.3622" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" id="rect19610" width="4" height="3.999997" x="530" y="570.3622" />
+<path inkscape:connector-curvature="0" id="path19612" d="M 535,563.3622 537,563.3622 537.006,566.368 539.006,566.368 536.006,569.3563 533.006,566.368 535.006,566.368 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<rect y="570.3622" x="538" height="3.999997" width="4" id="rect19614" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" />
+<rect y="559.3622" x="541" height="1.000003" width="3" id="rect19616" style="fill:url(#linearGradient19282)" />
+<rect y="559.3622" x="528" height="1" width="3" id="rect19618" style="fill:url(#linearGradient19282)" />
+<rect y="558.3622" x="530" height="3.999997" width="4" id="rect19620" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000001" id="rect19622" width="4" height="3.999997" x="538" y="558.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect19624" width="16" height="1" x="528" y="571.3622" />
</g>
<g id="zoom-in" inkscape:label="#zoom_in">
-<g transform="translate(31)" id="g19686" inkscape:label="#g14119">
-<g inkscape:label="#g11534" id="g19688" transform="translate(243,-18)">
-<g inkscape:label="#zoom_select" id="g19690" transform="translate(0,20)">
-<g id="g19692" inkscape:label="#zoom_select" transform="translate(-23,19.5)">
-<g inkscape:label="#zoom_selection" id="g19694">
-<g inkscape:label="#g11150" id="g19696" transform="translate(0,20)">
-<g id="g19698" transform="translate(0,19.96825)">
-<g id="g19700" transform="matrix(1,0,0,0.9980195,0,21.07621)" />
-</g>
-</g>
-</g>
-</g>
-<g transform="translate(-21,40)" id="g19702">
-<g id="g19704" transform="translate(21)">
-<g id="g19706" transform="translate(0,20)">
-<g id="g19708">
-<rect transform="translate(0,512.3622)" y="15" x="75" height="16" width="16" id="rect19710" style="fill:none;stroke:none" />
-</g>
-<g id="g19712">
-<path inkscape:connector-curvature="0" id="path19714" transform="translate(-243,456.3622)" d="M 325.5,71 C 321.3579,71 318,74.33709 318,78.4375 318,82.53789 321.3579,85.84375 325.5,85.84375 326.9733,85.84375 328.3409,85.41397 329.5,84.6875 L 331.4687,86.625 C 331.9867,87.13661 332.8021,87.11304 333.3125,86.59375 L 333.5625,86.34375 C 334.0729,85.82451 334.0805,84.98035 333.5625,84.46875 L 331.6562,82.625 C 332.4955,81.42604 333,80.00669 333,78.4375 333,74.3371 329.6421,71 325.5,71 Z M 325.5,73 C 328.5376,73 331,75.46243 331,78.5 331,81.53757 328.5376,84 325.5,84 322.4624,84 320,81.53757 320,78.5 320,75.46243 322.4624,73 325.5,73 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-</g>
-</g>
-</g>
-</g>
-<rect y="592.3622" x="355" height="9" width="3" id="rect19716" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="595.3622" x="352" height="3.000003" width="9" id="rect19718" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect19710" width="16" height="16" x="349" y="589.3622" />
+<path style="fill:url(#linearGradient19282)" d="m 356.5,589.3622 c -4.1421,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.3579,7.4063 7.5,7.4063 1.4733,0 2.8409,-0.4298 4,-1.1563 l 1.9687,1.9375 c 0.518,0.5116 1.3334,0.488 1.8438,-0.031 l 0.25,-0.25 c 0.5104,-0.5192 0.518,-1.3634 0,-1.875 l -1.9063,-1.8438 c 0.8393,-1.199 1.3438,-2.6183 1.3438,-4.1875 0,-4.1004 -3.3579,-7.4375 -7.5,-7.4375 z m 0,2 c 3.0376,0 5.5,2.4624 5.5,5.5 0,3.0376 -2.4624,5.5 -5.5,5.5 -3.0376,0 -5.5,-2.4624 -5.5,-5.5 0,-3.0376 2.4624,-5.5 5.5,-5.5 z" id="path19714" inkscape:connector-curvature="0" />
+<rect y="592.3622" x="355" height="9" width="3" id="rect19716" style="fill:url(#linearGradient19282)" />
+<rect y="595.3622" x="352" height="3.000003" width="9" id="rect19718" style="fill:url(#linearGradient19282)" />
</g>
<g id="zoom-out" inkscape:label="#zoom_out">
-<g inkscape:label="#g14119" id="g19720" transform="translate(60)">
-<g transform="translate(243,-18)" id="g19723" inkscape:label="#g11534">
-<g transform="translate(0,20)" id="g19725" inkscape:label="#zoom_select">
-<g transform="translate(-23,19.5)" inkscape:label="#zoom_select" id="g19727">
-<g id="g19729" inkscape:label="#zoom_selection">
-<g transform="translate(0,20)" id="g19731" inkscape:label="#g11150">
-<g transform="translate(0,19.96825)" id="g19733">
-<g transform="matrix(1,0,0,0.9980195,0,21.07621)" id="g19735" />
-</g>
-</g>
-</g>
-</g>
-<g id="g19737" transform="translate(-21,40)">
-<g transform="translate(21)" id="g19739">
-<g transform="translate(0,20)" id="g19741">
-<g id="g19743">
-<rect style="fill:none;stroke:none" id="rect19745" width="16" height="16" x="75" y="15" transform="translate(0,512.3622)" />
-</g>
-<g id="g19747">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 325.5,71 C 321.3579,71 318,74.33709 318,78.4375 318,82.53789 321.3579,85.84375 325.5,85.84375 326.9733,85.84375 328.3409,85.41397 329.5,84.6875 L 331.4687,86.625 C 331.9867,87.13661 332.8021,87.11304 333.3125,86.59375 L 333.5625,86.34375 C 334.0729,85.82451 334.0805,84.98035 333.5625,84.46875 L 331.6562,82.625 C 332.4955,81.42604 333,80.00669 333,78.4375 333,74.3371 329.6421,71 325.5,71 Z M 325.5,73 C 328.5376,73 331,75.46243 331,78.5 331,81.53757 328.5376,84 325.5,84 322.4624,84 320,81.53757 320,78.5 320,75.46243 322.4624,73 325.5,73 Z" transform="translate(-243,456.3622)" id="path19749" inkscape:connector-curvature="0" />
-</g>
-</g>
-</g>
-</g>
-</g>
-</g>
-</g>
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19753" width="9" height="3.000003" x="381" y="595.3622" />
+<rect y="589.3622" x="378" height="16" width="16" id="rect19745" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path19749" d="m 385.5,589.3622 c -4.1421,0 -7.5,3.3371 -7.5,7.4375 0,4.1004 3.3579,7.4063 7.5,7.4063 1.4733,0 2.8409,-0.4298 4,-1.1563 l 1.9687,1.9375 c 0.518,0.5116 1.3334,0.488 1.8438,-0.031 l 0.25,-0.25 c 0.5104,-0.5192 0.518,-1.3634 0,-1.875 l -1.9063,-1.8438 c 0.8393,-1.199 1.3438,-2.6183 1.3438,-4.1875 0,-4.1004 -3.3579,-7.4375 -7.5,-7.4375 z m 0,2 c 3.0376,0 5.5,2.4624 5.5,5.5 0,3.0376 -2.4624,5.5 -5.5,5.5 -3.0376,0 -5.5,-2.4624 -5.5,-5.5 0,-3.0376 2.4624,-5.5 5.5,-5.5 z" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19753" width="9" height="3.000003" x="381" y="595.3622" />
</g>
<g id="rectangle-make-corners-sharp" inkscape:label="#squared_corner">
-<rect y="620.3622" x="349" height="16" width="16" id="rect19811" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="621.3622" x="353" height="2" width="11" id="rect19813" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="621.3622" x="362" height="11" width="2" id="rect19815" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="109" x="350" height="2" width="2" id="rect19817" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="121" x="362" height="2" width="2" id="rect19819" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="620.3622" x="349" height="16" width="16" id="rect19811" style="fill:none" />
+<rect y="621.3622" x="353" height="2" width="11" id="rect19813" style="fill:url(#linearGradient19282)" />
+<rect y="621.3622" x="362" height="11" width="2" id="rect19815" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="109" x="350" height="2" width="2" id="rect19817" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="121" x="362" height="2" width="2" id="rect19819" style="fill:url(#linearGradient19282)" />
</g>
<g id="draw-ellipse-segment" inkscape:label="#circle_closed_arc">
-<rect style="fill:none;stroke:none" id="rect4316" width="16" height="16" x="379" y="651.3622" />
-<path transform="translate(-121,501.3622)" d="M 514,158 A 6,6 0 0 1 509.0419,163.9088 6,6 0 0 1 502.3618,160.0521 6,6 0 0 1 505,152.8038 L 508,158 Z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path4318" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="4.18879" />
+<rect style="fill:none" id="rect4316" width="16" height="16" x="379" y="651.3622" />
+<path transform="translate(-121,501.3622)" d="m 514,158 a 6,6 0 0 1 -4.9581,5.9088 6,6 0 0 1 -6.6801,-3.8567 A 6,6 0 0 1 505,152.8038 L 508,158 Z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path4318" style="fill:url(#linearGradient19282);stroke-miterlimit:1.5" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="4.18879" />
</g>
<g id="draw-ellipse-arc" inkscape:label="#circle_open_arc">
-<rect y="651.3622" x="409" height="16" width="16" id="rect19892" style="fill:none;stroke:none" />
-<path inkscape:label="#reset_circle" id="draw-ellipse-whole" transform="translate(0,512.3622)" d="M 414,142 C 411.213,143.5809 410.1939,147.0432 411.6875,149.8437 413.2254,152.7275 416.846,153.8235 419.7812,152.3125 422.7165,150.8015 423.8504,147.2588 422.3125,144.375 L 420.5625,145.25 C 421.5192,147.1903 420.7709,149.5216 418.8437,150.5312 416.887,151.5565 414.494,150.8004 413.4687,148.8437 412.483,146.9626 413.1463,144.6801 414.9375,143.5937 L 414,142 Z" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect y="651.3622" x="409" height="16" width="16" id="rect19892" style="fill:none" />
+<path id="path9873" transform="translate(0,512.3622)" d="m 414,142 c -2.787,1.5809 -3.8061,5.0432 -2.3125,7.8437 1.5379,2.8838 5.1585,3.9798 8.0937,2.4688 2.9353,-1.511 4.0692,-5.0537 2.5313,-7.9375 l -1.75,0.875 c 0.9567,1.9403 0.2084,4.2716 -1.7188,5.2812 -1.9567,1.0253 -4.3497,0.2692 -5.375,-1.6875 -0.9857,-1.8811 -0.3224,-4.1636 1.4688,-5.25 L 414,142 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
-<g id="g19923" inkscape:label="#circle_reset">
-<rect style="fill:none;stroke:none" id="rect19849" width="16" height="16" x="349" y="651.3622" />
-<path id="path19864" transform="translate(0,512.3622)" d="M 357,141 C 353.6863,141 351,143.6863 351,147 351,150.3137 353.6863,153 357,153 359.6234,153 361.8409,151.3144 362.6562,148.9687 362.0675,148.8644 361.5177,148.5081 361.2187,147.9375 360.7062,146.9593 361.0842,145.7313 362.0625,145.2187 362.263,145.1137 362.4753,145.064 362.6875,145.0312 362.3411,144.0288 361.721,143.1501 360.9375,142.4687 360.8061,143.0076 360.4674,143.5036 359.9375,143.7812 358.9592,144.2938 357.7313,143.9158 357.2187,142.9375 356.8875,142.3052 356.947,141.5746 357.2812,141 357.1893,140.9958 357.093,141 357,141 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path sodipodi:end="12.06093" sodipodi:start="5.800554" transform="translate(0,512.3622)" d="M 359.8858,141.5359 A 1,1 0 0 1 359.4692,142.8831 1,1 0 0 1 358.1196,142.4742 1,1 0 0 1 358.5208,141.1223 1,1 0 0 1 359.875,141.5158 L 359,142 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="142" sodipodi:cx="359" id="path19915" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
-<path sodipodi:end="12.06093" sodipodi:start="5.800554" transform="translate(0,512.3622)" d="M 363.8858,146.5359 A 1,1 0 0 1 363.4692,147.8831 1,1 0 0 1 362.1196,147.4742 1,1 0 0 1 362.5208,146.1223 1,1 0 0 1 363.875,146.5158 L 363,147 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="147" sodipodi:cx="363" id="path19917" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
+<g id="draw-ellipse-whole" inkscape:label="#reset_circle">
+<rect style="fill:none" id="rect19849" width="16" height="16" x="349" y="651.3622" />
+<path id="path19864" transform="translate(0,512.3622)" d="m 357,141 c -3.3137,0 -6,2.6863 -6,6 0,3.3137 2.6863,6 6,6 2.6234,0 4.8409,-1.6856 5.6562,-4.0313 -0.5887,-0.1043 -1.1385,-0.4606 -1.4375,-1.0312 -0.5125,-0.9782 -0.1345,-2.2062 0.8438,-2.7188 0.2005,-0.105 0.4128,-0.1547 0.625,-0.1875 -0.3464,-1.0024 -0.9665,-1.8811 -1.75,-2.5625 -0.1314,0.5389 -0.4701,1.0349 -1,1.3125 -0.9783,0.5126 -2.2062,0.1346 -2.7188,-0.8437 -0.3312,-0.6323 -0.2717,-1.3629 0.062,-1.9375 -0.092,0 -0.1882,0 -0.2812,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path sodipodi:end="5.777745" sodipodi:start="5.800554" transform="translate(0,512.3622)" d="m 359.8858,141.5359 a 1,1 0 0 1 -0.4166,1.3472 1,1 0 0 1 -1.3496,-0.4089 1,1 0 0 1 0.4012,-1.3519 1,1 0 0 1 1.3542,0.3935 L 359,142 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="142" sodipodi:cx="359" id="path19915" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
+<path sodipodi:end="5.777745" sodipodi:start="5.800554" transform="translate(0,512.3622)" d="m 363.8858,146.5359 a 1,1 0 0 1 -0.4166,1.3472 1,1 0 0 1 -1.3496,-0.4089 1,1 0 0 1 0.4012,-1.3519 1,1 0 0 1 1.3542,0.3935 L 363,147 Z" sodipodi:ry="1" sodipodi:rx="1" sodipodi:cy="147" sodipodi:cx="363" id="path19917" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
</g>
-<g id="draw-star" inkscape:label="#g19984">
-<rect y="682.3622" x="349" height="15.9375" width="15.97919" id="rect19962" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1.0000001;marker:none" />
-<path inkscape:transform-center-y="-0.832503" inkscape:transform-center-x="0.009778893" transform="matrix(0.9894997,-0.0031023,0.00325,1.036625,9.063383,513.1218)" d="M 356.0625,179.6875 351.0644,176.8522 346.0691,179.6923 347.2211,174.0627 342.9764,170.1894 348.6865,169.5454 351.0584,164.3116 353.4354,169.5432 359.1461,170.1817 354.9051,174.059 Z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" sodipodi:arg2="1.570319" sodipodi:arg1="0.942" sodipodi:r2="4.039715" sodipodi:r1="8.500919" sodipodi:cy="172.8125" sodipodi:cx="351.0625" sodipodi:sides="5" id="path19973" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="star" />
+<g id="draw-star">
+<rect y="682.3622" x="349" height="15.9375" width="15.97919" id="rect19962" style="color:#000000;fill:none;stroke-width:1.0000001" />
+<path inkscape:transform-center-y="-0.832503" inkscape:transform-center-x="0.009778893" transform="matrix(0.9894997,-0.0031023,0.00325,1.036625,9.063383,513.1218)" d="m 356.0625,179.6875 -4.9981,-2.8353 -4.9953,2.8401 1.152,-5.6296 -4.2447,-3.8733 5.7101,-0.644 2.3719,-5.2338 2.377,5.2316 5.7107,0.6385 -4.241,3.8773 z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" sodipodi:arg2="1.570319" sodipodi:arg1="0.942" sodipodi:r2="4.039715" sodipodi:r1="8.500919" sodipodi:cy="172.8125" sodipodi:cx="351.0625" sodipodi:sides="5" id="path19973" style="fill:url(#linearGradient19282)" sodipodi:type="star" />
</g>
-<g id="draw-polygon" inkscape:label="#g19980">
-<rect transform="translate(0,512.3622)" y="170" x="379" height="16" width="16" id="rect19975" style="fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path19977" d="M 391,697.3622 383,697.3622 380,688.7468 387,683.3622 394,688.7468 Z" inkscape:transform-center-y="-0.737278" inkscape:transform-center-x="-0.004182442" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g id="draw-polygon">
+<rect transform="translate(0,512.3622)" y="170" x="379" height="16" width="16" id="rect19975" style="fill:none" />
+<path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path19977" d="m 391,697.3622 -8,0 -3,-8.6154 7,-5.3846 7,5.3846 z" inkscape:transform-center-y="-0.737278" inkscape:transform-center-x="-0.004182442" style="fill:url(#linearGradient19282)" />
</g>
<g id="draw-use-tilt" inkscape:label="#use_tilt" transform="translate(1)">
-<rect style="fill:none;stroke:none" id="use_tilt" width="16" height="16" x="348" y="805.3622" />
-<path inkscape:connector-curvature="0" id="path4036" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.3666546;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 355.6408,807.6834 354.7332,807.0455 349.6833,819.6701 362.3079,819.6701 362.3079,818.1907" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.4505714;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 353,814.3622 C 354.1524,814.5123 355.7825,816.2176 356.0885,818.4143" id="path15733" sodipodi:nodetypes="cc" />
-</g>
-<g id="g20847">
-<g id="g20228">
-<g id="g20221">
-<g id="g20185">
-<g style="display:inline" id="draw-use-pressure" transform="matrix(1.369323,0,0,1.456319,-567.92,362.9858)" inkscape:label="#guse_pressure">
-<rect style="fill:none;stroke:none" id="use_pressure" width="11.684" height="10.9571" x="691.524" y="303.7634" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 691.5241,314.2513 691.5301,314.75 703.2083,314.7339 703.2086,310.7607 C 701.0177,312.69 697.3663,314.0633 691.524,314.0633 Z" id="path7145" sodipodi:nodetypes="cccccc" />
-</g>
-<path inkscape:connector-curvature="0" id="path20147" d="M 386,807.3622 388,807.3622 388,813.3622 391,813.3622 387,817.3622 383,813.3641 386,813.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-</g>
+<rect style="fill:none" id="use_tilt" width="16" height="16" x="348" y="805.3622" />
+<path inkscape:connector-curvature="0" id="path4036" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.3666546;stroke-linecap:round;stroke-linejoin:round" d="M 355.6408,807.6834 354.7332,807.0455 349.6833,819.6701 362.3079,819.6701 362.3079,818.1907" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.4505714;stroke-linecap:round" d="M 353,814.3622 C 354.1524,814.5123 355.7825,816.2176 356.0885,818.4143" id="path15733" sodipodi:nodetypes="cc" />
</g>
+<g id="draw-use-pressure" inkscape:label="#guse_pressure">
+<g transform="matrix(1.369323,0,0,1.456319,-567.92,362.9858)" id="g6258">
+<rect y="303.7634" x="691.524" height="10.9571" width="11.684" id="use_pressure" style="fill:none" />
+<path sodipodi:nodetypes="cccccc" id="path7145" d="m 691.5241,314.2513 0.01,0.4987 11.6782,-0.016 3e-4,-3.9732 c -2.1909,1.9293 -5.8423,3.3026 -11.6846,3.3026 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
</g>
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="m 386,807.3622 2,0 0,6 3,0 -4,4 -4,-3.9981 3,0 z" id="path20147" inkscape:connector-curvature="0" />
</g>
<g id="text_letter_spacing" inkscape:label="#text_letter_spacing">
-<rect y="836.3622" x="349" height="16" width="16" id="rect20895" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 351.5031,840.3681 349,847.3577 350.5019,847.3577 C 351.2459,845.3607 350.4999,847.3587 351.2442,845.3622 L 353.8028,845.3802 354.5069,847.3577 356.0087,847.3577 353.5056,840.3681 Z M 352.5044,841.8659 353.5167,844.3622 351.5142,844.3622 Z" id="path20901" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path20920" d="M 360.5031,840.3681 358,847.3577 359.5019,847.3577 C 360.2459,845.3607 359.4999,847.3587 360.2442,845.3622 L 362.8028,845.3802 363.5069,847.3577 365.0087,847.3577 362.5056,840.3681 Z M 361.5044,841.8659 362.5167,844.3622 360.5142,844.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="836.3622" x="349" height="16" width="16" id="rect20895" style="opacity:0.3;fill:none;stroke-width:1.5" />
+<path style="fill:url(#linearGradient19282)" d="M 351.5031,840.3681 349,847.3577 350.5019,847.3577 C 351.2459,845.3607 350.4999,847.3587 351.2442,845.3622 L 353.8028,845.3802 354.5069,847.3577 356.0087,847.3577 353.5056,840.3681 Z M 352.5044,841.8659 353.5167,844.3622 351.5142,844.3622 Z" id="path20901" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path20920" d="M 360.5031,840.3681 358,847.3577 359.5019,847.3577 C 360.2459,845.3607 359.4999,847.3587 360.2442,845.3622 L 362.8028,845.3802 363.5069,847.3577 365.0087,847.3577 362.5056,840.3681 Z M 361.5044,841.8659 362.5167,844.3622 360.5142,844.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="text_line_spacing" inkscape:label="#text_line_spacing">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect20922" width="16" height="16" x="379" y="836.3622" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path20924" d="M 385.9975,845.3622 383.4944,852.3518 384.9962,852.3518 C 385.7402,850.3547 384.9942,852.3528 385.7386,850.3562 L 388.2972,850.3742 389.0013,852.3518 390.5031,852.3518 388,845.3622 Z M 386.9987,846.8599 388.011,849.3562 386.0086,849.3562 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 385.9864,836.3681 383.4833,843.3577 384.9852,843.3577 C 385.7292,841.3607 384.9832,843.3587 385.7276,841.3622 L 388.2861,841.3802 388.9902,843.3577 390.4921,843.3577 387.9889,836.3681 Z M 386.9877,837.8659 388,840.3622 385.9975,840.3622 Z" id="path20926" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+<rect style="opacity:0.3;fill:none" id="rect20922" width="16" height="16" x="379" y="836.3622" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path20924" d="M 385.9975,845.3622 383.4944,852.3518 384.9962,852.3518 C 385.7402,850.3547 384.9942,852.3528 385.7386,850.3562 L 388.2972,850.3742 389.0013,852.3518 390.5031,852.3518 388,845.3622 Z M 386.9987,846.8599 388.011,849.3562 386.0086,849.3562 Z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 385.9864,836.3681 383.4833,843.3577 384.9852,843.3577 C 385.7292,841.3607 384.9832,843.3587 385.7276,841.3622 L 388.2861,841.3802 388.9902,843.3577 390.4921,843.3577 387.9889,836.3681 Z M 386.9877,837.8659 388,840.3622 385.9975,840.3622 Z" id="path20926" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
</g>
<g id="text_word_spacing" inkscape:label="#text_word_spacing">
-<rect y="836.3622" x="409" height="16" width="16" id="rect21014" style="opacity:0.3;fill:none;stroke:none" />
-<path sodipodi:nodetypes="ssccsssccsss" inkscape:connector-curvature="0" id="rect21366" d="M 412,842.3622 C 411.446,842.3622 411,842.8082 411,843.3622 L 411,847.3622 412,847.3622 412,844.3622 C 412,843.8082 412.446,843.3622 413,843.3622 413.554,843.3622 414,843.8082 414,844.3622 L 414,847.3622 415,847.3622 415,843.3622 C 415,842.8082 414.554,842.3622 414,842.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccscsccssccsc" inkscape:connector-curvature="0" id="rect21376" transform="translate(0,512.3622)" d="M 419,326 418,327 418,333.5 C 418,334.2683 418.5695,334.878 419.3125,334.9687 419.3724,334.9939 419.4307,335 419.5,335 419.6616,335 419.8908,335.0001 420,335 L 420,334 419.5,334 C 419.223,334 419,333.777 419,333.5 L 419,333 419,329 419,328 C 419,327.8512 418.96,326.1356 419,326 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect rx="0" ry="0.5" y="840.3622" x="417" height="1" width="3" id="rect21387" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0.5" transform="translate(0,512.3622)" y="330" x="409" height="5" width="1" id="rect21391" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0" transform="translate(0,512.3622)" y="328" x="409" height="1" width="1" id="rect21393" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 422,838.3621 C 421,839.3621 421,839.3621 421,839.3621 L 421,847.3622 422,847.3622 422,845.3622 422,841.3622 422,840.3622 C 422,840.2133 421.96,838.4977 422,838.3621 Z" id="path21395" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccsc" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 422,842.3622 C 421.446,842.3622 421,842.8082 421,843.3622 L 421,847.3622 422,847.3622 422,844.3622 C 422,843.8082 422.446,843.3622 423,843.3622 423.554,843.3622 424,843.8082 424,844.3622 L 424,847.3622 425,847.3622 425,843.3622 C 425,842.8082 424.554,842.3622 424,842.3622 Z" id="path21406" inkscape:connector-curvature="0" sodipodi:nodetypes="ssccsssccsss" />
+<rect y="836.3622" x="409" height="16" width="16" id="rect21014" style="opacity:0.3;fill:none" />
+<path sodipodi:nodetypes="ssccsssccsss" inkscape:connector-curvature="0" id="rect21366" d="M 412,842.3622 C 411.446,842.3622 411,842.8082 411,843.3622 L 411,847.3622 412,847.3622 412,844.3622 C 412,843.8082 412.446,843.3622 413,843.3622 413.554,843.3622 414,843.8082 414,844.3622 L 414,847.3622 415,847.3622 415,843.3622 C 415,842.8082 414.554,842.3622 414,842.3622 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccscsccssccsc" inkscape:connector-curvature="0" id="rect21376" transform="translate(0,512.3622)" d="M 419,326 418,327 418,333.5 C 418,334.2683 418.5695,334.878 419.3125,334.9687 419.3724,334.9939 419.4307,335 419.5,335 419.6616,335 419.8908,335.0001 420,335 L 420,334 419.5,334 C 419.223,334 419,333.777 419,333.5 L 419,333 419,329 419,328 C 419,327.8512 418.96,326.1356 419,326 Z" style="fill:url(#linearGradient19282)" />
+<rect rx="0" ry="0.5" y="840.3622" x="417" height="1" width="3" id="rect21387" style="fill:url(#linearGradient19282)" />
+<rect ry="0.5" transform="translate(0,512.3622)" y="330" x="409" height="5" width="1" id="rect21391" style="fill:url(#linearGradient19282)" />
+<rect ry="0" transform="translate(0,512.3622)" y="328" x="409" height="1" width="1" id="rect21393" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 422,838.3621 C 421,839.3621 421,839.3621 421,839.3621 L 421,847.3622 422,847.3622 422,845.3622 422,841.3622 422,840.3622 C 422,840.2133 421.96,838.4977 422,838.3621 Z" id="path21395" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccsc" />
+<path style="fill:url(#linearGradient19282)" d="M 422,842.3622 C 421.446,842.3622 421,842.8082 421,843.3622 L 421,847.3622 422,847.3622 422,844.3622 C 422,843.8082 422.446,843.3622 423,843.3622 423.554,843.3622 424,843.8082 424,844.3622 L 424,847.3622 425,847.3622 425,843.3622 C 425,842.8082 424.554,842.3622 424,842.3622 Z" id="path21406" inkscape:connector-curvature="0" sodipodi:nodetypes="ssccsssccsss" />
</g>
<g id="text_vert_kern" inkscape:label="#text_vert_kern" transform="matrix(0.999454,0,0,1,0.2396728,0)">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect21439" width="16" height="16" x="439" y="836.3622" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path21441" d="M 441.5031,836.3681 439,843.3577 440.5019,843.3577 C 441.2459,841.3607 440.4999,843.3587 441.2442,841.3622 L 443.8028,841.3802 444.5069,843.3577 446.0087,843.3577 443.5056,836.3681 Z M 442.5044,837.8659 443.5167,840.3622 441.5142,840.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 450.5031,843.3681 448,850.3577 449.5019,850.3577 C 450.2459,848.3607 449.4999,850.3587 450.2442,848.3622 L 452.8028,848.3802 453.5069,850.3577 455.0087,850.3577 452.5056,843.3681 Z M 451.5044,844.8659 452.5167,847.3622 450.5142,847.3622 Z" id="path21443" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
-<rect y="844.3622" x="439" height="1" width="7" id="rect21448" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="851.3622" x="447" height="1" width="8" id="rect21450" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="332" x="446" height="8" width="1" id="rect21452" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="text_horz_kern" inkscape:label="#g21496">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect21483" width="16" height="16" x="469" y="836.3622" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path21485" d="M 471.5031,840.3681 469,847.3577 470.5019,847.3577 C 471.2459,845.3607 470.4999,847.3587 471.2442,845.3622 L 473.8028,845.3802 474.5069,847.3577 476.0087,847.3577 473.5056,840.3681 Z M 472.5044,841.8659 473.5167,844.3622 471.5142,844.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 479.5031,840.3681 477,847.3577 478.5019,847.3577 C 479.2459,845.3607 478.4999,847.3587 479.2442,845.3622 L 481.8028,845.3802 482.5069,847.3577 484.0087,847.3577 481.5056,840.3681 Z M 480.5044,841.8659 481.5167,844.3622 479.5142,844.3622 Z" id="path21487" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
-<rect y="838.3622" x="476" height="11" width="1" id="rect21489" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="848.3622" x="469" height="1" width="15" id="rect21494" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="text_rotation" inkscape:label="#g21541">
-<rect y="836.3622" x="499" height="16" width="16" id="rect21524" style="opacity:0.3;fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 501.5031,840.3681 499,847.3577 500.5019,847.3577 C 501.2459,845.3607 500.4999,847.3587 501.2442,845.3622 L 503.8028,845.3802 504.5069,847.3577 506.0087,847.3577 503.5056,840.3681 Z M 502.5044,841.8659 503.5167,844.3622 501.5142,844.3622 Z" id="path21526" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path21528" d="M 512.3642,842.2559 507.3604,847.8451 508.7721,848.397 C 510.2289,846.8106 508.7701,848.3972 510.2268,846.8114 L 512.6249,847.7684 512.5367,849.8686 513.9484,850.4205 514.2466,842.9918 Z M 512.7373,844.0186 512.7423,846.7152 510.86,845.9794 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21530" width="1" height="11" x="506" y="838.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21532" width="8" height="1" x="499" y="848.3622" />
-<rect transform="matrix(0.9327962,0.3604044,-0.378579,0.925569,0,0)" y="608.8879" x="789.9445" height="1.038135" width="8.465971" id="rect21539" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="draw-trace-background" inkscape:label="#g14983">
-<rect y="805.4052" x="409.0008" height="15.95703" width="15.99918" id="rect20263" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 409.0008,820.6593 409.0088,821.3856 425,821.3622 425.0004,815.5759 C 422.0004,818.3856 417.0004,820.3856 409.0004,820.3856 Z" id="path20286" sodipodi:nodetypes="cccccc" />
-<path id="rect20284" d="M 409,805.3622 409,820.3622 C 417,820.3622 422,818.3593 425,815.5497 L 425,805.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:url(#linearGradient19282);stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<rect style="opacity:0.3;fill:none" id="rect21439" width="16" height="16" x="439" y="836.3622" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path21441" d="M 441.5031,836.3681 439,843.3577 440.5019,843.3577 C 441.2459,841.3607 440.4999,843.3587 441.2442,841.3622 L 443.8028,841.3802 444.5069,843.3577 446.0087,843.3577 443.5056,836.3681 Z M 442.5044,837.8659 443.5167,840.3622 441.5142,840.3622 Z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 450.5031,843.3681 448,850.3577 449.5019,850.3577 C 450.2459,848.3607 449.4999,850.3587 450.2442,848.3622 L 452.8028,848.3802 453.5069,850.3577 455.0087,850.3577 452.5056,843.3681 Z M 451.5044,844.8659 452.5167,847.3622 450.5142,847.3622 Z" id="path21443" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+<rect y="844.3622" x="439" height="1" width="7" id="rect21448" style="fill:url(#linearGradient19282)" />
+<rect y="851.3622" x="447" height="1" width="8" id="rect21450" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="332" x="446" height="8" width="1" id="rect21452" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="text_horz_kern">
+<rect style="opacity:0.3;fill:none" id="rect21483" width="16" height="16" x="469" y="836.3622" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path21485" d="m 471.5031,840.3681 -2.5031,6.9896 1.5019,0 c 0.744,-1.997 -0,10e-4 0.7423,-1.9955 l 2.5586,0.018 0.7041,1.9775 1.5018,0 -2.5031,-6.9896 z m 1.0013,1.4978 1.0123,2.4963 -2.0025,0 z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 479.5031,840.3681 -2.5031,6.9896 1.5019,0 c 0.744,-1.997 -0,10e-4 0.7423,-1.9955 l 2.5586,0.018 0.7041,1.9775 1.5018,0 -2.5031,-6.9896 z m 1.0013,1.4978 1.0123,2.4963 -2.0025,0 z" id="path21487" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+<rect y="838.3622" x="476" height="11" width="1" id="rect21489" style="fill:url(#linearGradient19282)" />
+<rect y="848.3622" x="469" height="1" width="15" id="rect21494" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="text_rotation">
+<rect y="836.3622" x="499" height="16" width="16" id="rect21524" style="opacity:0.3;fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 501.5031,840.3681 -2.5031,6.9896 1.5019,0 c 0.744,-1.997 -0,10e-4 0.7423,-1.9955 l 2.5586,0.018 0.7041,1.9775 1.5018,0 -2.5031,-6.9896 z m 1.0013,1.4978 1.0123,2.4963 -2.0025,0 z" id="path21526" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path21528" d="m 512.3642,842.2559 -5.0038,5.5892 1.4117,0.5519 c 1.4568,-1.5864 -0,2e-4 1.4547,-1.5856 l 2.3981,0.957 -0.088,2.1002 1.4117,0.5519 0.2982,-7.4287 z m 0.3731,1.7627 0,2.6966 -1.8823,-0.7358 z" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21530" width="1" height="11" x="506" y="838.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect21532" width="8" height="1" x="499" y="848.3622" />
+<rect transform="matrix(0.9327962,0.3604044,-0.378579,0.925569,0,0)" y="608.8879" x="789.9445" height="1.038135" width="8.465971" id="rect21539" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="draw-trace-background">
+<rect y="805.4052" x="409.0008" height="15.95703" width="15.99918" id="rect20263" style="fill:none" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="m 409.0008,820.6593 0.01,0.7263 15.9912,-0.023 4e-4,-5.7863 c -3,2.8097 -8,4.8097 -16,4.8097 z" id="path20286" sodipodi:nodetypes="cccccc" />
+<path id="rect20284" d="m 409,805.3622 0,15 c 8,0 13,-2.0029 16,-4.8125 l 0,-10.1875 z" style="opacity:0.3;fill:url(#linearGradient19282);stroke-width:1.5" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
</g>
<g id="text_remove_kerns" inkscape:label="#text_remove_kerns">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect14990" width="16" height="16" x="529" y="836.3622" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path14992" d="M 531.5031,840.3681 529,847.3577 530.5019,847.3577 C 531.2459,845.3607 530.4999,847.3587 531.2442,845.3622 L 533.8028,845.3802 534.5069,847.3577 536.0087,847.3577 533.5056,840.3681 Z M 532.5044,841.8659 533.5167,844.3622 531.5142,844.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="838.3622" x="536" height="11" width="1" id="rect14996" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="848.3622" x="529" height="1" width="8" id="rect14998" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path15778" d="M 538,846.3622 540,846.3622 544,851.3622 542,851.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 544,846.3622 542,846.3622 538,851.3622 540,851.3622 Z" id="path15780" inkscape:connector-curvature="0" />
-</g>
-<g id="text_superscript" inkscape:label="#g15896">
-<rect y="836.3622" x="559" height="16" width="16" id="rect15829" style="opacity:0.3;fill:none;stroke:none" />
-<path id="path15841" d="M 559,841.3622 561.6875,844.8622 559,848.3622 561.6562,848.3622 563,846.6122 564.3437,848.3622 567,848.3622 564.3125,844.8622 567,841.3622 564.3437,841.3622 563,843.1122 561.6562,841.3622 559,841.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="path15851" d="M 565.9062,837.3622 569.125,842.1747 567,845.3622 569.6562,845.3622 575,837.3622 572.3437,837.3622 570.4375,840.2059 568.5625,837.3622 565.9062,837.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="text_subscript" inkscape:label="#g15901">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect15884" width="16" height="16" x="589" y="836.3622" />
-<path style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 589,841.3622 591.6875,844.8622 589,848.3622 591.6562,848.3622 593,846.6122 594.3437,848.3622 597,848.3622 594.3125,844.8622 597,841.3622 594.3437,841.3622 593,843.1122 591.6562,841.3622 589,841.3622 Z" id="path15886" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 595.9062,844.3622 599.3094,848.9367 597,852.3622 599.8772,852.3622 605,844.3622 602.4763,844.3622 600.5701,847.3385 598.5625,844.3622 Z" id="path15888" inkscape:connector-curvature="0" />
-</g>
-<g id="format-text-direction-vertical" inkscape:label="#writing_mode_tb">
-<rect y="805.3622" x="559" height="16" width="16" id="rect15925" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 561,806.3622 563,806.3622 563.006,817.368 565.006,817.368 562.006,820.3563 559.006,817.368 561.006,817.368 Z" id="path15933" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path15956" d="M 571,806.3622 573,806.3622 573.006,817.368 575.006,817.368 572.006,820.3563 569.006,817.368 571.006,817.368 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 565.9864,807.3681 563.4833,814.3577 564.9852,814.3577 C 565.7292,812.3607 564.9832,814.3587 565.7276,812.3622 L 568.2861,812.3802 568.9902,814.3577 570.4921,814.3577 567.989,807.3681 Z M 566.9877,808.8659 568,811.3622 565.9975,811.3622 Z" id="path15962" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
-</g>
-<g id="format-text-direction-horizontal" inkscape:label="#writing_mode_lr">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect15975" width="16" height="16" x="589" y="805.3622" />
-<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 589.9942,809.3682 589.9942,807.3682 601,807.3622 601,805.3622 603.9883,808.3622 601,811.3622 601,809.3622 Z" id="path15977" inkscape:connector-curvature="0" />
-<path id="path15979" transform="translate(0,512.3622)" d="M 601,304 601,306 590,306 590,308 601,308 601,309 602,309 604,307 601,304 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path15981" d="M 592.9864,810.3681 590.4833,817.3577 591.9852,817.3577 C 592.7292,815.3607 591.9832,817.3587 592.7276,815.3622 L 595.2861,815.3802 595.9902,817.3577 597.4921,817.3577 594.989,810.3681 Z M 593.9877,811.8659 595,814.3622 592.9975,814.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="opacity:0.3;fill:none" id="rect14990" width="16" height="16" x="529" y="836.3622" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path14992" d="M 531.5031,840.3681 529,847.3577 530.5019,847.3577 C 531.2459,845.3607 530.4999,847.3587 531.2442,845.3622 L 533.8028,845.3802 534.5069,847.3577 536.0087,847.3577 533.5056,840.3681 Z M 532.5044,841.8659 533.5167,844.3622 531.5142,844.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="838.3622" x="536" height="11" width="1" id="rect14996" style="fill:url(#linearGradient19282)" />
+<rect y="848.3622" x="529" height="1" width="8" id="rect14998" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path15778" d="M 538,846.3622 540,846.3622 544,851.3622 542,851.3622 Z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 544,846.3622 542,846.3622 538,851.3622 540,851.3622 Z" id="path15780" inkscape:connector-curvature="0" />
+</g>
+<g id="text_superscript">
+<rect y="836.3622" x="559" height="16" width="16" id="rect15829" style="opacity:0.3;fill:none" />
+<path id="path15841" d="m 559,841.3622 2.6875,3.5 -2.6875,3.5 2.6562,0 1.3438,-1.75 1.3437,1.75 2.6563,0 -2.6875,-3.5 2.6875,-3.5 -2.6563,0 -1.3437,1.75 -1.3438,-1.75 -2.6562,0 z" style="opacity:0.3;fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="path15851" d="m 565.9062,837.3622 3.2188,4.8125 -2.125,3.1875 2.6562,0 5.3438,-8 -2.6563,0 -1.9062,2.8437 -1.875,-2.8437 -2.6563,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="text_subscript">
+<rect style="opacity:0.3;fill:none" id="rect15884" width="16" height="16" x="589" y="836.3622" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="m 589,841.3622 2.6875,3.5 -2.6875,3.5 2.6562,0 1.3438,-1.75 1.3437,1.75 2.6563,0 -2.6875,-3.5 2.6875,-3.5 -2.6563,0 -1.3437,1.75 -1.3438,-1.75 -2.6562,0 z" id="path15886" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccc" style="fill:url(#linearGradient19282)" d="m 595.9062,844.3622 3.4032,4.5745 -2.3094,3.4255 2.8772,0 5.1228,-8 -2.5237,0 -1.9062,2.9763 -2.0076,-2.9763 z" id="path15888" inkscape:connector-curvature="0" />
+</g>
+<g id="format-text-direction-vertical" inkscape:label="#writing_mode_tb" transform="translate(59.99,31.00002)">
+<rect y="805.3622" x="559" height="16" width="16" id="rect15925" style="opacity:0.3;fill:none" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="m 561,806.3622 2,0 0.01,11.0058 2,0 -3,2.9883 -3,-2.9883 2,0 z" id="path15933" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path15956" d="m 571,806.3622 2,0 0.01,11.0058 2,0 -3,2.9883 -3,-2.9883 2,0 z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccccc" />
+<path style="fill:url(#linearGradient19282)" d="m 565.9864,807.3681 -2.5031,6.9896 1.5019,0 c 0.744,-1.997 0,10e-4 0.7424,-1.9955 l 2.5585,0.018 0.7041,1.9775 1.5019,0 -2.5031,-6.9896 z m 1.0013,1.4978 1.0123,2.4963 -2.0025,0 z" id="path15962" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
+</g>
+<g id="format-text-direction-horizontal" inkscape:label="#writing_mode_lr" transform="translate(59.99,31.00002)">
+<rect style="opacity:0.3;fill:none" id="rect15975" width="16" height="16" x="589" y="805.3622" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="m 589.9942,809.3682 0,-2 11.0058,-0.01 0,-2 2.9883,3 -2.9883,3 0,-2 z" id="path15977" inkscape:connector-curvature="0" />
+<path id="path15979" transform="translate(0,512.3622)" d="m 601,304 0,2 -11,0 0,2 11,0 0,1 1,0 2,-2 -3,-3 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccccccc" inkscape:connector-curvature="0" id="path15981" d="m 592.9864,810.3681 -2.5031,6.9896 1.5019,0 c 0.744,-1.997 0,10e-4 0.7424,-1.9955 l 2.5585,0.018 0.7041,1.9775 1.5019,0 -2.5031,-6.9896 z m 1.0013,1.4978 1.0123,2.4963 -2.0025,0 z" style="fill:url(#linearGradient19282)" />
</g>
<g id="connector-edit" inkscape:label="#draw_node">
-<rect y="867.3622" x="349" height="16" width="16" id="rect16033" style="opacity:0.3;fill:none;stroke:none" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999996;marker:none" id="rect16039" width="3.998681" height="4.029809" x="349.9974" y="868.3622" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" id="path16043" d="M 354,872.3622 359.1942,882.3105 362.657,878.5799 354,872.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-</g>
-<g id="connector-ignore" inkscape:label="#g16092">
-<rect transform="translate(0,512.3622)" y="355" x="379" height="16" width="16" id="rect16079" style="opacity:0.3;fill:none;stroke:none" />
-<rect rx="1" ry="0" y="868.3622" x="379" height="3" width="6" id="rect16081" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect rx="1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16083" width="6" height="3" x="389" y="879.3622" ry="0" />
-<rect transform="matrix(0.5011377,0.8653675,-0.8868833,0.4619935,0,0)" ry="0.9931965" rx="0" y="102.7297" x="948.6162" height="1.441126" width="15.40874" id="rect16085" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path id="rect16087" transform="translate(0,512.3622)" d="M 382,361 382,365 392,365 392,361 382,361 Z M 383,362 391,362 391,364 383,364 383,362 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="connector-avoid" inkscape:label="#g16140">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect16120" width="16" height="16" x="409" y="867.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16122" width="6" height="3" x="409" y="868.3622" ry="0" rx="1" />
-<rect ry="0" y="879.3622" x="419" height="3" width="6" id="rect16124" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" rx="1" />
-<path sodipodi:nodetypes="cccccccccc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 411,873.3622 411,877.3622 420,877.3622 420,873.3622 Z M 412,874.3622 419,874.3622 419,876.3622 412,876.3622 Z" id="path16128" inkscape:connector-curvature="0" />
-<path id="rect16135" transform="translate(0,512.3622)" d="M 415,357 415,358 422,358 422,367 423,367 423,357 422,357 415,357 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="connector-orthogonal" inkscape:label="#g16191">
-<rect y="867.3622" x="439" height="16" width="16" id="rect16168" style="opacity:0.3;fill:none;stroke:none" />
-<rect transform="scale(-1,1)" rx="1" ry="0" y="868.3622" x="-454" height="3" width="6" id="rect16170" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(-1,1)" rx="1" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16172" width="6" height="3" x="-445" y="879.3622" ry="0" />
-<path id="rect16183" transform="translate(0,512.3622)" d="M 446,357 446,368 445,368 445,369 447,369 447,368 447,358 448,358 448,357 447,357 446,357 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="connector-new-connpoint" inkscape:label="#g16244">
-<rect rx="0" transform="translate(0,512.3622)" y="355" x="469" height="16" width="16" id="rect16216" style="fill:none;fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="369" x="470" height="1" width="14" id="rect16218" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="356" x="483" height="14" width="1" id="rect16220" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path id="path16222" transform="translate(0,512.3622)" d="M 482.6875,356 C 480.5921,356.0484 478.4773,356.6026 476.5312,357.7187 L 476.5,357.75 C 472.0261,360.333 469.6952,365.1712 470.0625,370 L 471.0625,370 C 470.6944,365.5239 472.8498,361.0211 477,358.625 L 477.0312,358.5937 C 478.8275,357.5635 480.7846,357.0447 482.7187,357 483.1482,356.9901 483.5742,356.9953 484,357.0312 L 484,356.0312 C 483.5657,355.9975 483.125,355.9899 482.6875,356 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<rect y="870.3622" x="472" height="3.999997" width="4" id="rect16242" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="connector-remove-connpoint" inkscape:label="#g16291">
-<rect transform="translate(0,512.3622)" y="355" x="499" height="16" width="16" id="rect16270" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="868.3622" x="500" height="4" width="4" id="rect16272" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path id="path16284" d="M 506,873.3622 C 505.446,873.3622 505,873.8082 505,874.3622 L 505,881.3622 C 505,881.9162 505.446,882.3622 506,882.3622 L 513,882.3622 C 513.554,882.3622 514,881.9162 514,881.3622 L 514,874.3622 C 514,873.8082 513.554,873.3622 513,873.3622 L 506,873.3622 Z M 507.9062,874.0809 509.6875,876.2372 511.4687,874.0809 513,875.3622 510.9687,877.7997 513,880.2684 511.4687,881.5497 509.6875,879.3934 507.9062,881.5497 506.375,880.2684 508.4062,877.7997 506.375,875.3622 507.9062,874.0809 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect y="867.3622" x="349" height="16" width="16" id="rect16033" style="opacity:0.3;fill:none" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999996" id="rect16039" width="3.998681" height="4.029809" x="349.9974" y="868.3622" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" id="path16043" d="M 354,872.3622 359.1942,882.3105 362.657,878.5799 354,872.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+</g>
+<g id="connector-ignore">
+<rect transform="translate(0,512.3622)" y="355" x="379" height="16" width="16" id="rect16079" style="opacity:0.3;fill:none" />
+<rect rx="1" ry="0" y="868.3622" x="379" height="3" width="6" id="rect16081" style="fill:url(#linearGradient19282)" />
+<rect rx="1" style="fill:url(#linearGradient19282)" id="rect16083" width="6" height="3" x="389" y="879.3622" ry="0" />
+<rect transform="matrix(0.5011377,0.8653675,-0.8868833,0.4619935,0,0)" ry="0.9931965" rx="0" y="102.7297" x="948.6162" height="1.441126" width="15.40874" id="rect16085" style="fill:url(#linearGradient19282)" />
+<path id="rect16087" transform="translate(0,512.3622)" d="m 382,361 0,4 10,0 0,-4 -10,0 z m 1,1 8,0 0,2 -8,0 0,-2 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="connector-avoid">
+<rect style="opacity:0.3;fill:none" id="rect16120" width="16" height="16" x="409" y="867.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect16122" width="6" height="3" x="409" y="868.3622" ry="0" rx="1" />
+<rect ry="0" y="879.3622" x="419" height="3" width="6" id="rect16124" style="fill:url(#linearGradient19282)" rx="1" />
+<path sodipodi:nodetypes="cccccccccc" style="fill:url(#linearGradient19282)" d="m 411,873.3622 0,4 9,0 0,-4 z m 1,1 7,0 0,2 -7,0 z" id="path16128" inkscape:connector-curvature="0" />
+<path id="rect16135" transform="translate(0,512.3622)" d="m 415,357 0,1 7,0 0,9 1,0 0,-10 -1,0 -7,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="connector-orthogonal">
+<rect y="867.3622" x="439" height="16" width="16" id="rect16168" style="opacity:0.3;fill:none" />
+<rect transform="scale(-1,1)" rx="1" ry="0" y="868.3622" x="-454" height="3" width="6" id="rect16170" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(-1,1)" rx="1" style="fill:url(#linearGradient19282)" id="rect16172" width="6" height="3" x="-445" y="879.3622" ry="0" />
+<path id="rect16183" transform="translate(0,512.3622)" d="m 446,357 0,11 -1,0 0,1 2,0 0,-1 0,-10 1,0 0,-1 -1,0 -1,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="connector-new-connpoint">
+<rect rx="0" transform="translate(0,512.3622)" y="355" x="469" height="16" width="16" id="rect16216" style="fill:none" />
+<rect transform="translate(0,512.3622)" y="369" x="470" height="1" width="14" id="rect16218" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="356" x="483" height="14" width="1" id="rect16220" style="fill:url(#linearGradient19282)" />
+<path id="path16222" transform="translate(0,512.3622)" d="m 482.6875,356 c -2.0954,0.048 -4.2102,0.6026 -6.1563,1.7187 l -0.031,0.031 c -4.4739,2.583 -6.8048,7.4212 -6.4375,12.25 l 1,0 c -0.3681,-4.4761 1.7873,-8.9789 5.9375,-11.375 l 0.031,-0.031 c 1.7963,-1.0302 3.7534,-1.549 5.6875,-1.5937 0.4295,-0.01 0.8555,-0 1.2813,0.031 l 0,-1 c -0.4343,-0.034 -0.875,-0.041 -1.3125,-0.031 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<rect y="870.3622" x="472" height="3.999997" width="4" id="rect16242" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="connector-remove-connpoint">
+<rect transform="translate(0,512.3622)" y="355" x="499" height="16" width="16" id="rect16270" style="fill:none" />
+<rect y="868.3622" x="500" height="4" width="4" id="rect16272" style="fill:url(#linearGradient19282)" />
+<path id="path16284" d="m 506,873.3622 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -7,0 z m 1.9062,0.7187 1.7813,2.1563 1.7812,-2.1563 1.5313,1.2813 -2.0313,2.4375 2.0313,2.4687 -1.5313,1.2813 -1.7812,-2.1563 -1.7813,2.1563 -1.5312,-1.2813 2.0312,-2.4687 -2.0312,-2.4375 1.5312,-1.2813 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="draw-eraser-delete-objects" inkscape:label="#delete_object">
-<rect style="fill:none;stroke:none" id="rect16317" width="16" height="16" x="347" y="991.3622" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 354,998.3622 C 353.446,998.3622 353,998.8082 353,999.3622 L 353,1006.362 C 353,1006.916 353.446,1007.362 354,1007.362 L 361,1007.362 C 361.554,1007.362 362,1006.916 362,1006.362 L 362,999.3622 C 362,998.8082 361.554,998.3622 361,998.3622 L 354,998.3622 Z M 355.9062,999.0809 357.6875,1001.237 359.4687,999.0809 361,1000.362 358.9687,1002.8 361,1005.268 359.4687,1006.55 357.6875,1004.393 355.9062,1006.55 354.375,1005.268 356.4062,1002.8 354.375,1000.362 355.9062,999.0809 Z" id="path16321" />
-<path id="rect16326" transform="translate(0,512.3622)" d="M 347,482 347,483 347,492 347,493 348,493 352,493 352,492 348,492 348,483 359,483 359,485 360,485 360,482 347,482 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="rect16402" transform="translate(0,512.3622)" d="M 349,484 349,485 349,491 352,491 352,485 358,485 358,484 352,484 349,484 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect style="fill:none" id="rect16317" width="16" height="16" x="347" y="991.3622" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="M 354,998.3622 C 353.446,998.3622 353,998.8082 353,999.3622 L 353,1006.362 C 353,1006.916 353.446,1007.362 354,1007.362 L 361,1007.362 C 361.554,1007.362 362,1006.916 362,1006.362 L 362,999.3622 C 362,998.8082 361.554,998.3622 361,998.3622 L 354,998.3622 Z M 355.9062,999.0809 357.6875,1001.237 359.4687,999.0809 361,1000.362 358.9687,1002.8 361,1005.268 359.4687,1006.55 357.6875,1004.393 355.9062,1006.55 354.375,1005.268 356.4062,1002.8 354.375,1000.362 355.9062,999.0809 Z" id="path16321" />
+<path id="rect16326" transform="translate(0,512.3622)" d="M 347,482 347,483 347,492 347,493 348,493 352,493 352,492 348,492 348,483 359,483 359,485 360,485 360,482 347,482 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="rect16402" transform="translate(0,512.3622)" d="M 349,484 349,485 349,491 352,491 352,485 358,485 358,484 352,484 349,484 Z" style="opacity:0.3;fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="spray-mode-copy" inkscape:label="#spray-copy-mode">
-<rect transform="translate(0,512.3622)" y="510" x="347" height="16" width="17" id="rect16433" style="opacity:0.3;fill:none;fill-opacity:1;stroke:none" />
-<path id="path16442" d="M 347,1028.362 347,1037.362 359,1037.362 359,1028.362 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="path16444" transform="translate(0,512.3622)" d="M 352,511 352,515 353,515 360,515 360,520 364,520 364,511 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="510" x="347" height="16" width="16" id="rect16433" style="opacity:0.3;fill:none" />
+<path id="path16442" d="m 347,1028.362 0,9 11,0 0,-9 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path16444" transform="translate(0,512.3622)" d="m 351,511 0,4 8,0 0,5 4,0 0,-9 z" style="fill:url(#linearGradient19282)" />
</g>
-<g id="spray-mode-clone" inkscape:label="#g16996">
-<g transform="translate(31)" id="g16461">
-<rect transform="translate(0,512.3622)" y="510" x="347" height="16" width="17" id="rect16463" style="opacity:0.3;fill:none;stroke:none" />
-<path id="path16465" transform="translate(-31,512.3622)" d="M 378,516 378,525 390,525 390,516 378,516 Z M 379,517 389,517 389,524 379,524 379,517 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="path16467" transform="translate(0,512.3622)" d="M 352,511 352,515 353,515 360,515 360,520 364,520 364,511 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<rect transform="translate(0,512.3622)" y="518" x="380" height="5" width="8" id="rect16480" style="opacity:1;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g id="spray-mode-clone">
+<rect style="opacity:0.3;fill:none" id="rect16463" width="16" height="16.0002" x="378" y="1022.362" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 378,1028.362 0,9 11,0 0,-9 z m 1,1 9,0 0,7 -9,0 z" id="path16465" />
+<path style="fill:url(#linearGradient19282)" d="m 383,1023.362 0,4 7,0 0,5 4,0 0,-9 z" id="path16467" inkscape:connector-curvature="0" />
+<rect transform="translate(0,512.3622)" y="518" x="380" height="5" width="7" id="rect16480" style="fill:url(#linearGradient19282)" />
</g>
<g id="spray-mode-union" inkscape:label="#spray-union-mode">
-<g id="g17050">
-<g id="g17041" transform="translate(62)">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect17043" width="17" height="16" x="347" y="510" transform="translate(0,512.3622)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 414,511 414,516 409,516 409,525 421,525 421,520 426,520 426,511 414,511 Z" transform="translate(-62,512.3622)" id="path17045" inkscape:connector-curvature="0" />
-</g>
-</g>
+<rect style="opacity:0.3;fill:none" id="rect17043" width="16" height="16.0002" x="409" y="1022.362" />
+<path style="fill:url(#linearGradient19282)" d="m 414,1023.362 0,5 -5,0 0,9 11,0 0,-5 5,0 0,-9 z" id="path17045" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
</g>
<g id="snap-nodes-cusp" inkscape:label="#toggle_snap_to_nodes">
-<rect transform="scale(-1)" y="-543.3627" x="-815" height="16" width="16" id="rect17717" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000002;marker:none;enable-background:accumulate" d="M 807.5529,540.8499 C 811.1464,540.8499 813.08,539.4914 814.038,538.0613 814.996,536.6312 815,535.143 815,535.143 A 0.4965226,0.518863 0 1 0 814.007,535.143 C 814.007,535.143 814.011,536.2813 813.2313,537.4452 812.55,538.4623 811.062,539.3686 808.5148,539.6177 809.9319,537.4365 810.5817,535.5256 810.3145,533.9432 810.0032,532.0998 808.7691,530.746 807.3357,529.7927 804.4687,527.8863 800.6643,527.3932 800.6643,527.3932 A 0.4965226,0.518863 0 1 0 800.5402,528.3984 C 800.5402,528.3984 804.1828,528.9431 806.7771,530.6682 808.0743,531.5308 809.0743,532.6414 809.3215,534.1054 809.5688,535.5693 809.1141,537.4811 807.1805,540.0068 A 0.4965226,0.518863 0 0 0 807.5529,540.8499 Z" id="path17721" inkscape:connector-curvature="0" />
-<rect y="-954.8168" x="-190.606" height="4.175684" width="4.132847" id="rect17723" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9051017;marker:none" transform="rotate(135.0001)" />
-</g>
-<g id="snap-page" inkscape:label="#toggle_snap_page_border">
-<rect transform="translate(0,512.3622)" y="15" x="979" height="16" width="16" id="rect16572" style="fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccccccccccc" inkscape:connector-curvature="0" id="rect16574" transform="translate(0,512.3622)" d="M 981,16 981,30 993,30 993,16 990,16 987,16 984,16 Z M 982,17 984.5,17 987,17 989,17 992,17 992,29 982,29 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="snap-grid-guide-intersections" inkscape:label="#toggle_snap_grid_guide_intersections">
-<rect y="527.3622" x="1009" height="16" width="16" id="rect16604" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.1428572;marker:none;enable-background:accumulate" id="path16610" transform="matrix(1.062504,0,0,1.062496,212.9033,499.7998)" cx="753.5" cy="33" r="2" />
-<rect ry="0.5" transform="translate(0,512.3622)" y="22" x="1009" height="1" width="16" id="rect16616" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect rx="0.5" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16618" width="16" height="1" x="527.3622" y="-1014" transform="rotate(90)" ry="0.5" />
+<rect y="527.3627" x="799" height="16" width="16" id="rect17717" style="color:#000000;fill:none;stroke-width:0.1" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000002" d="M 807.5529,540.8499 C 811.1464,540.8499 813.08,539.4914 814.038,538.0613 814.996,536.6312 815,535.143 815,535.143 A 0.4965226,0.518863 0 1 0 814.007,535.143 C 814.007,535.143 814.011,536.2813 813.2313,537.4452 812.55,538.4623 811.062,539.3686 808.5148,539.6177 809.9319,537.4365 810.5817,535.5256 810.3145,533.9432 810.0032,532.0998 808.7691,530.746 807.3357,529.7927 804.4687,527.8863 800.6643,527.3932 800.6643,527.3932 A 0.4965226,0.518863 0 1 0 800.5402,528.3984 C 800.5402,528.3984 804.1828,528.9431 806.7771,530.6682 808.0743,531.5308 809.0743,532.6414 809.3215,534.1054 809.5688,535.5693 809.1141,537.4811 807.1805,540.0068 A 0.4965226,0.518863 0 0 0 807.5529,540.8499 Z" id="path17721" inkscape:connector-curvature="0" />
+<rect y="-954.8168" x="-190.606" height="4.175684" width="4.132847" id="rect17723" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9051017" transform="rotate(135.0001)" />
</g>
<g id="node-type-cusp" inkscape:label="#node_cusp">
-<rect y="558.3622" x="559" height="16" width="16" id="rect3216" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000002;marker:none;enable-background:accumulate" d="M 559.4062,558.3622 A 0.5021925,0.5021925 0 1 0 559.5,559.3622 C 561.1379,559.3622 562.2914,559.8951 563.1875,560.7059 564.0835,561.5168 564.7086,562.6173 565.125,563.8309 565.9576,566.2581 565.9687,568.9858 565.9687,569.9872 A 0.5000501,0.5000501 0 0 0 566.7187,570.4247 C 571.3049,567.8658 574.465,564.5833 575,558.9247 A 0.5021925,0.5021925 0 1 0 574,558.831 C 573.5255,563.8493 570.9354,566.6916 566.9375,569.081 566.9184,567.779 566.8121,565.7037 566.0625,563.5185 565.6095,562.1981 564.941,560.9206 563.875,559.956 562.8089,558.9913 561.3558,558.3622 559.5,558.3622 A 0.5000501,0.5000501 0 0 0 559.4062,558.3622 Z" id="path3226" inkscape:connector-curvature="0" />
-<rect y="801.8721" x="-11.61895" height="3.636534" width="3.599228" id="rect3224" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9051018;marker:none" transform="matrix(0.7136953,-0.7004563,0.7136953,0.7004563,0,0)" />
+<rect y="558.3622" x="559" height="16" width="16" id="rect3216" style="color:#000000;fill:none" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000002" d="M 559.4062,558.3622 A 0.5021925,0.5021925 0 1 0 559.5,559.3622 C 561.1379,559.3622 562.2914,559.8951 563.1875,560.7059 564.0835,561.5168 564.7086,562.6173 565.125,563.8309 565.9576,566.2581 565.9687,568.9858 565.9687,569.9872 A 0.5000501,0.5000501 0 0 0 566.7187,570.4247 C 571.3049,567.8658 574.465,564.5833 575,558.9247 A 0.5021925,0.5021925 0 1 0 574,558.831 C 573.5255,563.8493 570.9354,566.6916 566.9375,569.081 566.9184,567.779 566.8121,565.7037 566.0625,563.5185 565.6095,562.1981 564.941,560.9206 563.875,559.956 562.8089,558.9913 561.3558,558.3622 559.5,558.3622 A 0.5000501,0.5000501 0 0 0 559.4062,558.3622 Z" id="path3226" inkscape:connector-curvature="0" />
+<rect y="801.8721" x="-11.61895" height="3.636534" width="3.599228" id="rect3224" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9051018" transform="matrix(0.7136953,-0.7004563,0.7136953,0.7004563,0,0)" />
</g>
-<g id="node-type-smooth" inkscape:label="#g15472">
-<path id="path7534" inkscape:connector-curvature="0" d="M 604.3125,559.2812 A 0.5140439,0.5140439 0 0 0 603.9062,559.875 C 604.1396,561.4771 603.8455,563.6229 602.7812,565.3125 601.7169,567.0021 599.9368,568.2812 596.9062,568.2812 593.8722,568.2812 592.1072,567.0584 591.0937,565.4062 590.0803,563.7541 589.864,561.639 590.125,560.0312 A 0.5240784,0.5240784 0 1 0 589.0937,559.8437 C 588.796,561.6777 589.0407,564.0171 590.2187,565.9375 591.3967,567.8579 593.58,569.3125 596.9062,569.3125 600.2359,569.3125 602.4296,567.8223 603.6562,565.875 604.8829,563.9277 605.1742,561.5896 604.9062,559.75 A 0.5140439,0.5140439 0 0 0 604.3125,559.2812 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.027985;marker:none;enable-background:accumulate" />
-<rect y="558.3622" x="589" height="16" width="16" id="rect3252" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect y="566.3622" x="595" height="4.999998" width="4" id="rect16754" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g id="node-type-smooth">
+<rect y="558.3622" x="589" height="16" width="16" id="rect3252" style="color:#000000;fill:none" />
+<path id="path7534" inkscape:connector-curvature="0" d="m 604.3125,559.2812 a 0.5140439,0.5140439 0 0 0 -0.4063,0.5938 c 0.2334,1.6021 -0.061,3.7479 -1.125,5.4375 -1.0643,1.6896 -2.8444,2.9687 -5.875,2.9687 -3.034,0 -4.799,-1.2228 -5.8125,-2.875 -1.0134,-1.6521 -1.2297,-3.7672 -0.9687,-5.375 a 0.524103,0.524103 0 1 0 -1.0313,-0.1875 c -0.2977,1.834 -0.053,4.1734 1.125,6.0938 1.178,1.9204 3.3613,3.375 6.6875,3.375 3.3297,0 5.5234,-1.4902 6.75,-3.4375 1.2267,-1.9473 1.518,-4.2854 1.25,-6.125 a 0.5140439,0.5140439 0 0 0 -0.5937,-0.4688 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.027985" />
+<rect y="566.3622" x="595" height="4.999998" width="4" id="rect16754" style="fill:url(#linearGradient19282)" />
</g>
<g id="node-type-symmetric" inkscape:label="#node_symmetric">
-<path id="path16756" transform="translate(0,512.3622)" d="M 634.3125,46 A 0.5140439,0.5121131 0 0 0 633.9062,46.59375 C 634.1396,48.18985 633.8455,50.31677 632.7812,52 632.1487,53.00041 631.2505,53.84515 630,54.375 L 630,55.5 C 631.6552,54.90567 632.8607,53.8207 633.6562,52.5625 634.8829,50.62256 635.1742,48.30141 634.9062,46.46875 A 0.5140439,0.5121131 0 0 0 634.3125,46 Z M 619.5937,46.125 A 0.5240784,0.52211 0 0 0 619.0937,46.5625 C 618.796,48.38956 619.0407,50.71183 620.2187,52.625 621.0105,53.91094 622.258,54.99499 624,55.5625 L 624,54.5 C 622.6531,53.99842 621.7272,53.12246 621.0937,52.09375 620.0803,50.44779 619.864,48.35169 620.125,46.75 A 0.5240784,0.52211 0 0 0 619.5937,46.125 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.027985;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect16758" width="16" height="16" x="619" y="558.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16760" width="4" height="5" x="625" y="566.3622" />
-<rect y="569.3622" x="630" height="1" width="2" id="rect16762" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect16764" width="2" height="1" x="622" y="569.3622" />
-<circle transform="matrix(1,0,0,1.010417,-0.5000034,512.8205)" id="path16766" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="633.5" cy="56.5" r="1.5" />
-<circle style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path16770" transform="matrix(1,0,0,1.010417,-12.5,512.7893)" cx="633.5" cy="56.5" r="1.5" />
-</g>
-<g id="node-type-auto-smooth" inkscape:label="#g16811">
-<path id="path16803" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.027985;marker:none;enable-background:accumulate" d="M 664.3125,559.2812 A 0.5140439,0.5140439 0 0 0 663.9062,559.875 C 664.1396,561.4771 663.8455,563.6229 662.7812,565.3125 661.7169,567.0021 659.9368,568.2812 656.9062,568.2812 653.8722,568.2812 652.1072,567.0584 651.0937,565.4062 650.0803,563.7541 649.864,561.639 650.125,560.0312 A 0.5240784,0.5240784 0 1 0 649.0937,559.8437 C 648.796,561.6777 649.0407,564.0171 650.2187,565.9375 651.3967,567.8579 653.58,569.3125 656.9062,569.3125 660.2359,569.3125 662.4296,567.8223 663.6562,565.875 664.8829,563.9277 665.1742,561.5896 664.9062,559.75 A 0.5140439,0.5140439 0 0 0 664.3125,559.2812 Z" inkscape:connector-curvature="0" />
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect16805" width="16" height="16" x="649" y="558.3622" />
-<circle transform="matrix(1.5,0,0,1.5,-328.5,482.8622)" id="path16809" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="657" cy="57" r="2" />
+<rect style="color:#000000;fill:none" id="rect16758" width="16" height="16" x="619" y="558.3622" />
+<path id="path16756" transform="translate(0,512.3622)" d="M 634.3125,46 A 0.5140439,0.5121131 0 0 0 633.9062,46.59375 C 634.1396,48.18985 633.8455,50.31677 632.7812,52 632.1487,53.00041 631.2505,53.84515 630,54.375 L 630,55.5 C 631.6552,54.90567 632.8607,53.8207 633.6562,52.5625 634.8829,50.62256 635.1742,48.30141 634.9062,46.46875 A 0.5140439,0.5121131 0 0 0 634.3125,46 Z M 619.5937,46.125 A 0.5240784,0.52211 0 0 0 619.0937,46.5625 C 618.796,48.38956 619.0407,50.71183 620.2187,52.625 621.0105,53.91094 622.258,54.99499 624,55.5625 L 624,54.5 C 622.6531,53.99842 621.7272,53.12246 621.0937,52.09375 620.0803,50.44779 619.864,48.35169 620.125,46.75 A 0.5240784,0.52211 0 0 0 619.5937,46.125 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.027985" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect16760" width="4" height="5" x="625" y="566.3622" />
+<rect y="569.3622" x="630" height="1" width="2" id="rect16762" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect16764" width="2" height="1" x="622" y="569.3622" />
+<circle transform="matrix(1,0,0,1.010417,-0.5000034,512.8205)" id="path16766" style="fill:url(#linearGradient19282)" cx="633.5" cy="56.5" r="1.5" />
+<circle style="fill:url(#linearGradient19282)" id="path16770" transform="matrix(1,0,0,1.010417,-12.5,512.7893)" cx="633.5" cy="56.5" r="1.5" />
+</g>
+<g id="node-type-auto-smooth">
+<rect style="color:#000000;fill:none" id="rect16805" width="16" height="16" x="649" y="558.3622" />
+<path id="path16803" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.027985" d="m 664.3125,559.2812 a 0.5140439,0.5140439 0 0 0 -0.4063,0.5938 c 0.2334,1.6021 -0.061,3.7479 -1.125,5.4375 -1.0643,1.6896 -2.8444,2.9687 -5.875,2.9687 -3.034,0 -4.799,-1.2228 -5.8125,-2.875 -1.0134,-1.6521 -1.2297,-3.7672 -0.9687,-5.375 a 0.524103,0.524103 0 1 0 -1.0313,-0.1875 c -0.2977,1.834 -0.053,4.1734 1.125,6.0938 1.178,1.9204 3.3613,3.375 6.6875,3.375 3.3297,0 5.5234,-1.4902 6.75,-3.4375 1.2267,-1.9473 1.518,-4.2854 1.25,-6.125 a 0.5140439,0.5140439 0 0 0 -0.5937,-0.4688 z" inkscape:connector-curvature="0" />
+<circle transform="matrix(1.5,0,0,1.5,-328.5,482.8622)" id="path16809" style="fill:url(#linearGradient19282)" cx="657" cy="57" r="2" />
</g>
<g id="node-segment-curve" inkscape:label="#node_curve">
-<g id="g16873">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000002;marker:none;enable-background:accumulate" d="M 692.5937,560.4687 C 689.0026,560.4687 686.1065,561.4641 684.125,563.4062 682.1435,565.3484 681.125,568.2178 681.125,571.8125 A 0.5000501,0.5000501 0 1 0 682.125,571.8125 C 682.125,568.4072 683.0561,565.8465 684.8125,564.125 686.5688,562.4035 689.1849,561.4687 692.5937,561.4687 A 0.5000501,0.5000501 0 1 0 692.5937,560.4687 Z" id="path10679" inkscape:connector-curvature="0" />
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect10681" width="16" height="16" x="679" y="558.3622" />
-<use transform="matrix(1,0,0,0.8000004,236,113.8722)" x="0" y="0" id="use5745" width="1250" height="1250" xlink:href="#rect4374" />
-<use transform="matrix(1,0,0,0.7999999,246,103.8725)" x="0" y="0" id="use5747" width="1250" height="1250" xlink:href="#rect4374" />
-</g>
+<rect y="558.3622" x="679" height="16" width="16" id="rect10681" style="color:#000000;fill:none" />
+<path inkscape:connector-curvature="0" id="path10679" d="m 692.5937,560.4687 c -3.5911,0 -6.4872,0.9954 -8.4687,2.9375 -1.9815,1.9422 -3,4.8116 -3,8.4063 a 0.5000501,0.5000501 0 1 0 1,0 c 0,-3.4053 0.9311,-5.966 2.6875,-7.6875 1.7563,-1.7215 4.3724,-2.6563 7.7812,-2.6563 a 0.5000501,0.5000501 0 1 0 0,-1 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000002" />
+<use xlink:href="#rect4374" height="1250" width="1250" id="use5745" y="0" x="0" transform="matrix(1,0,0,0.8000004,236,113.8722)" />
+<use xlink:href="#rect4374" height="1250" width="1250" id="use5747" y="0" x="0" transform="matrix(1,0,0,0.7999999,246,103.8725)" />
</g>
<g id="node-segment-line" inkscape:label="#node_line">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect16911" width="16" height="16" x="709" y="558.3622" />
+<rect style="color:#000000;fill:none" id="rect16911" width="16" height="16" x="709" y="558.3622" />
<use transform="matrix(1,0,0,0.8000004,266,113.8722)" x="0" y="0" id="use16913" width="1250" height="1250" xlink:href="#rect4374" />
<use transform="matrix(1,0,0,0.7999999,276,103.8725)" x="0" y="0" id="use16915" width="1250" height="1250" xlink:href="#rect4374" />
-<rect transform="rotate(44.75927)" y="-109.1015" x="907.4614" height="13" width="1" id="rect16926" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<use transform="translate(772.0098,373.6638)" x="0" y="0" id="use3738" width="1250" height="1250" xlink:href="#rect10675" />
-<use transform="translate(772.9762,390.3863)" x="0" y="0" id="use4635" width="1250" height="1250" xlink:href="#use5758" />
-<g id="show-node-handles" inkscape:label="#g17003">
-<rect style="color:#000000;display:inline;visibility:visible;opacity:0;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.8;marker:none" id="rect3742" width="16" height="16" x="739" y="558.3622" />
-<path inkscape:connector-curvature="0" id="path4641" d="M 753.2341,561.2734 C 751.0831,561.6038 748.5921,562.8537 746.5792,564.6974 744.5664,566.5412 743.0014,569.0192 743.0014,571.7379 A 0.572514,0.6156193 0 1 0 744.1463,571.7379 C 744.1463,569.5321 745.4436,567.3549 747.2948,565.6592 749.146,563.9636 751.5209,562.7512 753.3772,562.466 A 0.572514,0.6156193 0 1 0 753.2341,561.2734 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" id="path4638" d="M 743.4825,560.5459 A 0.5499879,0.7684348 0 0 0 743.0013,561.3623 L 743.0013,570.5826 A 0.5499879,0.7684348 0 1 0 744.1012,570.5826 L 744.1012,561.3623 A 0.5499879,0.7684348 0 0 0 743.4825,560.5459 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" />
-<rect y="568.3622" x="742" height="3.999997" width="4" id="rect16999" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<circle transform="matrix(1.041676,0,0,1.041667,-30.98601,510.3413)" id="path17001" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="743.5" cy="48.5" r="1.5" />
-</g>
-<use transform="translate(768.9613,314.3087)" x="0" y="0" id="use9872" width="1250" height="1250" xlink:href="#g6043" />
-<use height="1250" width="1250" id="use10185" y="0" x="0" transform="translate(813.9931,374.6104)" xlink:href="#rect10675" />
-<use transform="translate(801.9931,386.6104)" x="0" y="0" id="use10187" width="1250" height="1250" xlink:href="#rect10675" />
-<use transform="translate(788.0099,308.2665)" x="0" y="0" id="use9872-0" width="1250" height="1250" xlink:href="#g6043" />
-<use height="1250" width="1250" id="use10185-8" y="0" x="0" transform="translate(833.0416,368.5682)" xlink:href="#rect10675" />
-<use transform="translate(821.0416,380.5682)" x="0" y="0" id="use10187-8" width="1250" height="1250" xlink:href="#rect10675" />
-<g id="path-effect-parameter-next" inkscape:label="#g17145">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000002;marker:none;enable-background:accumulate" d="M 782.3676,560.3087 C 776.7891,561.3449 771.7942,565.0442 770.9613,571.7462 A 0.5038911,0.5038911 0 1 0 771.9613,571.8712 C 772.74,565.6046 777.2829,562.288 782.5551,561.3087 A 0.5087131,0.5087131 0 1 0 782.3676,560.3087 Z" id="path9256" inkscape:connector-curvature="0" />
-<rect style="display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect9258" width="16" height="16" x="768.9375" y="558.3622" />
-<path transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path17065" d="M 777.9902,55.05469 778.0429,61.11914 781.9453,57.95508 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-<rect y="567.3622" x="783" height="5.999998" width="0.9492188" id="rect17067" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<circle transform="translate(0,512.3622)" id="path17075" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="782.5" cy="48.5" r="1.5" />
-<ellipse transform="matrix(1,0,0,1.5,0,481.8622)" id="path17077" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="771.5" cy="60" rx="1.5" ry="1" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path17141" d="M 771.9205,562.5712 C 770.677,564.4405 770.6439,566.7779 772.1649,568.1862 773.6441,568.993 775.1194,568.8348 776.9402,567.1995 773.6922,567.6259 771.9503,566.0965 771.9205,562.5712 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 777.8609,559.4745 C 776.351,560.3882 775.5621,561.9795 776.1995,563.3928 777.0037,564.3817 778.1209,564.7085 779.9711,564.1253 777.4859,563.4594 776.7285,561.8981 777.8609,559.4745 Z" id="path17143" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<rect transform="rotate(44.75927)" y="-109.1015" x="907.4614" height="13" width="1" id="rect16926" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="show-node-handles">
+<rect style="color:#000000;opacity:0;fill:#000000;fill-rule:evenodd;stroke-width:0.8" id="rect3742" width="16" height="16" x="739" y="558.3622" />
+<path inkscape:connector-curvature="0" id="path4641" d="m 753.2341,561.2734 c -2.151,0.3304 -4.642,1.5803 -6.6549,3.424 -2.0128,1.8438 -3.5778,4.3218 -3.5778,7.0405 a 0.572514,0.6156193 0 1 0 1.1449,0 c 0,-2.2058 1.2973,-4.383 3.1485,-6.0787 1.8512,-1.6956 4.2261,-2.908 6.0824,-3.1932 a 0.572514,0.6156193 0 1 0 -0.1431,-1.1926 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" />
+<path inkscape:connector-curvature="0" id="path4638" d="m 743.4825,560.5459 a 0.5499879,0.7684348 0 0 0 -0.4812,0.8164 l 0,9.2203 a 0.5499879,0.7684348 0 1 0 1.0999,0 l 0,-9.2203 a 0.5499879,0.7684348 0 0 0 -0.6187,-0.8164 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" />
+<rect y="568.3622" x="742" height="3.999997" width="4" id="rect16999" style="fill:url(#linearGradient19282)" />
+<circle transform="matrix(1.041676,0,0,1.041667,-30.98601,510.3413)" id="path17001" style="fill:url(#linearGradient19282)" cx="743.5" cy="48.5" r="1.5" />
+</g>
+<g id="path-effect-parameter-next">
+<rect style="fill:none" id="rect9258" width="16" height="16" x="768.9375" y="558.3622" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000002" d="m 782.3676,560.3087 c -5.5785,1.0362 -10.5734,4.7355 -11.4063,11.4375 a 0.5038911,0.5038911 0 1 0 1,0.125 c 0.7787,-6.2666 5.3216,-9.5832 10.5938,-10.5625 a 0.5087131,0.5087131 0 1 0 -0.1875,-1 z" id="path9256" inkscape:connector-curvature="0" />
+<path transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path17065" d="m 777.9902,55.05469 0.053,6.06445 3.9024,-3.16406 z" style="fill:url(#linearGradient19282);stroke-width:1px" />
+<rect y="567.3622" x="783" height="5.999998" width="0.9492188" id="rect17067" style="fill:url(#linearGradient19282)" />
+<circle transform="translate(0,512.3622)" id="path17075" style="fill:url(#linearGradient19282)" cx="782.5" cy="48.5" r="1.5" />
+<ellipse transform="matrix(1,0,0,1.5,0,481.8622)" id="path17077" style="fill:url(#linearGradient19282)" cx="771.5" cy="60" rx="1.5" ry="1" />
+<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path17141" d="m 771.9205,562.5712 c -1.2435,1.8693 -1.2766,4.2067 0.2444,5.615 1.4792,0.8068 2.9545,0.6486 4.7753,-0.9867 -3.248,0.4264 -4.9899,-1.103 -5.0197,-4.6283 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="m 777.8609,559.4745 c -1.5099,0.9137 -2.2988,2.505 -1.6614,3.9183 0.8042,0.9889 1.9214,1.3157 3.7716,0.7325 -2.4852,-0.6659 -3.2426,-2.2272 -2.1102,-4.6508 z" id="path17143" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
</g>
<g id="show-path-outline" inkscape:label="#nodes_show_helperpath">
-<rect y="558.3622" x="799" height="16" width="16" id="rect4758" style="display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect y="558.3622" x="811" height="3.99219" width="4" id="rect17215" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17217" width="4" height="3.999997" x="799" y="570.3622" />
-<path inkscape:connector-curvature="0" d="M 809.3437,560.4375 C 806.5169,560.7934 804.3998,562.226 803.0312,564.0312 801.2065,566.4382 800.6413,569.4825 801.2187,571.8125 L 801.2812,572.1562 801.6562,572.2187 C 808.3516,573.3444 813.9583,567.6517 812.8437,560.9062 L 812.7812,560.5312 812.4062,560.4687 C 811.3057,560.33 810.286,560.3189 809.3437,560.4375 Z M 809.4687,561.5 C 810.1955,561.4122 810.9944,561.4526 811.8437,561.5313 812.5226,567.2656 807.9277,571.8713 802.25,571.1875 801.8968,569.2612 802.344,566.6758 803.875,564.6563 805.0908,563.0525 806.9156,561.8084 809.4687,561.5 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0648619px;marker:none;enable-background:accumulate" id="path17232" />
-</g>
-<g id="g17303">
-<g transform="translate(-10.9762,503.3087)" inkscape:label="#g7356" id="path-clip-edit">
-<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 855,62 C 853,64 850,63.5 847,60.5" id="path4828" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<use height="1250" width="1250" transform="matrix(0,1,1,0,785.5,-785)" id="use4830" y="0" x="0" xlink:href="#path4828" />
-<path sodipodi:nodetypes="cc" id="path4813" d="M 842.5,68.5 C 843.3058,62.01571 848.0747,58.5078 853.5,57.5" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" inkscape:connector-curvature="0" />
-<rect style="display:inline;fill:none;stroke:none;marker:none" id="rect4815" width="16" height="16" x="839.9762" y="55.0535" />
-<use transform="translate(885.0318,-128.6983)" x="0" y="0" id="use4819" width="1250" height="1250" xlink:href="#rect10675" />
-<use height="1250" width="1250" id="use4821" y="0" x="0" transform="translate(873.0318,-116.6983)" xlink:href="#rect10675" />
-</g>
-<circle transform="matrix(1.5,0,0,1.5,-420.5,487.3622)" id="path17299" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="842" cy="49" r="1" />
-<circle style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path17301" transform="matrix(1.5,0,0,1.5,-431.5,498.3622)" cx="842" cy="49" r="1" />
-</g>
-<g id="path-mask-edit" inkscape:label="#g21113">
-<path sodipodi:nodetypes="cscscccccccccccccccc" inkscape:connector-curvature="0" id="path3826" d="M 866,564.3622 866,569.2059 C 866,570.9252 868,572.3622 870.4687,573.3934 873,572.3622 874.9687,571.1981 874.9687,569.2684 L 874.9687,564.3622 Z M 867,566.3622 870,566.3622 870,567.3622 870,568.3622 868,567.3622 Z M 871,566.3622 874,566.3622 873,567.3622 871,568.3622 Z M 868,569.3622 873,569.3622 C 870.5251,573.8516 868,569.3622 868,569.3622 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000002;marker:none" />
-<g id="g21086" inkscape:label="#g7356" transform="translate(19.0238,502.3087)">
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 841.5,67.5 C 842.3058,61.01571 847.0747,57.5078 852.5,56.5" id="path21092" sodipodi:nodetypes="cc" />
-<rect y="55.0535" x="839.9762" height="16" width="16" id="rect21094" style="display:inline;fill:none;stroke:none;marker:none" />
-<use xlink:href="#rect10675" height="1250" width="1250" id="use21096" y="0" x="0" transform="translate(885.0318,-128.6983)" />
-<use xlink:href="#rect10675" transform="translate(873.0318,-116.6983)" x="0" y="0" id="use21098" width="1250" height="1250" />
-</g>
-<circle style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path21100" transform="matrix(1.5,0,0,1.5,-391.5,485.3622)" cx="842" cy="49" r="1" />
-<circle transform="matrix(1.5,0,0,1.5,-402.5,496.3622)" id="path21102" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="842" cy="49" r="1" />
+<rect y="558.3622" x="799" height="16" width="16" id="rect4758" style="fill:none" />
+<rect y="558.3622" x="811" height="3.99219" width="4" id="rect17215" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect17217" width="4" height="3.999997" x="799" y="570.3622" />
+<path inkscape:connector-curvature="0" d="M 809.3437,560.4375 C 806.5169,560.7934 804.3998,562.226 803.0312,564.0312 801.2065,566.4382 800.6413,569.4825 801.2187,571.8125 L 801.2812,572.1562 801.6562,572.2187 C 808.3516,573.3444 813.9583,567.6517 812.8437,560.9062 L 812.7812,560.5312 812.4062,560.4687 C 811.3057,560.33 810.286,560.3189 809.3437,560.4375 Z M 809.4687,561.5 C 810.1955,561.4122 810.9944,561.4526 811.8437,561.5313 812.5226,567.2656 807.9277,571.8713 802.25,571.1875 801.8968,569.2612 802.344,566.6758 803.875,564.6563 805.0908,563.0525 806.9156,561.8084 809.4687,561.5 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0648619px" id="path17232" />
+</g>
+<g id="path-clip-edit">
+<rect y="558.3622" x="829" height="16" width="16" id="rect4815" style="fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path4828" d="m 844.0238,565.3087 c -2,2 -5,1.5 -8,-1.5" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px" />
+<use xlink:href="#path4828" x="0" y="0" id="use4830" transform="matrix(0,1,1,0,271.2151,-270.7151)" width="1250" height="1250" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="m 831.5238,571.8087 c 0.8058,-6.4843 5.5747,-9.9922 11,-11" id="path4813" sodipodi:nodetypes="cc" />
+<circle transform="matrix(1.5,0,0,1.5,-420.5,487.3622)" id="path17299" style="fill:url(#linearGradient19282)" cx="842" cy="49" r="1" />
+<circle style="fill:url(#linearGradient19282)" id="path17301" transform="matrix(1.5,0,0,1.5,-431.5,498.3622)" cx="842" cy="49" r="1" />
+</g>
+<g id="path-mask-edit">
+<rect style="fill:none" id="rect21094" width="16" height="16" x="859" y="557.3622" />
+<path sodipodi:nodetypes="cc" id="path21092" d="m 860.5238,569.8087 c 0.8058,-6.4843 5.5747,-9.9922 11,-11" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0000002;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" inkscape:connector-curvature="0" />
+<circle style="fill:url(#linearGradient19282)" id="path21100" transform="matrix(1.5,0,0,1.5,-391.5,485.3622)" cx="842" cy="49" r="1" />
+<circle transform="matrix(1.5,0,0,1.5,-402.5,496.3622)" id="path21102" style="fill:url(#linearGradient19282)" cx="842" cy="49" r="1" />
+<path sodipodi:nodetypes="cscscccccccccccccccc" inkscape:connector-curvature="0" id="path3826" d="m 866,564.3622 0,4.8437 c 0,1.7193 2,3.1563 4.4687,4.1875 2.5313,-1.0312 4.5,-2.1953 4.5,-4.125 l 0,-4.9062 z m 1,2 3,0 0,1 0,1 -2,-1 z m 4,0 3,0 -1,1 -2,1 z m -3,3 5,0 c -2.4749,4.4894 -5,0 -5,0 z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000002" />
</g>
<g id="path-mode-bezier" inkscape:label="#bezier_mode">
-<rect y="557.3622" x="889" height="16" width="16" id="rect4983" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path inkscape:connector-curvature="0" d="M 903.5312,558.4062 C 898.1359,558.0685 894.9268,559.4008 892.875,561.2812 890.5353,563.4255 889.7273,566.5348 890.0625,571.9062 L 891.0625,571.8437 C 890.7346,566.5883 891.457,563.9009 893.5312,562 895.3749,560.3104 898.255,559.0798 903.4687,559.4062 L 903.5312,558.4062 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:0.9954412;marker:none;enable-background:accumulate" id="path21191" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9834507;marker:none" id="rect4987" width="4" height="3.999997" x="891" y="559.3622" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.8003147;marker:none" id="rect4989-3" width="4" height="4" x="889" y="569.3622" />
-<rect y="557.3622" x="901" height="3.999997" width="4" id="rect21186" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.8003147;marker:none" />
+<rect y="557.3622" x="889" height="16" width="16" id="rect4983" style="color:#000000;fill:none" />
+<path inkscape:connector-curvature="0" d="M 903.5312,558.4062 C 898.1359,558.0685 894.9268,559.4008 892.875,561.2812 890.5353,563.4255 889.7273,566.5348 890.0625,571.9062 L 891.0625,571.8437 C 890.7346,566.5883 891.457,563.9009 893.5312,562 895.3749,560.3104 898.255,559.0798 903.4687,559.4062 L 903.5312,558.4062 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:0.9954412" id="path21191" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9834507" id="rect4987" width="4" height="3.999997" x="891" y="559.3622" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.8003147" id="rect4989-3" width="4" height="4" x="889" y="569.3622" />
+<rect y="557.3622" x="901" height="3.999997" width="4" id="rect21186" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.8003147" />
</g>
-<g id="g21235" inkscape:label="#spiro_splines_mode" transform="matrix(0.9989179,0,0,1,0.9944129,0)">
-<path inkscape:label="#spiro_splines_mode" sodipodi:nodetypes="cccccccs" id="path-mode-spiro" d="M 923.6984,568.4227 C 922.7405,568.2009 921.8555,567.6752 921.2025,566.9402 920.5494,566.2052 920.1316,565.2643 920.0242,564.287 919.8931,563.0945 920.2363,561.8482 920.9953,560.9191 921.7543,559.99 922.9274,559.4007 924.127,559.3912 924.9232,559.3849 925.7211,559.6297 926.3705,560.0904 927.0199,560.5511 927.5163,561.2266 927.7516,561.9872 928.0382,562.9137 927.9375,563.91 928.0341,564.875 928.0958,565.4911 928.2411,566.104 928.5189,566.6574 928.7967,567.2107 929.2124,567.7031 929.7443,568.02 930.3939,568.407 931.2041,568.5118 931.9321,568.3078 932.6601,568.1037 933.2965,567.5947 933.6598,566.9316 933.9841,566.3398 934.0905,565.6316 933.9544,564.9706 933.8183,564.3096 933.4408,563.701 932.9091,563.2854" style="color:#000000;display:inline;visibility:visible;fill:none;stroke:url(#linearGradient19282);stroke-width:2.0010831;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" inkscape:connector-curvature="0" inkscape:path-effect="#path-effect36695" inkscape:original-d="M 923.6984,568.4227 C 921.7787,568.1613 920.1726,566.357 920.0242,564.287 919.8076,562.2242 922.2863,560.0329 924.127,559.3912 925.9459,558.6802 926.7357,560.2208 927.7516,561.9872 928.3873,563.016 928.1862,563.6727 928.0341,564.875 927.8706,566.0778 928.7346,567.3996 929.7443,568.02 931.0016,568.8847 932.9735,568.3545 933.6598,566.9316 934.4183,565.5516 934.2609,563.9673 932.9091,563.2854" />
-<rect transform="translate(0,512.3622)" y="45" x="919" height="16" width="16" id="rect21233" style="fill:none;stroke:none" />
+<g id="path-mode-spiro" inkscape:label="#spiro_splines_mode" transform="matrix(0.9989179,0,0,1,0.9944129,0)">
+<rect transform="translate(0,512.3622)" y="45" x="919" height="16" width="16" id="rect21233" style="fill:none" />
+<path sodipodi:nodetypes="cccccccs" id="path6229" d="m 923.6984,568.4227 c -0.9579,-0.2218 -1.8429,-0.7475 -2.4959,-1.4825 -0.6531,-0.735 -1.0709,-1.6759 -1.1783,-2.6532 -0.1311,-1.1925 0.2121,-2.4388 0.9711,-3.3679 0.759,-0.9291 1.9321,-1.5184 3.1317,-1.5279 0.7962,-0.01 1.5941,0.2385 2.2435,0.6992 0.6494,0.4607 1.1458,1.1362 1.3811,1.8968 0.2866,0.9265 0.1859,1.9228 0.2825,2.8878 0.062,0.6161 0.207,1.229 0.4848,1.7824 0.2778,0.5533 0.6935,1.0457 1.2254,1.3626 0.6496,0.387 1.4598,0.4918 2.1878,0.2878 0.728,-0.2041 1.3644,-0.7131 1.7277,-1.3762 0.3243,-0.5918 0.4307,-1.3 0.2946,-1.961 -0.1361,-0.661 -0.5136,-1.2696 -1.0453,-1.6852" style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:2.0010831;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" inkscape:path-effect="#path-effect36695" inkscape:original-d="m 923.6984,568.4227 c -1.9197,-0.2614 -3.5258,-2.0657 -3.6742,-4.1357 -0.2166,-2.0628 2.2621,-4.2541 4.1028,-4.8958 1.8189,-0.711 2.6087,0.8296 3.6246,2.596 0.6357,1.0288 0.4346,1.6855 0.2825,2.8878 -0.1635,1.2028 0.7005,2.5246 1.7102,3.145 1.2573,0.8647 3.2292,0.3345 3.9155,-1.0884 0.7585,-1.38 0.6011,-2.9643 -0.7507,-3.6462" />
</g>
<g id="path-mode-polyline" inkscape:label="#polylines_mode">
-<rect y="557.3622" x="949" height="16" width="16" id="rect4983-8" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" id="path4985-5" d="M 964.1817,570.0038 C 964.1817,570.0038 949.8183,562.8165 949.8183,562.8165 949.8183,562.8165 955.6852,558.1805 955.6852,558.1805 955.6852,558.1805 952.4026,572.5439 952.4026,572.5439 952.4026,572.5439 961.7694,564.6427 961.7694,564.6427" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.6365869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+<rect y="557.3622" x="949" height="16" width="16" id="rect4983-8" style="color:#000000;fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" id="path4985-5" d="M 964.1817,570.0038 C 964.1817,570.0038 949.8183,562.8165 949.8183,562.8165 949.8183,562.8165 955.6852,558.1805 955.6852,558.1805 955.6852,558.1805 952.4026,572.5439 952.4026,572.5439 952.4026,572.5439 961.7694,564.6427 961.7694,564.6427" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.6365869;stroke-linecap:round;stroke-linejoin:round" />
</g>
<g id="path-mode-polyline-paraxial" inkscape:label="#paraxial_lines_mode">
-<rect y="557.3622" x="979" height="16" width="16" id="rect4983-8-8" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" d="M 994.2458,568.2563 C 994.2458,568.2563 979.7542,568.2563 979.7542,568.2563 979.7542,568.2563 979.7542,562.3901 979.7542,562.3901 979.7542,562.3901 985.9546,562.3901 985.9546,562.3901 985.9546,562.3901 985.9546,572.608 985.9546,572.608 985.9546,572.608 990.0995,572.608 990.0995,572.608 990.0995,572.608 990.0995,558.1758 990.0995,558.1758" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" id="path21371" />
+<rect y="557.3622" x="979" height="16" width="16" id="rect4983-8-8" style="color:#000000;fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" d="M 994.2458,568.2563 C 994.2458,568.2563 979.7542,568.2563 979.7542,568.2563 979.7542,568.2563 979.7542,562.3901 979.7542,562.3901 979.7542,562.3901 985.9546,562.3901 985.9546,562.3901 985.9546,562.3901 985.9546,572.608 985.9546,572.608 985.9546,572.608 990.0995,572.608 990.0995,572.608 990.0995,572.608 990.0995,558.1758 990.0995,558.1758" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round" id="path21371" />
+</g>
+<g id="path-mode-bspline" inkscape:label="#bspline_mode">
+<rect y="557.3622" x="1009" height="16" width="16" id="rect48619" style="color:#000000;fill:none" />
+<g transform="matrix(1.395066,-1.366399,1.366399,1.395066,-404.6688,1807.641)" id="g48628">
+<path inkscape:label="#spiro_splines_mode" sodipodi:nodetypes="czc" id="path-mode-spiro-3-8-8" d="m 961.7806,55.38034 c 0,0 1.3782,-1.49823 3.2604,-1.76058 1.8823,-0.26235 3.5841,1.78013 3.5841,1.78013" style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-width:1.0241938;stroke-linecap:round;stroke-linejoin:round" inkscape:connector-curvature="0" />
+<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.5120969;stroke-linecap:round;stroke-linejoin:round" d="m 960.716,54.82044 4.5038,-4.57407 4.5738,4.47984" id="path6177-8-2" sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" />
+</g>
</g>
<g id="draw-geometry-16px" inkscape:label="#g25174">
-<g inkscape:label="stock-tool-measure" id="g5490" style="display:inline" transform="translate(376.9998,352.3622)">
-<rect style="fill:none;stroke:none" id="rect5381" width="16" height="16" x="-180" y="20" transform="translate(241.0002,217)" />
-<rect style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999993;marker:none" id="rect3094" width="13.95163" height="1.000005" x="62.0002" y="247" rx="0.6230769" ry="0.5" />
-<path inkscape:connector-curvature="0" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999999;marker:none" d="M 73.23901,243.5489 70.52619,242 69.7511,242.7745 71.30128,244.7107 72.07638,249.3575 73.0002,251 73.0002,253 74.0002,252 74.0141,248.1958 Z" id="path1348" sodipodi:nodetypes="cccccccccc" />
-<path inkscape:connector-curvature="0" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999999;marker:none" d="M 64.76397,243.5489 67.43716,242 68.20092,242.7745 66.67339,244.7107 65.90962,249.3575 65.0002,251 65.0002,253 64.0002,252 64.0002,248.1958 Z" id="path3226-3" sodipodi:nodetypes="cccccccccc" />
-<rect style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" id="rect3078" width="2" height="1.996323" x="68.0002" y="237.0037" ry="0.6000004" rx="0.75" />
-<rect style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.7391946;marker:none" id="rect1344" width="1.999998" height="3.000005" x="68.0002" y="246" rx="1.055584" ry="1.106091" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M -172,21 C -173.6568,21 -175,22.34315 -175,24 -175,25.65685 -173.6568,27 -172,27 -170.3431,27 -169,25.65685 -169,24 -169,22.34315 -170.3431,21 -172,21 Z M -172,22.46875 C -171.1548,22.46875 -170.4687,23.15482 -170.4687,24 -170.4687,24.84518 -171.1548,25.53125 -172,25.53125 -172.8452,25.53125 -173.5312,24.84518 -173.5312,24 -173.5312,23.15482 -172.8452,22.46875 -172,22.46875 Z" transform="translate(241.0002,217)" id="path5483" inkscape:connector-curvature="0" />
+<g inkscape:label="stock-tool-measure" id="g5490" transform="translate(376.9998,352.3622)">
+<rect style="fill:none" id="rect5381" width="16" height="16" x="-180" y="20" transform="translate(241.0002,217)" />
+<rect style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999993" id="rect3094" width="13.95163" height="1.000005" x="62.0002" y="247" rx="0.6230769" ry="0.5" />
+<path inkscape:connector-curvature="0" style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999999" d="M 73.23901,243.5489 70.52619,242 69.7511,242.7745 71.30128,244.7107 72.07638,249.3575 73.0002,251 73.0002,253 74.0002,252 74.0141,248.1958 Z" id="path1348" sodipodi:nodetypes="cccccccccc" />
+<path inkscape:connector-curvature="0" style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999999" d="M 64.76397,243.5489 67.43716,242 68.20092,242.7745 66.67339,244.7107 65.90962,249.3575 65.0002,251 65.0002,253 64.0002,252 64.0002,248.1958 Z" id="path3226-3" sodipodi:nodetypes="cccccccccc" />
+<rect style="color:#000000;display:block;fill:url(#linearGradient19282)" id="rect3078" width="2" height="1.996323" x="68.0002" y="237.0037" ry="0.6000004" rx="0.75" />
+<rect style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.7391946" id="rect1344" width="1.999998" height="3.000005" x="68.0002" y="246" rx="1.055584" ry="1.106091" />
+<path style="fill:url(#linearGradient19282)" d="M -172,21 C -173.6568,21 -175,22.34315 -175,24 -175,25.65685 -173.6568,27 -172,27 -170.3431,27 -169,25.65685 -169,24 -169,22.34315 -170.3431,21 -172,21 Z M -172,22.46875 C -171.1548,22.46875 -170.4687,23.15482 -170.4687,24 -170.4687,24.84518 -171.1548,25.53125 -172,25.53125 -172.8452,25.53125 -173.5312,24.84518 -173.5312,24 -173.5312,23.15482 -172.8452,22.46875 -172,22.46875 Z" transform="translate(241.0002,217)" id="path5483" inkscape:connector-curvature="0" />
</g>
</g>
<g id="draw-geometry" inkscape:label="#g25164">
-<g transform="matrix(1.5,0,0,1.5,316.4997,233.8622)" style="display:inline" id="g25148" inkscape:label="stock-tool-measure">
-<rect transform="translate(241.0002,217)" y="20" x="-180" height="16" width="16" id="rect25150" style="fill:none;stroke:none" />
-<rect ry="0.3333333" rx="0.4153846" y="247" x="62.0002" height="1.000005" width="13.95163" id="rect25152" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999993;marker:none" />
-<path sodipodi:nodetypes="cccccccccc" id="path25154" d="M 73.23901,243.5489 70.52619,242 69.7511,242.7745 71.30128,244.7107 72.07638,249.3575 73.0002,251 73.0002,253 74.0002,252 74.0141,248.1958 Z" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999999;marker:none" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccccc" id="path25156" d="M 64.76397,243.5489 67.43716,242 68.20092,242.7745 66.67339,244.7107 65.90962,249.3575 65.0002,251 65.0002,253 64.0002,252 64.0002,248.1958 Z" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999999;marker:none" inkscape:connector-curvature="0" />
-<rect rx="0.4999999" ry="0.4000003" y="237.0037" x="68.0002" height="1.996323" width="2" id="rect25158" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none" />
-<rect ry="0.7373943" rx="0.7037225" y="246" x="68.0002" height="3.000005" width="1.999998" id="rect25160" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.7391946;marker:none" />
-<path inkscape:connector-curvature="0" id="path25162" transform="translate(241.0002,217)" d="M -172,21 C -173.6568,21 -175,22.34315 -175,24 -175,25.65685 -173.6568,27 -172,27 -170.3431,27 -169,25.65685 -169,24 -169,22.34315 -170.3431,21 -172,21 Z M -172,22.46875 C -171.1548,22.46875 -170.4687,23.15482 -170.4687,24 -170.4687,24.84518 -171.1548,25.53125 -172,25.53125 -172.8452,25.53125 -173.5312,24.84518 -173.5312,24 -173.5312,23.15482 -172.8452,22.46875 -172,22.46875 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<g transform="matrix(1.5,0,0,1.5,316.4997,233.8622)" id="g25148" inkscape:label="stock-tool-measure">
+<rect transform="translate(241.0002,217)" y="20" x="-180" height="16" width="16" id="rect25150" style="fill:none" />
+<rect ry="0.3333333" rx="0.4153846" y="247" x="62.0002" height="1.000005" width="13.95163" id="rect25152" style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999993" />
+<path sodipodi:nodetypes="cccccccccc" id="path25154" d="M 73.23901,243.5489 70.52619,242 69.7511,242.7745 71.30128,244.7107 72.07638,249.3575 73.0002,251 73.0002,253 74.0002,252 74.0141,248.1958 Z" style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999999" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="cccccccccc" id="path25156" d="M 64.76397,243.5489 67.43716,242 68.20092,242.7745 66.67339,244.7107 65.90962,249.3575 65.0002,251 65.0002,253 64.0002,252 64.0002,248.1958 Z" style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999999" inkscape:connector-curvature="0" />
+<rect rx="0.4999999" ry="0.4000003" y="237.0037" x="68.0002" height="1.996323" width="2" id="rect25158" style="color:#000000;display:block;fill:url(#linearGradient19282)" />
+<rect ry="0.7373943" rx="0.7037225" y="246" x="68.0002" height="3.000005" width="1.999998" id="rect25160" style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.7391946" />
+<path inkscape:connector-curvature="0" id="path25162" transform="translate(241.0002,217)" d="M -172,21 C -173.6568,21 -175,22.34315 -175,24 -175,25.65685 -173.6568,27 -172,27 -170.3431,27 -169,25.65685 -169,24 -169,22.34315 -170.3431,21 -172,21 Z M -172,22.46875 C -171.1548,22.46875 -170.4687,23.15482 -170.4687,24 -170.4687,24.84518 -171.1548,25.53125 -172,25.53125 -172.8452,25.53125 -173.5312,24.84518 -173.5312,24 -173.5312,23.15482 -172.8452,22.46875 -172,22.46875 Z" style="fill:url(#linearGradient19282)" />
</g>
</g>
<g id="draw-cuboid" inkscape:label="#draw_3dbox">
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0297309;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 422.0245,621.1892 410.1873,625.6127 409.9578,638.1882 418.8438,644.1599 430.1565,640.6842 430.3859,628.5827 422.0245,621.1892 Z" id="path5192" />
-<rect y="621.2468" x="408" height="23.12638" width="24" id="rect4344" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1.0000001;marker:none" />
-<path inkscape:connector-curvature="0" d="M 410.431,637.9184 421.7065,634.1308 421.9313,621.72 410.6477,625.9565 410.431,637.9185 Z" style="opacity:0;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4628" inkscape:box3dface="XYfront" />
-<path inkscape:connector-curvature="0" d="M 409.8945,638.0327 421.812,633.7751 430.2109,640.468 418.9473,643.7634 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4630" inkscape:box3dface="XZtop" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" d="M 421.9174,634.4865 429.6821,640.3062 429.891,628.771 421.9313,621.72 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4633" inkscape:box3dface="YZleft" sodipodi:nodetypes="ccccc" />
-<rect y="621.3484" x="420.9785" height="13.46592" width="1.021484" id="rect25277" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0297309;stroke-linecap:square" d="M 422.0245,621.1892 410.1873,625.6127 409.9578,638.1882 418.8438,644.1599 430.1565,640.6842 430.3859,628.5827 422.0245,621.1892 Z" id="path5192" />
+<rect y="621.2468" x="408" height="23.12638" width="24" id="rect4344" style="color:#000000;fill:none;stroke-width:1.0000001" />
+<path inkscape:connector-curvature="0" d="M 410.431,637.9184 421.7065,634.1308 421.9313,621.72 410.6477,625.9565 410.431,637.9185 Z" style="opacity:0;fill:url(#linearGradient19282);fill-rule:evenodd" id="path4628" inkscape:box3dface="XYfront" />
+<path inkscape:connector-curvature="0" d="M 409.8945,638.0327 421.812,633.7751 430.2109,640.468 418.9473,643.7634 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" id="path4630" inkscape:box3dface="XZtop" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" d="M 421.9174,634.4865 429.6821,640.3062 429.891,628.771 421.9313,621.72 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-rule:evenodd" id="path4633" inkscape:box3dface="YZleft" sodipodi:nodetypes="ccccc" />
+<rect y="621.3484" x="420.9785" height="13.46592" width="1.021484" id="rect25277" style="fill:url(#linearGradient19282)" />
</g>
<g id="draw-geometry-inactive" inkscape:label="#all_inactive_old">
-<rect y="589.3622" x="468" height="16" width="16" id="rect5112" style="color:#000000;display:inline;visibility:visible;fill:none;stroke:none;stroke-width:3;marker:none" />
-<path inkscape:connector-curvature="0" id="path6027" d="M 470.7783,602.359 480.8467,592.3653" style="fill:none;stroke:url(#linearGradient19282);stroke-width:4.0062704;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dasharray:none;stroke-dashoffset:23.2000008;stroke-opacity:1" />
-<path inkscape:connector-curvature="0" id="path6027-1" d="M 480.9969,602.2142 470.6282,592.5101" style="fill:none;stroke:url(#linearGradient19282);stroke-width:4.0062704;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dasharray:none;stroke-dashoffset:23.2000008;stroke-opacity:1" />
+<rect y="589.3622" x="468" height="16" width="16" id="rect5112" style="color:#000000;fill:none;stroke-width:3" />
+<path inkscape:connector-curvature="0" id="path6027" d="M 470.7783,602.359 480.8467,592.3653" style="fill:none;stroke:url(#linearGradient19282);stroke-width:4.0062704;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008" />
+<path inkscape:connector-curvature="0" id="path6027-1" d="M 480.9969,602.2142 470.6282,592.5101" style="fill:none;stroke:url(#linearGradient19282);stroke-width:4.0062704;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008" />
</g>
<g id="draw-geometry-line-segment" inkscape:label="#line_segment">
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0855559;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 498.5169,604.4798 513.4572,589.9049" id="path4418-8" sodipodi:nodetypes="cc" />
-<rect y="589.3622" x="498" height="16" width="16" id="rect4420-5" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect y="591.3622" x="508" height="4" width="4" id="use5845" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7467393;marker:none" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.7467393;marker:none" id="rect25416" width="4" height="4.000002" x="501" y="598.3622" />
-</g>
-<use style="stroke:url(#linearGradient19282);stroke-opacity:1" height="1250" width="1250" transform="matrix(1.137742,0,0,1.13997,580.677,378.2177)" id="use5845-6" y="0" x="0" xlink:href="#use5756-0-3" />
-<use style="stroke:url(#linearGradient19282);stroke-opacity:1" height="1250" width="1250" transform="matrix(1.137742,0,0,1.13997,575.6773,385.4462)" id="use5845-6-1" y="0" x="0" xlink:href="#use5756-0-3" />
-<use style="stroke:url(#linearGradient19282);stroke-opacity:1" height="1250" width="1250" transform="matrix(1.137742,0,0,1.13997,588.27,389.0965)" id="use5845-6-1-9" y="0" x="0" xlink:href="#use5756-0-3" />
+<rect y="589.3622" x="498" height="16" width="16" id="rect4420-5" style="color:#000000;fill:none" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0855559;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 498.5169,604.4798 513.4572,589.9049" id="path4418-8" sodipodi:nodetypes="cc" />
+<rect y="591.3622" x="508" height="4" width="4" id="use5845" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.7467393" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.7467393" id="rect25416" width="4" height="4.000002" x="501" y="598.3622" />
+</g>
<g id="draw-geometry-circle-from-three-points" inkscape:label="#circle_3pts">
-<path id="path2526" d="M 542.482,597.3622 C 542.482,598.2093 542.3124,599.0561 541.986,599.8387 541.6597,600.6213 541.1767,601.3392 540.5737,601.9382 539.9707,602.5372 539.2481,603.0168 538.4604,603.341 537.6726,603.6651 536.8204,603.8335 535.9681,603.8335 535.1158,603.8334 534.264,603.6649 533.4768,603.3407 532.6896,603.0165 531.9678,602.5368 531.3656,601.9378 530.7633,601.3388 530.2811,600.621 529.9552,599.8384 529.6294,599.0559 529.46,598.2092 529.46,597.3622 529.46,596.5151 529.6294,595.6685 529.9552,594.8859 530.2811,594.1033 530.7633,593.3855 531.3656,592.7865 531.9678,592.1875 532.6896,591.7079 533.4768,591.3836 534.264,591.0595 535.1158,590.8909 535.9681,590.8909 536.8204,590.8909 537.6726,591.0593 538.4604,591.3834 539.2481,591.7075 539.9707,592.1872 540.5737,592.7862 541.1767,593.3852 541.6597,594.103 541.9861,594.8856 542.3124,595.6683 542.482,596.515 542.482,597.3622" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0574424;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dasharray:none;stroke-dashoffset:23.2000008;stroke-opacity:1" inkscape:connector-curvature="0" />
-<rect y="589.3622" x="528" height="16" width="16" id="rect25473" style="fill:none;stroke:none" />
-<rect y="589.3622" x="534" height="4" width="4" id="rect25475" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect25477" width="4" height="4" x="528" y="595.3622" />
-<rect y="595.3622" x="540" height="4" width="4" id="rect25479" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="draw-geometry-circle-from-radius" inkscape:label="#g25640">
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0574424;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dasharray:none;stroke-dashoffset:23.2000008;stroke-opacity:1" d="M 573.482,597.3622 C 573.482,598.2093 573.3124,599.0561 572.986,599.8387 572.6597,600.6213 572.1767,601.3392 571.5737,601.9382 570.9707,602.5372 570.2481,603.0168 569.4604,603.341 568.6726,603.6651 567.8204,603.8335 566.9681,603.8335 566.1158,603.8334 565.264,603.6649 564.4768,603.3407 563.6896,603.0165 562.9678,602.5368 562.3656,601.9378 561.7633,601.3388 561.2811,600.621 560.9552,599.8384 560.6294,599.0559 560.46,598.2092 560.46,597.3622 560.46,596.5151 560.6294,595.6685 560.9552,594.8859 561.2811,594.1033 561.7633,593.3855 562.3656,592.7865 562.9678,592.1875 563.6896,591.7079 564.4768,591.3836 565.264,591.0595 566.1158,590.8909 566.9681,590.8909 567.8204,590.8909 568.6726,591.0593 569.4604,591.3834 570.2481,591.7075 570.9707,592.1872 571.5737,592.7862 572.1767,593.3852 572.6597,594.103 572.9861,594.8856 573.3124,595.6683 573.482,596.515 573.482,597.3622" id="path25620" />
-<rect style="fill:none;stroke:none" id="rect25622" width="16" height="16" x="559" y="589.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect25624" width="4" height="4" x="565" y="595.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect25628" width="4" height="4" x="570" y="590.3622" />
-<rect transform="matrix(0.6825151,0.7308715,-0.6898923,0.723912,0,0)" y="-14.46718" x="823.4486" height="7.243003" width="1.035327" id="rect25635" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="g14470" inkscape:label="#parallel">
-<g inkscape:label="parallel" id="draw-geometry-line-parallel" transform="matrix(0.4616704,0.9537175,-0.9705043,0.4536848,373.1954,-93.53239)">
-<path id="path4418-8-1-0-1-4-4" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 672.4285,92.87286 687.1351,89.60546" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path4418-8-1-0-1-4-4-6" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 673.2681,96.33213 687.9748,93.06472" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-</g>
-<rect transform="translate(0,512.3622)" y="77" x="589" height="16" width="16" id="rect13700" style="fill:none;fill-opacity:1;stroke:none" />
+<rect y="589.3622" x="528" height="16" width="16" id="rect25473" style="fill:none" />
+<path id="path2526" d="M 542.482,597.3622 C 542.482,598.2093 542.3124,599.0561 541.986,599.8387 541.6597,600.6213 541.1767,601.3392 540.5737,601.9382 539.9707,602.5372 539.2481,603.0168 538.4604,603.341 537.6726,603.6651 536.8204,603.8335 535.9681,603.8335 535.1158,603.8334 534.264,603.6649 533.4768,603.3407 532.6896,603.0165 531.9678,602.5368 531.3656,601.9378 530.7633,601.3388 530.2811,600.621 529.9552,599.8384 529.6294,599.0559 529.46,598.2092 529.46,597.3622 529.46,596.5151 529.6294,595.6685 529.9552,594.8859 530.2811,594.1033 530.7633,593.3855 531.3656,592.7865 531.9678,592.1875 532.6896,591.7079 533.4768,591.3836 534.264,591.0595 535.1158,590.8909 535.9681,590.8909 536.8204,590.8909 537.6726,591.0593 538.4604,591.3834 539.2481,591.7075 539.9707,592.1872 540.5737,592.7862 541.1767,593.3852 541.6597,594.103 541.9861,594.8856 542.3124,595.6683 542.482,596.515 542.482,597.3622" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0574424;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008" inkscape:connector-curvature="0" />
+<rect y="589.3622" x="534" height="4" width="4" id="rect25475" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect25477" width="4" height="4" x="528" y="595.3622" />
+<rect y="595.3622" x="540" height="4" width="4" id="rect25479" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="draw-geometry-circle-from-radius">
+<rect style="fill:none" id="rect25622" width="16" height="16" x="559" y="589.3622" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0574424;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.27;stroke-dashoffset:23.2000008" d="m 573.482,597.3622 c 0,0.8471 -0.1696,1.6939 -0.496,2.4765 -0.3263,0.7826 -0.8093,1.5005 -1.4123,2.0995 -0.603,0.599 -1.3256,1.0786 -2.1133,1.4028 -0.7878,0.3241 -1.64,0.4925 -2.4923,0.4925 -0.8523,-10e-5 -1.7041,-0.1686 -2.4913,-0.4928 -0.7872,-0.3242 -1.509,-0.8039 -2.1112,-1.4029 -0.6023,-0.599 -1.0845,-1.3168 -1.4104,-2.0994 -0.3258,-0.7825 -0.4952,-1.6292 -0.4952,-2.4762 0,-0.8471 0.1694,-1.6937 0.4952,-2.4763 0.3259,-0.7826 0.8081,-1.5004 1.4104,-2.0994 0.6022,-0.599 1.324,-1.0786 2.1112,-1.4029 0.7872,-0.3241 1.639,-0.4927 2.4913,-0.4927 0.8523,0 1.7045,0.1684 2.4923,0.4925 0.7877,0.3241 1.5103,0.8038 2.1133,1.4028 0.603,0.599 1.086,1.3168 1.4124,2.0994 0.3263,0.7827 0.4959,1.6294 0.4959,2.4766" id="path25620" />
+<rect style="fill:url(#linearGradient19282)" id="rect25624" width="4" height="4" x="565" y="595.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect25628" width="4" height="4" x="570" y="590.3622" />
+<rect transform="matrix(0.6825151,0.7308715,-0.6898923,0.723912,0,0)" y="-14.46718" x="823.4486" height="7.243003" width="1.035327" id="rect25635" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="draw-geometry-line-parallel" inkscape:label="#parallel">
+<rect transform="translate(0,512.3622)" y="77" x="589" height="16" width="16" id="rect13700" style="fill:none" />
+<g id="g6231" transform="matrix(0.4616704,0.9537175,-0.9705043,0.4536848,373.1954,-93.53239)">
+<path id="path4418-8-1-0-1-4-4" style="fill:none;stroke:url(#linearGradient19282);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="m 672.4285,92.87286 14.7066,-3.2674" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
+<path id="path4418-8-1-0-1-4-4-6" style="fill:none;stroke:url(#linearGradient19282);stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="m 673.2681,96.33213 14.7067,-3.26741" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
</g>
-<g id="draw-geometry-line-perpendicular" inkscape:label="#perp_bisector">
-<g id="g14557">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:url(#linearGradient19282);stroke-width:1.1448921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 633.394,604.8003 620.5863,589.9317" id="path4418-8-1-2" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<path id="path4418-8-1-0-1" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.1448921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 622.7394,599.9294 631.0317,593.877" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" />
-<rect style="fill:none;stroke:none" id="rect14519" width="16" height="16" x="619" y="589.3621" />
</g>
+<g id="draw-geometry-line-perpendicular" inkscape:label="#perp_bisector">
+<rect y="589.3621" x="619" height="16" width="16" id="rect14519" style="fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path4418-8-1-2" d="M 633.394,604.8003 620.5863,589.9317" style="fill:url(#linearGradient19282);stroke:url(#linearGradient19282);stroke-width:1.1448921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" d="m 622.7394,599.9294 8.2923,-6.0524" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.1448921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0-1" />
</g>
<g id="draw-geometry-angle-bisector" inkscape:label="#angle_bisector">
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path4418-8-1" d="M 663.1849,604.7512 649.5366,589.9371" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.1796938;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" d="M 655.566,604.0989 652.2821,592.7614 664.4023,598.0687" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.1796938;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" id="path4418-8-1-0" />
-<rect transform="translate(0,512.3622)" y="77" x="649" height="16" width="16" id="rect14611" style="fill:none;fill-opacity:1;stroke:none;stroke-width:1.049;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+<rect transform="translate(0,512.3622)" y="77" x="649" height="16" width="16" id="rect14611" style="fill:none;stroke-width:1.049;stroke-linecap:square" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path4418-8-1" d="M 663.1849,604.7512 649.5366,589.9371" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.1796938;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" d="M 655.566,604.0989 652.2821,592.7614 664.4023,598.0687" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.1796938;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0" />
</g>
<g id="draw-geometry-mirror" inkscape:label="#mirror_symmetry">
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cs" d="M 687.2783,590.0049 C 684.2248,598.9578 697.717,588.7272 693.5694,600.6095" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.2710376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" id="path4418-8-1-0-1-4-4-8" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" d="M 681.4758,590.4689 693.3918,605.3929" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.2710376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" id="path4418-8-1-0-1-4-4-6-5" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cs" d="M 679.6118,595.8527 C 689.2296,595.0122 674.862,605.5755 688.7203,604.2798" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.2710376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" id="path4418-8-1-0-1-4-4-8-5" />
-<rect y="589.3622" x="679" height="16" width="16" id="rect14666" style="fill:none;stroke:none" />
+<rect y="589.3622" x="679" height="16" width="16" id="rect14666" style="fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cs" d="M 687.2783,590.0049 C 684.2248,598.9578 697.717,588.7272 693.5694,600.6095" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.2710376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0-1-4-4-8" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" d="M 681.4758,590.4689 693.3918,605.3929" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.2710376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0-1-4-4-6-5" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cs" d="M 679.6118,595.8527 C 689.2296,595.0122 674.862,605.5755 688.7203,604.2798" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.2710376;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" id="path4418-8-1-0-1-4-4-8-5" />
</g>
<g id="show-bounding-box" inkscape:label="#lpetool_show_bbox">
-<rect transform="translate(0,512.3622)" y="77" x="709" height="16" width="16" id="rect14708" style="fill:none;stroke:none;stroke-width:1.049;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<rect y="591.3622" x="712" height="1" width="1" id="rect14710" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="593.3622" x="712" height="1" width="1" id="rect14712" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14714" width="1" height="1" x="712" y="595.3622" />
-<rect y="597.3622" x="712" height="1" width="1" id="rect14716" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14718" width="1" height="1" x="712" y="599.3622" />
-<rect y="601.3622" x="712" height="1" width="1" id="rect14720" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14722" width="1" height="1" x="712" y="603.3622" />
-<rect y="603.3622" x="714" height="1" width="1" id="rect14724" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14726" width="1" height="1" x="716" y="603.3622" />
-<rect y="603.3622" x="718" height="1" width="1" id="rect14729" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="603.3622" x="720" height="1" width="1" id="rect14733" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14735" width="1" height="1" x="720" y="601.3622" />
-<rect y="599.3622" x="720" height="1" width="1" id="rect14737" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14739" width="1" height="1" x="720" y="597.3622" />
-<rect y="595.3622" x="720" height="1" width="1" id="rect14741" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14743" width="1" height="1" x="720" y="593.3622" />
-<rect y="591.3622" x="720" height="1" width="1" id="rect14745" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="591.3622" x="718" height="1" width="1" id="rect14749" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14751" width="1" height="1" x="716" y="591.3622" />
-<rect y="591.3622" x="714" height="1" width="1" id="rect14753" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="draw-geometry-set-bounding-box" inkscape:label="#g14826">
-<rect style="fill:none;stroke:none" id="rect14757" width="16" height="16" x="739" y="589.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14759" width="1" height="1" x="742" y="591.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14761" width="1" height="1" x="742" y="593.3622" />
-<rect y="595.3622" x="742" height="1" width="1" id="rect14763" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14765" width="1" height="1" x="742" y="597.3622" />
-<rect y="599.3622" x="742" height="1" width="1" id="rect14767" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14769" width="1" height="1" x="742" y="601.3622" />
-<rect y="603.3622" x="742" height="1" width="1" id="rect14771" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14773" width="1" height="1" x="744" y="603.3622" />
-<rect y="603.3622" x="746" height="1" width="1" id="rect14775" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14777" width="1" height="1" x="748" y="603.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14779" width="1" height="1" x="750" y="603.3622" />
-<rect y="601.3622" x="750" height="1" width="1" id="rect14781" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14783" width="1" height="1" x="750" y="599.3622" />
-<rect y="597.3622" x="750" height="1" width="1" id="rect14785" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14787" width="1" height="1" x="750" y="595.3622" />
-<rect y="593.3622" x="750" height="1" width="1" id="rect14789" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14791" width="1" height="1" x="750" y="591.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14793" width="1" height="1" x="748" y="591.3622" />
-<rect y="591.3622" x="746" height="1" width="1" id="rect14795" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14797" width="1" height="1" x="744" y="591.3622" />
-<path sodipodi:nodetypes="cccc" transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path14799" d="M 742,85 739,82 739,88 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 751,597.3622 754,594.3622 754,600.3622 Z" id="path14801" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-</g>
-<g id="dialog-geometry" inkscape:label="#g14973">
-<rect style="fill:none;stroke:none" id="rect14874" width="16" height="16" x="769" y="589.3622" />
-<rect ry="0" rx="0.75" y="589.3622" x="769" height="16" width="1" id="rect14903" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect14905" width="1" height="16" x="784" y="589.3622" rx="0.75" ry="0" />
-<rect ry="1" rx="0" transform="translate(0,512.3622)" y="77" x="769" height="1" width="16" id="rect14907" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect rx="0" transform="translate(0,512.3622)" y="92" x="769" height="1" width="16" id="rect14909" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0.6000004" rx="0" y="591.3622" x="771" height="1" width="12" id="rect14911" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999993;marker:none" id="rect14919" width="10" height="1.043879" x="772" y="600.4193" rx="0.6230769" ry="0.4999999" />
-<path inkscape:connector-curvature="0" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999999;marker:none" d="M 781,597.3622 778.9981,596.3622 778,597.3622 779,597.3622 780,598.3622 780,601.3622 780,602.3622 779.9286,604.4676 781,602.3622 781.0586,600.8682 Z" id="path14921" sodipodi:nodetypes="ccccccccccc" />
-<path sodipodi:nodetypes="ccccccccccc" id="path14959" d="M 773.0585,597.3622 775.0077,596.3094 776,597.3622 775.0585,597.3622 774.0585,598.3622 774,601.3622 774,603.3622 774,604.3622 773,602.3622 773,600.8682 Z" style="color:#000000;display:block;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999999;marker:none" inkscape:connector-curvature="0" />
-<rect ry="1" rx="1" y="599.3622" x="776" height="3" width="2" id="rect14964" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path14966" d="M 777.0625,594.1122 C 775.7832,594.1122 774.75,595.1166 774.75,596.3622 774.75,597.6078 775.7832,598.6122 777.0625,598.6122 778.3418,598.6122 779.375,597.6078 779.375,596.3622 779.375,595.1166 778.3418,594.1122 777.0625,594.1122 Z M 777,595.3622 C 777.5523,595.3622 778,595.8099 778,596.3622 778,596.9145 777.5523,597.3622 777,597.3622 776.4477,597.3622 776,596.9145 776,596.3622 776,595.8099 776.4477,595.3622 777,595.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect rx="1" ry="1" y="593.3622" x="776" height="2" width="2" id="rect14971" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="draw-geometry-show-measuring-info" inkscape:label="#g15063">
-<rect transform="translate(0,512.3622)" y="77" x="799" height="16" width="16" id="rect15006" style="fill:none;fill-opacity:1;stroke:none" />
-<path id="rect15008" transform="translate(0,512.3622)" d="M 800,77 C 799.446,77 799,77.446 799,78 L 799,85 C 799,85.554 799.446,86 800,86 L 807,86 807,90 812,86 814,86 C 814.554,86 815,85.554 815,85 L 815,78 C 815,77.446 814.554,77 814,77 L 800,77 Z M 801,78 813,78 C 813.554,78 814,78.446 814,79 L 814,84 C 814,84.554 813.554,85 813,85 L 812,85 811.5,85 808,87.65625 808,85 807,85 801,85 C 800.446,85 800,84.554 800,84 L 800,79 C 800,78.446 800.446,78 801,78 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="rect15016" transform="translate(0,512.3622)" d="M 799,91 799,93 800,93 800,92 801,92 801,93 802,93 802,92 803,92 803,93 804,93 804,92 805,92 805,93 806,93 806,92 807,92 807,93 808,93 808,92 809,92 809,93 810,93 810,92 811,92 811,93 812,93 812,92 813,92 813,93 814,93 814,91 799,91 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<rect y="591.3622" x="805" height="4.999998" width="1" id="rect15039" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="595.3622" x="807" height="1" width="1" id="rect15041" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="rect15043" d="M 809,591.3622 809,596.3622 812,596.3622 812,591.3622 Z M 810,592.3622 811,592.3622 811,595.3622 810,595.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="77" x="709" height="16" width="16" id="rect14708" style="fill:none;stroke-width:1.049;stroke-linecap:square" />
+<rect y="591.3622" x="712" height="1" width="1" id="rect14710" style="fill:url(#linearGradient19282)" />
+<rect y="593.3622" x="712" height="1" width="1" id="rect14712" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14714" width="1" height="1" x="712" y="595.3622" />
+<rect y="597.3622" x="712" height="1" width="1" id="rect14716" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14718" width="1" height="1" x="712" y="599.3622" />
+<rect y="601.3622" x="712" height="1" width="1" id="rect14720" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14722" width="1" height="1" x="712" y="603.3622" />
+<rect y="603.3622" x="714" height="1" width="1" id="rect14724" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14726" width="1" height="1" x="716" y="603.3622" />
+<rect y="603.3622" x="718" height="1" width="1" id="rect14729" style="fill:url(#linearGradient19282)" />
+<rect y="603.3622" x="720" height="1" width="1" id="rect14733" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14735" width="1" height="1" x="720" y="601.3622" />
+<rect y="599.3622" x="720" height="1" width="1" id="rect14737" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14739" width="1" height="1" x="720" y="597.3622" />
+<rect y="595.3622" x="720" height="1" width="1" id="rect14741" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14743" width="1" height="1" x="720" y="593.3622" />
+<rect y="591.3622" x="720" height="1" width="1" id="rect14745" style="fill:url(#linearGradient19282)" />
+<rect y="591.3622" x="718" height="1" width="1" id="rect14749" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14751" width="1" height="1" x="716" y="591.3622" />
+<rect y="591.3622" x="714" height="1" width="1" id="rect14753" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="draw-geometry-set-bounding-box">
+<rect style="fill:none" id="rect14757" width="16" height="16" x="739" y="589.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect14759" width="1" height="1" x="742" y="591.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect14761" width="1" height="1" x="742" y="593.3622" />
+<rect y="595.3622" x="742" height="1" width="1" id="rect14763" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14765" width="1" height="1" x="742" y="597.3622" />
+<rect y="599.3622" x="742" height="1" width="1" id="rect14767" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14769" width="1" height="1" x="742" y="601.3622" />
+<rect y="603.3622" x="742" height="1" width="1" id="rect14771" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14773" width="1" height="1" x="744" y="603.3622" />
+<rect y="603.3622" x="746" height="1" width="1" id="rect14775" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14777" width="1" height="1" x="748" y="603.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect14779" width="1" height="1" x="750" y="603.3622" />
+<rect y="601.3622" x="750" height="1" width="1" id="rect14781" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14783" width="1" height="1" x="750" y="599.3622" />
+<rect y="597.3622" x="750" height="1" width="1" id="rect14785" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14787" width="1" height="1" x="750" y="595.3622" />
+<rect y="593.3622" x="750" height="1" width="1" id="rect14789" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14791" width="1" height="1" x="750" y="591.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect14793" width="1" height="1" x="748" y="591.3622" />
+<rect y="591.3622" x="746" height="1" width="1" id="rect14795" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14797" width="1" height="1" x="744" y="591.3622" />
+<path sodipodi:nodetypes="cccc" transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path14799" d="m 742,85 -3,-3 0,6 z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 751,597.3622 3,-3 0,6 z" id="path14801" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+</g>
+<g id="dialog-geometry">
+<rect style="fill:none" id="rect14874" width="16" height="16" x="769" y="589.3622" />
+<rect ry="0" rx="0.75" y="589.3622" x="769" height="16" width="1" id="rect14903" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect14905" width="1" height="16" x="784" y="589.3622" rx="0.75" ry="0" />
+<rect ry="1" rx="0" transform="translate(0,512.3622)" y="77" x="769" height="1" width="16" id="rect14907" style="fill:url(#linearGradient19282)" />
+<rect rx="0" transform="translate(0,512.3622)" y="92" x="769" height="1" width="16" id="rect14909" style="fill:url(#linearGradient19282)" />
+<rect ry="0.6000004" rx="0" y="591.3622" x="771" height="1" width="12" id="rect14911" style="fill:url(#linearGradient19282)" />
+<rect style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999993" id="rect14919" width="10" height="1.043879" x="772" y="600.4193" rx="0.6230769" ry="0.4999999" />
+<path inkscape:connector-curvature="0" style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999999" d="m 781,597.3622 -2.0019,-1 -0.9981,1 1,0 1,1 0,3 0,1 -0.071,2.1054 1.0714,-2.1054 0.059,-1.494 z" id="path14921" sodipodi:nodetypes="ccccccccccc" />
+<path sodipodi:nodetypes="ccccccccccc" id="path14959" d="m 773.0585,597.3622 1.9492,-1.0528 0.9923,1.0528 -0.9415,0 -1,1 -0.058,3 0,2 0,1 -1,-2 0,-1.494 z" style="color:#000000;display:block;fill:url(#linearGradient19282);stroke-width:0.9999999" inkscape:connector-curvature="0" />
+<rect ry="1" rx="1" y="599.3622" x="776" height="3" width="2" id="rect14964" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path14966" d="m 777.0625,594.1122 c -1.2793,0 -2.3125,1.0044 -2.3125,2.25 0,1.2456 1.0332,2.25 2.3125,2.25 1.2793,0 2.3125,-1.0044 2.3125,-2.25 0,-1.2456 -1.0332,-2.25 -2.3125,-2.25 z m -0.062,1.25 c 0.5523,0 1,0.4477 1,1 0,0.5523 -0.4477,1 -1,1 -0.5523,0 -1,-0.4477 -1,-1 0,-0.5523 0.4477,-1 1,-1 z" style="fill:url(#linearGradient19282)" />
+<rect rx="1" ry="1" y="593.3622" x="776" height="2" width="2" id="rect14971" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="draw-geometry-show-measuring-info">
+<rect transform="translate(0,512.3622)" y="77" x="799" height="16" width="16" id="rect15006" style="fill:none" />
+<path id="rect15008" transform="translate(0,512.3622)" d="m 800,77 c -0.554,0 -1,0.446 -1,1 l 0,7 c 0,0.554 0.446,1 1,1 l 7,0 0,4 5,-4 2,0 c 0.554,0 1,-0.446 1,-1 l 0,-7 c 0,-0.554 -0.446,-1 -1,-1 l -14,0 z m 1,1 12,0 c 0.554,0 1,0.446 1,1 l 0,5 c 0,0.554 -0.446,1 -1,1 l -1,0 -0.5,0 -3.5,2.65625 0,-2.65625 -1,0 -6,0 c -0.554,0 -1,-0.446 -1,-1 l 0,-5 c 0,-0.554 0.446,-1 1,-1 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="rect15016" transform="translate(0,512.3622)" d="m 799,91 0,2 1,0 0,-1 1,0 0,1 1,0 0,-1 1,0 0,1 1,0 0,-1 1,0 0,1 1,0 0,-1 1,0 0,1 1,0 0,-1 1,0 0,1 1,0 0,-1 1,0 0,1 1,0 0,-1 1,0 0,1 1,0 0,-2 -15,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<rect y="591.3622" x="805" height="4.999998" width="1" id="rect15039" style="fill:url(#linearGradient19282)" />
+<rect y="595.3622" x="807" height="1" width="1" id="rect15041" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="rect15043" d="m 809,591.3622 0,5 3,0 0,-5 z m 1,1 1,0 0,3 -1,0 z" style="fill:url(#linearGradient19282)" />
</g>
<g id="perspective-parallel" inkscape:label="#toggle_vp_x">
-<rect y="621.3622" x="438" height="16" width="16" id="rect15090" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="622.3622" x="442" height="14" width="3" id="rect15092" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="622.3622" x="447" height="14" width="3" id="rect15094" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="621.3622" x="438" height="16" width="16" id="rect15090" style="fill:none" />
+<rect y="622.3622" x="442" height="14" width="3" id="rect15092" style="fill:url(#linearGradient19282)" />
+<rect y="622.3622" x="447" height="14" width="3" id="rect15094" style="fill:url(#linearGradient19282)" />
</g>
<g id="toggle_vp_y">
-<rect style="fill:none;stroke:none" id="rect15096" width="16" height="16" x="468" y="621.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect15098" width="3" height="14" x="472" y="622.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect15100" width="3" height="14" x="477" y="622.3622" />
+<rect style="fill:none" id="rect15096" width="16" height="16" x="468" y="621.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect15098" width="3" height="14" x="472" y="622.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect15100" width="3" height="14" x="477" y="622.3622" />
</g>
<g id="toggle_vp_z">
-<rect y="621.3622" x="498" height="16" width="16" id="rect15102" style="fill:none;stroke:none" />
-<rect y="622.3622" x="502" height="14" width="3" id="rect15104" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="622.3622" x="507" height="14" width="3" id="rect15106" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="621.3622" x="498" height="16" width="16" id="rect15102" style="fill:none" />
+<rect y="622.3622" x="502" height="14" width="3" id="rect15104" style="fill:url(#linearGradient19282)" />
+<rect y="622.3622" x="507" height="14" width="3" id="rect15106" style="fill:url(#linearGradient19282)" />
</g>
<g id="3dbox_three_handles">
-<rect transform="translate(0,512.3622)" y="109" x="528" height="16" width="16" id="rect15142" style="fill:none;fill-opacity:1;stroke:none" />
-<rect y="622.3622" x="530" height="4" width="4" id="rect15144" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="626.3622" x="539" height="4" width="4" id="rect15146" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="632.3622" x="532" height="4" width="4" id="rect15148" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="109" x="528" height="16" width="16" id="rect15142" style="fill:none" />
+<rect y="622.3622" x="530" height="4" width="4" id="rect15144" style="fill:url(#linearGradient19282)" />
+<rect y="626.3622" x="539" height="4" width="4" id="rect15146" style="fill:url(#linearGradient19282)" />
+<rect y="632.3622" x="532" height="4" width="4" id="rect15148" style="fill:url(#linearGradient19282)" />
</g>
<g id="3dbox_four_handles">
-<rect transform="translate(0,512.3622)" y="109" x="559" height="16" width="16" id="rect15175" style="fill:none;fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="110" x="560" height="4" width="4" id="rect15177" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="632.3622" x="560" height="3.999997" width="4" id="rect15179" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect15181" width="4" height="3.999997" x="570" y="622.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect15183" width="4.000005" height="4.000005" x="570" y="632.3622" />
+<rect transform="translate(0,512.3622)" y="109" x="559" height="16" width="16" id="rect15175" style="fill:none" />
+<rect transform="translate(0,512.3622)" y="110" x="560" height="4" width="4" id="rect15177" style="fill:url(#linearGradient19282)" />
+<rect y="632.3622" x="560" height="3.999997" width="4" id="rect15179" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect15181" width="4" height="3.999997" x="570" y="622.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect15183" width="4.000005" height="4.000005" x="570" y="632.3622" />
</g>
<g id="randomize">
-<rect y="677.3622" x="408" height="24" width="24" id="rect7476" style="display:inline;fill:none;stroke:none;stroke-width:1.0000001;marker:none" />
-<path sodipodi:nodetypes="ccccccc" style="display:inline;visibility:visible;fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" d="M 409,682.6122 409,695.1122 420,700.6122 431,695.1122 431,682.6122 420,687.1122 409,682.6122 Z" id="path4908" inkscape:connector-curvature="0" />
-<path style="display:inline;visibility:visible;fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" d="M 420,678.1122 431,682.6122 420,687.1122 409,682.6122 420,678.1122 Z" id="path4912" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cc" id="path5699" d="M 420,687.1122 420,700.5292" style="display:inline;visibility:visible;fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" inkscape:connector-curvature="0" />
-<ellipse style="display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3484024;marker:none" id="use5857" transform="matrix(0,1.696616,-1.584405,0,769.8879,-746.3638)" cx="842.25" cy="222.75" rx="0.75" ry="1.25" />
-<ellipse style="display:inline;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.3484024;marker:none" id="use5859" transform="matrix(0,1.696616,-1.584405,0,775.9845,-746.3358)" cx="842.25" cy="222.75" rx="0.75" ry="1.25" />
-<circle transform="matrix(1.06292,0.0998114,-0.1122882,1.195789,7.206075,438.936)" id="path15511" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="412.5" cy="176.5" r="1.5" />
-<circle transform="matrix(0.8847737,0.0043444,0.0064558,0.9144787,48.34253,528.1256)" id="path15515" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="412.5" cy="176.5" r="1.5" />
-<circle style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path15519" transform="matrix(0.9427641,0.0044503,0.006879,0.9367757,27.03627,528.1806)" cx="412.5" cy="176.5" r="1.5" />
-<circle transform="matrix(0.9115641,0.0043668,0.0066513,0.9191977,34.80486,523.3811)" id="path15521" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="412.5" cy="176.5" r="1.5" />
-</g>
-<rect y="682.3622" x="498" height="16" width="16" id="rect15564" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" id="path15581" d="M 501,685.3622 501,687.3622 507,687.3622 507,689.3622 511,686.3622 507,683.3622 507,685.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccccc" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect15587" width="7" height="6.999998" x="498" y="691.3622" ry="0" rx="1" />
-<rect rx="1" ry="0" y="691.3622" x="507" height="6.999998" width="7" id="rect15591" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:none;stroke:none" id="rect15593" width="16" height="16" x="528.0117" y="682.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 530,695.3622 532,695.3622 532,689.3622 534,689.3622 531,685.3622 528,689.3622 530,689.3622 Z" id="path15595" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
-<rect rx="1" ry="0" y="682.3622" x="536" height="6.999998" width="7" id="rect15597" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect15599" width="7" height="6.999998" x="536" y="691.3622" ry="0" rx="1" />
-<rect y="682.3622" x="558.0117" height="16" width="16" id="rect15601" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="path15603" d="M 564,686.3622 564,688.3622 570,688.3622 570,690.3622 574,687.3622 570,684.3622 570,686.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect15605" width="6" height="6" x="563" y="691.3622" ry="0" rx="0.9999999" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 568,686.3622 568,688.3622 562,688.3622 562,690.3622 558,687.3622 562,684.3622 562,686.3622 Z" id="path15609" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
-<rect style="fill:none;stroke:none" id="rect15612" width="16" height="16" x="588.0117" y="682.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 594,688.3622 592,688.3622 592,694.3622 590,694.3622 593,698.3622 596,694.3622 594,694.3622 Z" id="path15614" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
-<rect rx="0.9999999" ry="0" y="687.3622" x="596" height="6" width="6" id="rect15616" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="path15618" d="M 594,692.3622 592,692.3622 592,686.3622 590,686.3622 593,682.3622 596,686.3622 594,686.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="677.3622" x="408" height="24" width="24" id="rect7476" style="fill:none;stroke-width:1.0000001" />
+<path sodipodi:nodetypes="ccccccc" style="fill:none;stroke:url(#linearGradient19282);stroke-linejoin:round" d="M 409,682.6122 409,695.1122 420,700.6122 431,695.1122 431,682.6122 420,687.1122 409,682.6122 Z" id="path4908" inkscape:connector-curvature="0" />
+<path style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linejoin:round" d="M 420,678.1122 431,682.6122 420,687.1122 409,682.6122 420,678.1122 Z" id="path4912" sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="cc" id="path5699" d="M 420,687.1122 420,700.5292" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px" inkscape:connector-curvature="0" />
+<ellipse style="fill:url(#linearGradient19282);stroke-width:1.3484024" id="use5857" transform="matrix(0,1.696616,-1.584405,0,769.8879,-746.3638)" cx="842.25" cy="222.75" rx="0.75" ry="1.25" />
+<ellipse style="fill:url(#linearGradient19282);stroke-width:1.3484024" id="use5859" transform="matrix(0,1.696616,-1.584405,0,775.9845,-746.3358)" cx="842.25" cy="222.75" rx="0.75" ry="1.25" />
+<circle transform="matrix(1.06292,0.0998114,-0.1122882,1.195789,7.206075,438.936)" id="path15511" style="fill:url(#linearGradient19282)" cx="412.5" cy="176.5" r="1.5" />
+<circle transform="matrix(0.8847737,0.0043444,0.0064558,0.9144787,48.34253,528.1256)" id="path15515" style="fill:url(#linearGradient19282)" cx="412.5" cy="176.5" r="1.5" />
+<circle style="fill:url(#linearGradient19282)" id="path15519" transform="matrix(0.9427641,0.0044503,0.006879,0.9367757,27.03627,528.1806)" cx="412.5" cy="176.5" r="1.5" />
+<circle transform="matrix(0.9115641,0.0043668,0.0066513,0.9191977,34.80486,523.3811)" id="path15521" style="fill:url(#linearGradient19282)" cx="412.5" cy="176.5" r="1.5" />
+</g>
+<g id="transform-move-horizontal" inkscape:label="#arrows_hor">
+<rect style="fill:none" id="rect15564" width="16" height="16" x="498" y="682.3622" />
+<path sodipodi:nodetypes="cccccccc" style="fill:url(#linearGradient19282)" d="m 501,685.3622 0,2 6,0 0,2 4,-3 -4,-3 0,2 z" id="path15581" inkscape:connector-curvature="0" />
+<rect rx="1" ry="0" y="691.3622" x="498" height="6.999998" width="7" id="rect15587" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect15591" width="7" height="6.999998" x="507" y="691.3622" ry="0" rx="1" />
+</g>
+<g id="transform-move-vertical">
+<rect y="682.3622" x="528.0117" height="16" width="16" id="rect15593" style="fill:none" />
+<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="path15595" d="m 530,695.3622 2,0 0,-6 2,0 -3,-4 -3,4 2,0 z" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect15597" width="7" height="6.999998" x="536" y="682.3622" ry="0" rx="1" />
+<rect rx="1" ry="0" y="691.3622" x="536" height="6.999998" width="7" id="rect15599" style="opacity:0.3;fill:url(#linearGradient19282)" />
+</g>
+<g id="transform-scale-horizontal" inkscape:label="#transform_scale_hor">
+<rect style="fill:none" id="rect15601" width="16" height="16" x="558.0117" y="682.3622" />
+<path style="fill:url(#linearGradient19282)" d="m 564,686.3622 0,2 6,0 0,2 4,-3 -4,-3 0,2 z" id="path15603" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
+<rect rx="0.9999999" ry="0" y="691.3622" x="563" height="6" width="6" id="rect15605" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="path15609" d="m 568,686.3622 0,2 -6,0 0,2 -4,-3 4,-3 0,2 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="transform-scale-vertical">
+<rect y="682.3622" x="588.0117" height="16" width="16" id="rect15612" style="fill:none" />
+<path sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" id="path15614" d="m 594,688.3622 -2,0 0,6 -2,0 3,4 3,-4 -2,0 z" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect15616" width="6" height="6" x="596" y="687.3622" ry="0" rx="0.9999999" />
+<path style="fill:url(#linearGradient19282)" d="m 594,692.3622 -2,0 0,-6 -2,0 3,-4 3,4 -2,0 z" id="path15618" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
+</g>
<g id="transform-skew-horizontal" inkscape:label="#transform_skew_hor">
-<rect y="712.3622" x="498" height="16" width="16" id="rect4820" style="fill:none;stroke:none" />
-<path id="path4834" transform="translate(0,512.3622)" d="M 504,210 504,212 498,212 498,214 504,214 504,216 508,213 504,210 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect4845" d="M 498,712.3622 498,719.3622 505,719.3622 505,712.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path4855" d="M 498,712.3622 506.5625,722.3622 513.875,722.3622 505.3437,712.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="712.3622" x="498" height="16" width="16" id="rect4820" style="fill:none" />
+<path id="path4834" transform="translate(0,512.3622)" d="M 504,210 504,212 498,212 498,214 504,214 504,216 508,213 504,210 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect4845" d="M 498,712.3622 498,719.3622 505,719.3622 505,712.3622 Z" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path4855" d="M 498,712.3622 506.5625,722.3622 513.875,722.3622 505.3437,712.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
-<g id="transform-skew-vertical" inkscape:label="#g19398" transform="translate(-1)">
-<rect style="fill:none;stroke:none" id="rect19383" width="16" height="16" x="529" y="712.3622" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 539,722.3622 541,722.3622 541,728.3622 543,728.3622 543,722.3622 545,722.3622 542,718.3622 539,722.3622 Z" id="path19386" />
-<path style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 529,721.3622 529,728.3622 536,728.3622 536,721.3622 Z" id="path19388" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 539,712.3622 529,721.3622 529,728.3622 539,720.1434 Z" id="path19390" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<g id="transform-skew-vertical" transform="translate(-1)">
+<rect style="fill:none" id="rect19383" width="16" height="16" x="529" y="712.3622" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 539,722.3622 2,0 0,6 2,0 0,-6 2,0 -3,-4 -3,4 z" id="path19386" />
+<path style="opacity:0.3;fill:url(#linearGradient19282)" d="m 529,721.3622 0,7 7,0 0,-7 z" id="path19388" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path style="fill:url(#linearGradient19282)" d="m 539,712.3622 -10,9 0,7 10,-8.2188 z" id="path19390" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
</g>
<g id="transform-rotate" inkscape:label="#transform_rotate" transform="translate(-1)">
-<rect ry="0" rx="0.4696699" y="712.3752" x="559" height="15.98698" width="16" id="rect10072" style="fill:none;stroke:none" />
-<path id="path18623" d="M 559,712.3752 559,717.3711 C 559.9848,717.3661 561.1151,717.3891 562,717.3711 L 564,717.3711 562.1875,715.5601 562.1875,715.5288 C 562.5583,714.8006 563.4428,714.2486 564.5625,714.2486 566.0554,714.2486 567.125,715.2524 567.125,716.3094 567.0359,716.8508 567.5134,717.4128 568.0625,717.4128 568.6116,717.4128 569.0891,716.8508 569,716.3094 569,714.0554 566.9356,712.3751 564.5625,712.3751 563.0226,712.3751 561.6127,713.0735 560.8125,714.1862 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccscscscc" />
-<path inkscape:connector-curvature="0" id="rect10846" d="M 568.9687,727.5816 A 0.950095,0.9493217 0 0 0 570.0625,728.3622 C 572.3183,728.3622 574,726.2995 574,723.9283 574,722.3897 573.3011,720.9809 572.1875,720.1814 L 574,718.3703 569,718.3703 569,720.1189 569,720.2125 A 0.950095,0.9493217 0 0 0 569,720.6809 L 569,721.3678 569,723.3662 570.8125,721.5552 C 570.8215,721.5592 570.8351,721.5512 570.8438,721.5552 571.5726,721.9257 572.125,722.8094 572.125,723.9282 572.125,725.4199 571.1204,726.4886 570.0625,726.4886 A 0.950095,0.9493217 0 0 0 568.9687,727.5816 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0" rx="0.4696699" y="719.3695" x="560" height="6.994303" width="7" id="rect23174" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect ry="0" rx="0.4696699" y="712.3752" x="559" height="15.98698" width="16" id="rect10072" style="fill:none" />
+<path id="path18623" d="M 559,712.3752 559,717.3711 C 559.9848,717.3661 561.1151,717.3891 562,717.3711 L 564,717.3711 562.1875,715.5601 562.1875,715.5288 C 562.5583,714.8006 563.4428,714.2486 564.5625,714.2486 566.0554,714.2486 567.125,715.2524 567.125,716.3094 567.0359,716.8508 567.5134,717.4128 568.0625,717.4128 568.6116,717.4128 569.0891,716.8508 569,716.3094 569,714.0554 566.9356,712.3751 564.5625,712.3751 563.0226,712.3751 561.6127,713.0735 560.8125,714.1862 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccscscscc" />
+<path inkscape:connector-curvature="0" id="rect10846" d="M 568.9687,727.5816 A 0.950095,0.9493217 0 0 0 570.0625,728.3622 C 572.3183,728.3622 574,726.2995 574,723.9283 574,722.3897 573.3011,720.9809 572.1875,720.1814 L 574,718.3703 569,718.3703 569,720.1189 569,720.2125 A 0.950095,0.9493217 0 0 0 569,720.6809 L 569,721.3678 569,723.3662 570.8125,721.5552 C 570.8215,721.5592 570.8351,721.5512 570.8438,721.5552 571.5726,721.9257 572.125,722.8094 572.125,723.9282 572.125,725.4199 571.1204,726.4886 570.0625,726.4886 A 0.950095,0.9493217 0 0 0 568.9687,727.5816 Z" style="fill:url(#linearGradient19282)" />
+<rect ry="0" rx="0.4696699" y="719.3695" x="560" height="6.994303" width="7" id="rect23174" style="fill:url(#linearGradient19282)" />
</g>
<g id="object-columns" inkscape:label="#clonetiler_per_column">
-<rect rx="0.4696699" y="743.3622" x="498" height="16" width="16" id="rect23222" style="fill:none;stroke:none" ry="0" />
-<rect rx="0" y="745.3622" x="501" height="12" width="2" id="rect23242" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23244" width="2" height="12" x="505" y="745.3622" rx="0" />
-<rect rx="0" y="745.3622" x="509" height="12" width="2" id="rect23246" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect rx="0.4696699" y="743.3622" x="498" height="16" width="16" id="rect23222" style="fill:none" ry="0" />
+<rect rx="0" y="745.3622" x="501" height="12" width="2" id="rect23242" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect23244" width="2" height="12" x="505" y="745.3622" rx="0" />
+<rect rx="0" y="745.3622" x="509" height="12" width="2" id="rect23246" style="fill:url(#linearGradient19282)" />
</g>
<g id="object-rows" transform="rotate(90,536,751.3622)" inkscape:label="#g23256">
-<rect ry="0" style="fill:none;stroke:none" id="rect23248" width="16" height="16" x="528" y="743.3622" rx="0.4696699" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23250" width="2" height="12" x="531" y="745.3622" rx="0" />
-<rect rx="0" y="745.3622" x="535" height="12" width="2" id="rect23252" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23254" width="2" height="12" x="539" y="745.3622" rx="0" />
+<rect ry="0" style="fill:none" id="rect23248" width="16" height="16" x="528" y="743.3622" rx="0.4696699" />
+<rect style="fill:url(#linearGradient19282)" id="rect23250" width="2" height="12" x="531" y="745.3622" rx="0" />
+<rect rx="0" y="745.3622" x="535" height="12" width="2" id="rect23252" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect23254" width="2" height="12" x="539" y="745.3622" rx="0" />
</g>
<g id="clonetiler_per_row_shift">
-<rect transform="rotate(90)" rx="0.4696699" y="-574" x="743.3622" height="16" width="16" id="rect23289" style="fill:none;stroke:none" ry="0" />
-<rect transform="rotate(90)" rx="0" y="-570" x="746.3622" height="12" width="2" id="rect23291" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23293" width="2" height="12" x="750.3622" y="-572" rx="0" />
-<rect transform="rotate(90)" rx="0" y="-574" x="754.3622" height="12" width="2" id="rect23295" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="rotate(90)" rx="0.4696699" y="-574" x="743.3622" height="16" width="16" id="rect23289" style="fill:none" ry="0" />
+<rect transform="rotate(90)" rx="0" y="-570" x="746.3622" height="12" width="2" id="rect23291" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect23293" width="2" height="12" x="750.3622" y="-572" rx="0" />
+<rect transform="rotate(90)" rx="0" y="-574" x="754.3622" height="12" width="2" id="rect23295" style="fill:url(#linearGradient19282)" />
</g>
<g id="clonetiler_per_row_scale">
-<rect transform="rotate(90)" rx="0.4696699" y="-604" x="743.3622" height="16" width="16" id="rect23328" style="fill:none;stroke:none" ry="0" />
-<rect transform="rotate(90)" rx="0" y="-602" x="744.3622" height="12" width="4.000002" id="rect23330" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23332" width="2.999997" height="12" x="750.3622" y="-602" rx="0" />
-<rect transform="rotate(90)" rx="0" y="-602" x="755.3622" height="12" width="2" id="rect23334" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="rotate(90)" rx="0.4696699" y="-604" x="743.3622" height="16" width="16" id="rect23328" style="fill:none" ry="0" />
+<rect transform="rotate(90)" rx="0" y="-602" x="744.3622" height="12" width="4.000002" id="rect23330" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect23332" width="2.999997" height="12" x="750.3622" y="-602" rx="0" />
+<rect transform="rotate(90)" rx="0" y="-602" x="755.3622" height="12" width="2" id="rect23334" style="fill:url(#linearGradient19282)" />
</g>
<g id="clonetiler_per_row_rotation">
-<rect ry="0" style="fill:none;stroke:none" id="rect23348" width="16" height="16" x="743.3622" y="-634" rx="0.4696699" transform="rotate(90)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23350" width="2" height="12" x="743.3622" y="-630" rx="0" transform="rotate(90)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23362" width="2" height="12" x="181.7777" y="-967.5231" rx="0" transform="rotate(129.689)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 627.9687,747.1509 A 0.950095,0.9493217 0 0 1 629.0625,746.3703 C 631.3183,746.3703 633,748.4331 633,750.8042 633,752.3428 632.3011,753.7516 631.1875,754.5512 L 633,756.3622 628,756.3622 628,754.6136 628,754.52 A 0.950095,0.9493217 0 0 1 628,754.0516 L 628,753.3647 628,751.3663 629.8125,753.1773 C 629.8215,753.1733 629.8351,753.1813 629.8438,753.1773 630.5726,752.8069 631.125,751.9231 631.125,750.8043 631.125,749.3126 630.1204,748.2439 629.0625,748.2439 A 0.950095,0.9493217 0 0 1 627.9687,747.151 Z" id="path23370" inkscape:connector-curvature="0" />
+<rect ry="0" style="fill:none" id="rect23348" width="16" height="16" x="743.3622" y="-634" rx="0.4696699" transform="rotate(90)" />
+<rect style="fill:url(#linearGradient19282)" id="rect23350" width="2" height="12" x="743.3622" y="-630" rx="0" transform="rotate(90)" />
+<rect style="fill:url(#linearGradient19282)" id="rect23362" width="2" height="12" x="181.7777" y="-967.5231" rx="0" transform="rotate(129.689)" />
+<path style="fill:url(#linearGradient19282)" d="M 627.9687,747.1509 A 0.950095,0.9493217 0 0 1 629.0625,746.3703 C 631.3183,746.3703 633,748.4331 633,750.8042 633,752.3428 632.3011,753.7516 631.1875,754.5512 L 633,756.3622 628,756.3622 628,754.6136 628,754.52 A 0.950095,0.9493217 0 0 1 628,754.0516 L 628,753.3647 628,751.3663 629.8125,753.1773 C 629.8215,753.1733 629.8351,753.1813 629.8438,753.1773 630.5726,752.8069 631.125,751.9231 631.125,750.8043 631.125,749.3126 630.1204,748.2439 629.0625,748.2439 A 0.950095,0.9493217 0 0 1 627.9687,747.151 Z" id="path23370" inkscape:connector-curvature="0" />
</g>
<g id="clonetiler_per_row_opacity">
-<rect transform="rotate(90)" rx="0.4696699" y="-664" x="743.3622" height="16" width="16" id="rect23405" style="fill:none;stroke:none" ry="0" />
-<rect transform="rotate(90)" rx="0" y="-662" x="746.3622" height="12" width="2" id="rect23407" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23409" width="2" height="12" x="750.3622" y="-662" rx="0" />
-<rect transform="rotate(90)" rx="0" y="-661.8144" x="754.5478" height="11.62883" width="1.628818" id="rect23411" style="opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.3711458;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+<rect transform="rotate(90)" rx="0.4696699" y="-664" x="743.3622" height="16" width="16" id="rect23405" style="fill:none" ry="0" />
+<rect transform="rotate(90)" rx="0" y="-662" x="746.3622" height="12" width="2" id="rect23407" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="opacity:0.3;fill:url(#linearGradient19282)" id="rect23409" width="2" height="12" x="750.3622" y="-662" rx="0" />
+<rect transform="rotate(90)" rx="0" y="-661.8144" x="754.5478" height="11.62883" width="1.628818" id="rect23411" style="opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.3711458" />
</g>
<g id="clonetiler_per_row_color">
-<rect ry="0" style="fill:none;stroke:none" id="rect23444" width="16" height="16" x="743.3622" y="-694" rx="0.4696699" transform="rotate(90)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect23446" width="2" height="12" x="746.3622" y="-692" rx="0" transform="rotate(90)" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect23490" transform="translate(0,512.3622)" d="M 680,238 680,240 688.9186,240 690.4811,238 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect23492" transform="translate(0,512.3622)" d="M 680,242 680,244 686,244 687.5153,242.0373 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<g id="g5911" transform="matrix(0.8746234,0,0,0.8917833,709.929,733.917)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none">
-<path inkscape:connector-curvature="0" d="M -28.5,27.5711 C -25.38886,27.5722 -25.70641,24.24774 -24.19583,23.32212 -22.44536,22.2495 -20.91134,23.5786 -20.60508,24.67241 -20.21863,26.0526 -20.9429,27.1811 -21.9054,27.79136 -23.75176,28.96204 -28.20544,28.69007 -28.5,27.5711 Z" id="path5913" sodipodi:nodetypes="cssac" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect ry="0" style="fill:none" id="rect23444" width="16" height="16" x="743.3622" y="-694" rx="0.4696699" transform="rotate(90)" />
+<rect style="fill:url(#linearGradient19282)" id="rect23446" width="2" height="12" x="746.3622" y="-692" rx="0" transform="rotate(90)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect23490" transform="translate(0,512.3622)" d="M 680,238 680,240 688.9186,240 690.4811,238 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="rect23492" transform="translate(0,512.3622)" d="M 680,242 680,244 686,244 687.5153,242.0373 Z" style="fill:url(#linearGradient19282)" />
+<g id="g5911" transform="matrix(0.8746234,0,0,0.8917833,709.929,733.917)" style="fill:url(#linearGradient19282)">
+<path inkscape:connector-curvature="0" d="M -28.5,27.5711 C -25.38886,27.5722 -25.70641,24.24774 -24.19583,23.32212 -22.44536,22.2495 -20.91134,23.5786 -20.60508,24.67241 -20.21863,26.0526 -20.9429,27.1811 -21.9054,27.79136 -23.75176,28.96204 -28.20544,28.69007 -28.5,27.5711 Z" id="path5913" sodipodi:nodetypes="cssac" />
</g>
-<path inkscape:connector-curvature="0" id="path5915" d="M 694,748.7684 C 692.9861,749.8297 691.9112,751.106 690.25,753.3934 691.2536,753.4311 692.1151,754.0821 692.5625,755.0184 693.0945,754.4449 693.5721,753.8765 694,753.3622 L 694,748.7684 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<path inkscape:connector-curvature="0" id="path5915" d="M 694,748.7684 C 692.9861,749.8297 691.9112,751.106 690.25,753.3934 691.2536,753.4311 692.1151,754.0821 692.5625,755.0184 693.0945,754.4449 693.5721,753.8765 694,753.3622 L 694,748.7684 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="clonetiler_per_column_shift">
<g transform="matrix(0,1,1,0,-185.3622,214.3622)" id="g27407">
-<rect transform="rotate(90)" rx="0.4696699" y="-574" x="743.3622" height="16" width="16" id="rect27409" style="fill:none;stroke:none" ry="0" />
-<rect transform="rotate(90)" rx="0" y="-570" x="746.3622" height="12" width="2" id="rect27411" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect27413" width="2" height="12" x="750.3622" y="-572" rx="0" />
-<rect transform="rotate(90)" rx="0" y="-574" x="754.3622" height="12" width="2" id="rect27415" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="rotate(90)" rx="0.4696699" y="-574" x="743.3622" height="16" width="16" id="rect27409" style="fill:none" ry="0" />
+<rect transform="rotate(90)" rx="0" y="-570" x="746.3622" height="12" width="2" id="rect27411" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect27413" width="2" height="12" x="750.3622" y="-572" rx="0" />
+<rect transform="rotate(90)" rx="0" y="-574" x="754.3622" height="12" width="2" id="rect27415" style="fill:url(#linearGradient19282)" />
</g>
</g>
<g id="clonetiler_per_column_scale">
<g transform="rotate(-90,610.5,765.8622)" id="g27424">
-<rect transform="rotate(90)" rx="0.4696699" y="-604" x="743.3622" height="16" width="16" id="rect27426" style="fill:none;stroke:none" ry="0" />
-<rect transform="rotate(90)" rx="0" y="-602" x="744.3622" height="12" width="4.000002" id="rect27428" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect27430" width="2.999997" height="12" x="750.3622" y="-602" rx="0" />
-<rect transform="rotate(90)" rx="0" y="-602" x="755.3622" height="12" width="2" id="rect27432" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="rotate(90)" rx="0.4696699" y="-604" x="743.3622" height="16" width="16" id="rect27426" style="fill:none" ry="0" />
+<rect transform="rotate(90)" rx="0" y="-602" x="744.3622" height="12" width="4.000002" id="rect27428" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect27430" width="2.999997" height="12" x="750.3622" y="-602" rx="0" />
+<rect transform="rotate(90)" rx="0" y="-602" x="755.3622" height="12" width="2" id="rect27432" style="fill:url(#linearGradient19282)" />
</g>
</g>
<g id="clonetiler_per_column_rotation">
<g transform="rotate(-90,640.4659,765.8622)" id="g27441">
-<rect ry="0" style="fill:none;stroke:none" id="rect27443" width="16" height="16" x="743.3622" y="-634" rx="0.4696699" transform="rotate(90)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect27445" width="2" height="12" x="743.3622" y="-630" rx="0" transform="rotate(90)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect27447" width="2" height="12" x="181.7777" y="-967.5231" rx="0" transform="rotate(129.689)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 627.9687,747.1509 A 0.950095,0.9493217 0 0 1 629.0625,746.3703 C 631.3183,746.3703 633,748.4331 633,750.8042 633,752.3428 632.3011,753.7516 631.1875,754.5512 L 633,756.3622 628,756.3622 628,754.6136 628,754.52 A 0.950095,0.9493217 0 0 1 628,754.0516 L 628,753.3647 628,751.3663 629.8125,753.1773 C 629.8215,753.1733 629.8351,753.1813 629.8438,753.1773 630.5726,752.8069 631.125,751.9231 631.125,750.8043 631.125,749.3126 630.1204,748.2439 629.0625,748.2439 A 0.950095,0.9493217 0 0 1 627.9687,747.151 Z" id="path27449" inkscape:connector-curvature="0" />
+<rect ry="0" style="fill:none" id="rect27443" width="16" height="16" x="743.3622" y="-634" rx="0.4696699" transform="rotate(90)" />
+<rect style="fill:url(#linearGradient19282)" id="rect27445" width="2" height="12" x="743.3622" y="-630" rx="0" transform="rotate(90)" />
+<rect style="fill:url(#linearGradient19282)" id="rect27447" width="2" height="12" x="181.7777" y="-967.5231" rx="0" transform="rotate(129.689)" />
+<path style="fill:url(#linearGradient19282)" d="M 627.9687,747.1509 A 0.950095,0.9493217 0 0 1 629.0625,746.3703 C 631.3183,746.3703 633,748.4331 633,750.8042 633,752.3428 632.3011,753.7516 631.1875,754.5512 L 633,756.3622 628,756.3622 628,754.6136 628,754.52 A 0.950095,0.9493217 0 0 1 628,754.0516 L 628,753.3647 628,751.3663 629.8125,753.1773 C 629.8215,753.1733 629.8351,753.1813 629.8438,753.1773 630.5726,752.8069 631.125,751.9231 631.125,750.8043 631.125,749.3126 630.1204,748.2439 629.0625,748.2439 A 0.950095,0.9493217 0 0 1 627.9687,747.151 Z" id="path27449" inkscape:connector-curvature="0" />
</g>
</g>
<g id="clonetiler_per_column_opacity">
<g transform="rotate(-90,670.5,765.8622)" id="g27477">
-<rect transform="rotate(90)" rx="0.4696699" y="-664" x="743.3622" height="16" width="16" id="rect27479" style="fill:none;stroke:none" ry="0" />
-<rect transform="rotate(90)" rx="0" y="-662" x="746.3622" height="12" width="2" id="rect27481" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect27483" width="2" height="12" x="750.3622" y="-662" rx="0" />
-<rect transform="rotate(90)" rx="0" y="-661.8144" x="754.5478" height="11.62883" width="1.628818" id="rect27485" style="opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.3711458;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+<rect transform="rotate(90)" rx="0.4696699" y="-664" x="743.3622" height="16" width="16" id="rect27479" style="fill:none" ry="0" />
+<rect transform="rotate(90)" rx="0" y="-662" x="746.3622" height="12" width="2" id="rect27481" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="opacity:0.3;fill:url(#linearGradient19282)" id="rect27483" width="2" height="12" x="750.3622" y="-662" rx="0" />
+<rect transform="rotate(90)" rx="0" y="-661.8144" x="754.5478" height="11.62883" width="1.628818" id="rect27485" style="opacity:0.3;fill:none;stroke:url(#linearGradient19282);stroke-width:0.3711458" />
</g>
</g>
<g id="clonetiler_per_column_color">
-<rect transform="rotate(90)" rx="0.4696699" y="-694" x="772.3622" height="16" width="16" id="rect27515" style="fill:none;stroke:none" ry="0" />
-<rect transform="scale(-1)" rx="0" y="-786.3622" x="-682" height="12" width="2" id="rect27517" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 684,774.3622 686,774.3622 686,784.3622 684,786.3622 Z" id="path27519" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 688,774.3622 690,774.3622 690,780.3622 688,782.3622 Z" id="path27521" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<g style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="matrix(0.8746234,0,0,0.8917833,709.929,762.917)" id="g27523">
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cssac" id="path27525" d="M -28.5,27.5711 C -25.38886,27.5722 -25.70641,24.24774 -24.19583,23.32212 -22.44536,22.2495 -20.91134,23.5786 -20.60508,24.67241 -20.21863,26.0526 -20.9429,27.1811 -21.9054,27.79136 -23.75176,28.96204 -28.20544,28.69007 -28.5,27.5711 Z" inkscape:connector-curvature="0" />
+<rect transform="rotate(90)" rx="0.4696699" y="-694" x="772.3622" height="16" width="16" id="rect27515" style="fill:none" ry="0" />
+<rect transform="scale(-1)" rx="0" y="-786.3622" x="-682" height="12" width="2" id="rect27517" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 684,774.3622 686,774.3622 686,784.3622 684,786.3622 Z" id="path27519" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<path style="fill:url(#linearGradient19282)" d="M 688,774.3622 690,774.3622 690,780.3622 688,782.3622 Z" id="path27521" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<g style="fill:url(#linearGradient19282)" transform="matrix(0.8746234,0,0,0.8917833,709.929,762.917)" id="g27523">
+<path sodipodi:nodetypes="cssac" id="path27525" d="M -28.5,27.5711 C -25.38886,27.5722 -25.70641,24.24774 -24.19583,23.32212 -22.44536,22.2495 -20.91134,23.5786 -20.60508,24.67241 -20.21863,26.0526 -20.9429,27.1811 -21.9054,27.79136 -23.75176,28.96204 -28.20544,28.69007 -28.5,27.5711 Z" inkscape:connector-curvature="0" />
</g>
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 694,777.7684 C 692.9861,778.8297 691.9112,780.106 690.25,782.3934 691.2536,782.4311 692.1151,783.0821 692.5625,784.0184 693.0945,783.4449 693.5721,782.8765 694,782.3622 L 694,777.7684 Z" id="path27527" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 694,777.7684 C 692.9861,778.8297 691.9112,780.106 690.25,782.3934 691.2536,782.4311 692.1151,783.0821 692.5625,784.0184 693.0945,783.4449 693.5721,782.8765 694,782.3622 L 694,777.7684 Z" id="path27527" inkscape:connector-curvature="0" />
</g>
<g id="object-visible" inkscape:label="#visible">
-<rect y="961.3622" x="165" height="16" width="16" id="rect11899" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" id="path11920" d="M 173,966.3622 C 171.3431,966.3622 170,967.7053 170,969.3622 170,971.019 171.3431,972.3622 173,972.3622 174.6568,972.3622 176,971.019 176,969.3622 176,967.7053 174.6568,966.3622 173,966.3622 Z M 172.5069,967.1878 C 172.881,967.1878 173.19,967.4986 173.19,967.8857 173.19,968.2729 172.881,968.5985 172.5069,968.5985 172.1328,968.5985 171.8239,968.2729 171.8239,967.8857 171.8239,967.4986 172.1328,967.1878 172.5069,967.1878 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="ssssssssss" />
-<path sodipodi:nodetypes="scscsscscs" inkscape:connector-curvature="0" id="path11928" d="M 173,963.3622 C 168.5817,963.3622 165,969.3622 165,969.3622 165,969.3622 168.5817,975.3622 173,975.3622 177.4183,975.3622 181,969.3622 181,969.3622 181,969.3622 177.4183,963.3622 173,963.3622 Z M 173,965.3622 C 176.866,965.3622 179,969.3622 179,969.3622 179,969.3622 176.866,973.3622 173,973.3622 169.134,973.3622 167,969.3622 167,969.3622 167,969.3622 169.134,965.3622 173,965.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient29998);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 167,967.2997 166,966.2997" id="path8543-5" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path8545-3" d="M 179,967.2997 180,966.2997" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient29996);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 169,966.2997 167,964.2997" id="path8547-1" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
-<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8572-7" d="M 170.375,964.8622 169,962.4872" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient29994);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 172.4375,964.3622 171.75,961.3622" id="path8574-8" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
-<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8578-8" d="M 177.4375,966.2997 179,964.2997" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 176.0625,964.8622 177.3933,962.7081" id="path8580-4" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
-<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8582-8" d="M 174,964.3622 174.8643,961.3622" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
+<rect y="961.3622" x="165" height="16" width="16" id="rect11899" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path11920" d="M 173,966.3622 C 171.3431,966.3622 170,967.7053 170,969.3622 170,971.019 171.3431,972.3622 173,972.3622 174.6568,972.3622 176,971.019 176,969.3622 176,967.7053 174.6568,966.3622 173,966.3622 Z M 172.5069,967.1878 C 172.881,967.1878 173.19,967.4986 173.19,967.8857 173.19,968.2729 172.881,968.5985 172.5069,968.5985 172.1328,968.5985 171.8239,968.2729 171.8239,967.8857 171.8239,967.4986 172.1328,967.1878 172.5069,967.1878 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="ssssssssss" />
+<path sodipodi:nodetypes="scscsscscs" inkscape:connector-curvature="0" id="path11928" d="M 173,963.3622 C 168.5817,963.3622 165,969.3622 165,969.3622 165,969.3622 168.5817,975.3622 173,975.3622 177.4183,975.3622 181,969.3622 181,969.3622 181,969.3622 177.4183,963.3622 173,963.3622 Z M 173,965.3622 C 176.866,965.3622 179,969.3622 179,969.3622 179,969.3622 176.866,973.3622 173,973.3622 169.134,973.3622 167,969.3622 167,969.3622 167,969.3622 169.134,965.3622 173,965.3622 Z" style="fill:url(#linearGradient19282)" />
+<path style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linecap:round" d="M 167,967.2997 166,966.2997" id="path8543-5" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path8545-3" d="M 179,967.2997 180,966.2997" style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linecap:round" />
+<path style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linecap:round" d="M 169,966.2997 167,964.2997" id="path8547-1" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
+<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8572-7" d="M 170.375,964.8622 169,962.4872" style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linecap:round" />
+<path style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linecap:round" d="M 172.4375,964.3622 171.75,961.3622" id="path8574-8" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
+<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8578-8" d="M 177.4375,966.2997 179,964.2997" style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linecap:round" />
+<path style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linecap:round" d="M 176.0625,964.8622 177.3933,962.7081" id="path8580-4" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
+<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8582-8" d="M 174,964.3622 174.8643,961.3622" style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linecap:round" />
</g>
<g id="object-hidden" inkscape:label="#hidden">
-<rect style="fill:none;stroke:none" id="rect31330" width="16" height="16" x="165" y="981.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 165,986.3622 C 165,986.3622 168.5817,992.3622 173,992.3622 177.4183,992.3622 181,986.3622 181,986.3622 L 179,986.3622 C 179,986.3622 176.866,990.3622 173,990.3622 169.134,990.3622 167,986.3622 167,986.3622 Z" id="path31334" inkscape:connector-curvature="0" sodipodi:nodetypes="csccscc" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3b3c39;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 167,476 166,477" id="path8543" inkscape:connector-curvature="0" transform="translate(0,512.3622)" />
-<path inkscape:connector-curvature="0" id="path8545" d="M 179,988.3622 180,989.3622" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3b3c39;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3b3c39;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 169,477 167,479" id="path8547" inkscape:connector-curvature="0" transform="translate(0,512.3622)" sodipodi:nodetypes="cc" />
-<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8572" d="M 170.375,990.7997 169,993.1747" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3b3c39;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3b3c39;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 172.4375,991.2997 171.75,994.2997" id="path8574" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
-<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8578" d="M 177.4375,989.3622 179,991.3622" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3b3c39;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3b3c39;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 176.0625,990.7997 177.3933,992.9537" id="path8580" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
-<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8582" d="M 174,991.2997 174.8643,994.2997" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#3b3c39;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker:none;enable-background:accumulate" />
+<rect style="fill:none" id="rect31330" width="16" height="16" x="165" y="981.3622" />
+<path style="fill:url(#linearGradient19282)" d="M 165,986.3622 C 165,986.3622 168.5817,992.3622 173,992.3622 177.4183,992.3622 181,986.3622 181,986.3622 L 179,986.3622 C 179,986.3622 176.866,990.3622 173,990.3622 169.134,990.3622 167,986.3622 167,986.3622 Z" id="path31334" inkscape:connector-curvature="0" sodipodi:nodetypes="csccscc" />
+<path style="color:#000000;fill:#3b3c39;stroke:url(#linearGradient19282);stroke-linecap:round" d="M 167,476 166,477" id="path8543" inkscape:connector-curvature="0" transform="translate(0,512.3622)" />
+<path inkscape:connector-curvature="0" id="path8545" d="M 179,988.3622 180,989.3622" style="color:#000000;fill:#3b3c39;stroke:url(#linearGradient19282);stroke-linecap:round" />
+<path style="color:#000000;fill:#3b3c39;stroke:url(#linearGradient19282);stroke-linecap:round" d="M 169,477 167,479" id="path8547" inkscape:connector-curvature="0" transform="translate(0,512.3622)" sodipodi:nodetypes="cc" />
+<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8572" d="M 170.375,990.7997 169,993.1747" style="color:#000000;fill:#3b3c39;stroke:url(#linearGradient19282);stroke-linecap:round" />
+<path style="color:#000000;fill:#3b3c39;stroke:url(#linearGradient19282);stroke-linecap:round" d="M 172.4375,991.2997 171.75,994.2997" id="path8574" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
+<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8578" d="M 177.4375,989.3622 179,991.3622" style="color:#000000;fill:#3b3c39;stroke:url(#linearGradient19282);stroke-linecap:round" />
+<path style="color:#000000;fill:#3b3c39;stroke:url(#linearGradient19282);stroke-linecap:round" d="M 176.0625,990.7997 177.3933,992.9537" id="path8580" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" />
+<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path8582" d="M 174,991.2997 174.8643,994.2997" style="color:#000000;fill:#3b3c39;stroke:url(#linearGradient19282);stroke-linecap:round" />
</g>
<g id="object-locked" inkscape:label="#width_height_lock">
-<rect style="fill:none;stroke:none" id="rect31383" width="16" height="16" x="195" y="981.3622" />
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 197,988.3622 197,996.3622 207,996.3622 207,988.3622 Z" id="path31387" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" id="rect31389" d="M 198,986.3622 198,988.3622 200,988.3622 200,986.3622 C 200,985.2542 200.892,984.3622 202,984.3622 203.108,984.3622 204,985.2542 204,986.3622 L 204,988.3622 206,988.3622 206,986.3622 C 206,983.9814 204.3975,982.3622 202,982.3622 199.6025,982.3622 198.0697,984.0529 198,986.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccsssccszc" />
+<rect style="fill:none" id="rect31383" width="16" height="16" x="195" y="981.3622" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="M 197,988.3622 197,996.3622 207,996.3622 207,988.3622 Z" id="path31387" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" id="rect31389" d="M 198,986.3622 198,988.3622 200,988.3622 200,986.3622 C 200,985.2542 200.892,984.3622 202,984.3622 203.108,984.3622 204,985.2542 204,986.3622 L 204,988.3622 206,988.3622 206,986.3622 C 206,983.9814 204.3975,982.3622 202,982.3622 199.6025,982.3622 198.0697,984.0529 198,986.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccsssccszc" />
</g>
<g id="object-unlocked" inkscape:label="#lock_unlocked">
-<rect transform="translate(0,512.3622)" y="449" x="195" height="16" width="16" id="rect31373" style="fill:none;fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="rect31375" d="M 197,969.3622 197,977.3622 207,977.3622 207,969.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="ccccc" />
-<path sodipodi:nodetypes="cccsssccszc" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 204,967.4064 204,969.4064 206,969.4064 206,967.4064 C 206,966.2984 206.3295,965.4064 207.4375,965.4064 208.5455,965.4064 209,966.2984 209,967.4064 L 209,969.4064 211,969.4064 211,967.4064 C 211,965.0256 209.835,963.4064 207.4375,963.4064 205.04,963.4064 204.0697,965.0971 204,967.4064 Z" id="path11795" inkscape:connector-curvature="0" />
-</g>
-<g id="g31444" inkscape:label="#zoom_selection" transform="translate(127,393.5)">
-<g transform="translate(0,20)" id="g31446" inkscape:label="#g11150">
-<g transform="translate(0,19.96825)" id="g31448">
-<g transform="matrix(1,0,0,0.9980195,0,21.07621)" id="g31450" />
-</g>
-</g>
+<rect transform="translate(0,512.3622)" y="449" x="195" height="16" width="16" id="rect31373" style="fill:none" />
+<path inkscape:connector-curvature="0" id="rect31375" d="M 197,969.3622 197,977.3622 207,977.3622 207,969.3622 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="ccccc" />
+<path sodipodi:nodetypes="cccsssccszc" style="color:#000000;fill:url(#linearGradient19282)" d="M 204,967.4064 204,969.4064 206,969.4064 206,967.4064 C 206,966.2984 206.3295,965.4064 207.4375,965.4064 208.5455,965.4064 209,966.2984 209,967.4064 L 209,969.4064 211,969.4064 211,967.4064 C 211,965.0256 209.835,963.4064 207.4375,963.4064 205.04,963.4064 204.0697,965.0971 204,967.4064 Z" id="path11795" inkscape:connector-curvature="0" />
</g>
<g id="sticky_zoom">
-<g id="g31454" transform="matrix(1.000187,0,0,0.9892659,149.6102,419.8862)">
-<g id="g31456" transform="translate(0,20)">
-<g id="g31458" />
-<g id="g31462">
-<path sodipodi:nodetypes="sssccccccsssssss" inkscape:connector-curvature="0" id="path31464" transform="matrix(0.9998126,0,0,1.010851,-149.5822,73.47943)" d="M 231.5,450 C 228.4576,450 226,452.4892 226,455.5312 226,458.5733 228.4576,461 231.5,461 232.5822,461 233.5862,460.6952 234.4375,460.1562 L 237.2077,462.7429 C 237.5882,463.1225 238.1766,463.0969 238.5515,462.7116 L 238.739,462.5241 C 239.1138,462.1389 239.1194,461.5286 238.739,461.1491 L 236.0312,458.625 C 236.6477,457.7355 237.0312,456.6954 237.0312,455.5312 237.0312,452.4892 234.5424,450 231.5,450 Z M 231.5313,452.0625 C 233.473,452.0625 235.0313,453.6184 235.0313,455.5312 235.0313,457.4441 233.473,459 231.5313,459 229.5896,459 228,457.4441 228,455.5312 228,453.6184 229.5896,452.0625 231.5313,452.0625 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-</g>
-</g>
-<rect transform="translate(0,512.3622)" y="449" x="225" height="16" width="16" id="rect31515" style="fill:none;fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="449" x="225" height="16" width="16" id="rect31515" style="fill:none" />
+<path style="fill:url(#linearGradient19282)" d="m 231.5,962.3622 c -3.0424,0 -5.5,2.4892 -5.5,5.5312 0,3.0421 2.4576,5.4688 5.5,5.4688 1.0822,0 2.0862,-0.3048 2.9375,-0.8438 l 2.7702,2.5867 c 0.3805,0.3796 0.9689,0.354 1.3438,-0.031 l 0.1875,-0.1875 c 0.3748,-0.3852 0.3804,-0.9955 0,-1.375 l -2.7078,-2.5241 c 0.6165,-0.8895 1,-1.9296 1,-3.0938 0,-3.042 -2.4888,-5.5312 -5.5312,-5.5312 z m 0.031,2.0625 c 1.9417,0 3.5,1.5559 3.5,3.4687 0,1.9129 -1.5583,3.4688 -3.5,3.4688 -1.9417,0 -3.5313,-1.5559 -3.5313,-3.4688 0,-1.9128 1.5896,-3.4687 3.5313,-3.4687 z" id="path31464" inkscape:connector-curvature="0" sodipodi:nodetypes="sssccccccsssssss" />
</g>
<g id="xml-element-new" inkscape:label="#add_xml_element_node">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect16823" width="24" height="24" x="1044" y="557.3622" />
-<rect transform="translate(0,512.3622)" y="45" x="1044" height="24" width="1" id="rect16829" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="45" x="1044" height="1" width="24" id="rect17599" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="68" x="1044" height="1" width="24" id="rect17601" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="45" x="1067" height="24" width="1" id="rect17603" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 1054,563.3622 1053.99,568.3782 1054.995,568.3622 1054.995,563.3622 Z" id="path5405" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccsccscsc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 1059.467,563.3749 C 1058.731,563.2972 1057.99,563.5901 1057.472,563.8635 L 1057.877,564.749 C 1058.284,564.5339 1058.931,564.3077 1059.351,564.352 1059.561,564.3742 1059.718,564.4531 1059.814,564.5658 1059.91,564.6784 1059.987,564.861 1059.987,565.2681 L 1060,568.3622 1061,568.3622 1061,565.5353 C 1061,564.9653 1061,564.2691 1060.479,563.894 1060.199,563.5639 1059.836,563.4138 1059.467,563.3749 Z" id="path5407" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccccccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 1061.972,559.3753 1061.972,565.4408 1062,566.3622 C 1061.912,568.8648 1063.447,568.3033 1065.001,568.3622 L 1065.001,567.3252 1064,567.3622 C 1063.967,567.3187 1062.956,567.7599 1063,566.3622 L 1063.033,559.3753 1061.974,559.3753 Z" id="path5410" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="cccccsccsccc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 1056.643,563.3749 C 1055.96,563.2972 1055.273,563.5901 1054.793,563.8635 L 1055.168,564.749 C 1055.546,564.5339 1056.146,564.3077 1056.536,564.352 1056.73,564.3742 1056.876,564.4531 1056.965,564.5658 1057.054,564.6784 1056.981,565.1286 1057,565.5353 L 1057,568.3622 1058,568.3622 1058,565.5353 C 1058,564.9653 1058.156,564.1807 1057.581,563.894 1057.321,563.5639 1056.984,563.4138 1056.643,563.3749 Z" id="path5412" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 1048.604,563.3622 1048,563.9666 1052.396,568.3622 1053,567.7578 1048.604,563.3622 Z" id="path5414" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 1052.396,563.3622 1048,567.7545 1048.605,568.3585 1053,563.9661 1052.396,563.3622 Z" id="path5416" inkscape:connector-curvature="0" />
-<g style="stroke:url(#linearGradient19282);stroke-opacity:1" transform="matrix(1.146412,0,0,0.920121,11.01395,555.0575)" id="g5719">
-<path inkscape:connector-curvature="0" id="path5418" d="M 906.5,17.78125 906.1562,18.15625 903.1562,21.15625 902.7812,21.5 903.1562,21.84375 906.1562,24.84375 906.5,25.21875 907.2187,24.5 906.8437,24.15625 904.1875,21.5 906.8437,18.84375 907.2187,18.5 906.5,17.78125 Z M 909.5,17.78125 908.7812,18.5 909.1562,18.84375 911.8125,21.5 909.1562,24.15625 908.7812,24.5 909.5,25.21875 909.8437,24.84375 912.8437,21.84375 913.2187,21.5 912.8437,21.15625 909.8437,18.15625 909.5,17.78125 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" />
-</g>
-<path sodipodi:nodetypes="cccccccccccccccccc" inkscape:connector-curvature="0" id="rect17714" d="M 1059,572.3622 1059,580.3622 1067,580.3622 1067,572.3622 Z M 1062,573.3622 1064,573.3622 1064,575.3622 1066,575.3622 1066,577.3622 1064,577.3622 1064,579.3622 1062,579.3622 1062,577.3622 1060,577.3622 1060,575.3622 1062,575.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="color:#000000;fill:none" id="rect16823" width="24" height="24" x="1044" y="557.3622" />
+<rect transform="translate(0,512.3622)" y="45" x="1044" height="24" width="1" id="rect16829" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="45" x="1044" height="1" width="24" id="rect17599" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="68" x="1044" height="1" width="24" id="rect17601" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="45" x="1067" height="24" width="1" id="rect17603" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 1054,563.3622 1053.99,568.3782 1054.995,568.3622 1054.995,563.3622 Z" id="path5405" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="cccccsccscsc" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 1059.467,563.3749 C 1058.731,563.2972 1057.99,563.5901 1057.472,563.8635 L 1057.877,564.749 C 1058.284,564.5339 1058.931,564.3077 1059.351,564.352 1059.561,564.3742 1059.718,564.4531 1059.814,564.5658 1059.91,564.6784 1059.987,564.861 1059.987,565.2681 L 1060,568.3622 1061,568.3622 1061,565.5353 C 1061,564.9653 1061,564.2691 1060.479,563.894 1060.199,563.5639 1059.836,563.4138 1059.467,563.3749 Z" id="path5407" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="cccccccccc" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 1061.972,559.3753 1061.972,565.4408 1062,566.3622 C 1061.912,568.8648 1063.447,568.3033 1065.001,568.3622 L 1065.001,567.3252 1064,567.3622 C 1063.967,567.3187 1062.956,567.7599 1063,566.3622 L 1063.033,559.3753 1061.974,559.3753 Z" id="path5410" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="cccccsccsccc" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 1056.643,563.3749 C 1055.96,563.2972 1055.273,563.5901 1054.793,563.8635 L 1055.168,564.749 C 1055.546,564.5339 1056.146,564.3077 1056.536,564.352 1056.73,564.3742 1056.876,564.4531 1056.965,564.5658 1057.054,564.6784 1056.981,565.1286 1057,565.5353 L 1057,568.3622 1058,568.3622 1058,565.5353 C 1058,564.9653 1058.156,564.1807 1057.581,563.894 1057.321,563.5639 1056.984,563.4138 1056.643,563.3749 Z" id="path5412" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 1048.604,563.3622 1048,563.9666 1052.396,568.3622 1053,567.7578 1048.604,563.3622 Z" id="path5414" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" d="M 1052.396,563.3622 1048,567.7545 1048.605,568.3585 1053,563.9661 1052.396,563.3622 Z" id="path5416" inkscape:connector-curvature="0" />
+<g style="stroke:url(#linearGradient19282)" transform="matrix(1.146412,0,0,0.920121,11.01395,555.0575)" id="g5719">
+<path inkscape:connector-curvature="0" id="path5418" d="M 906.5,17.78125 906.1562,18.15625 903.1562,21.15625 902.7812,21.5 903.1562,21.84375 906.1562,24.84375 906.5,25.21875 907.2187,24.5 906.8437,24.15625 904.1875,21.5 906.8437,18.84375 907.2187,18.5 906.5,17.78125 Z M 909.5,17.78125 908.7812,18.5 909.1562,18.84375 911.8125,21.5 909.1562,24.15625 908.7812,24.5 909.5,25.21875 909.8437,24.84375 912.8437,21.84375 913.2187,21.5 912.8437,21.15625 909.8437,18.15625 909.5,17.78125 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke:none;stroke-width:1px" />
+</g>
+<path sodipodi:nodetypes="cccccccccccccccccc" inkscape:connector-curvature="0" id="rect17714" d="M 1059,572.3622 1059,580.3622 1067,580.3622 1067,572.3622 Z M 1062,573.3622 1064,573.3622 1064,575.3622 1066,575.3622 1066,577.3622 1064,577.3622 1064,579.3622 1062,579.3622 1062,577.3622 1060,577.3622 1060,575.3622 1062,575.3622 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="xml-text-new" inkscape:label="#add_xml_text_node">
-<rect y="557.3622" x="1082" height="24" width="24" id="rect17753" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17755" width="1" height="24" x="1082" y="557.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17759" width="24" height="1" x="1082" y="557.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17763" width="24" height="1" x="1082" y="580.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17765" width="1" height="24" x="1105" y="557.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1097,572.3622 1097,580.3622 1105,580.3622 1105,572.3622 Z M 1100,573.3622 1102,573.3622 1102,575.3622 1104,575.3622 1104,577.3622 1102,577.3622 1102,579.3622 1100,579.3622 1100,577.3622 1098,577.3622 1098,575.3622 1100,575.3622 Z" id="path17784" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccc" />
-<path inkscape:connector-curvature="0" id="rect21555" d="M 1100,563.3622 C 1098.892,563.3622 1098,564.1055 1098,565.0288 L 1098,566.6955 C 1098,567.6188 1098.892,568.3622 1100,568.3622 1101.108,568.3622 1102,567.6188 1102,566.6955 L 1101,566.6955 C 1101,567.1572 1100.554,567.5288 1100,567.5288 1099.446,567.5288 1099,567.1572 1099,566.6955 L 1099,565.0288 C 1099,564.5672 1099.446,564.1955 1100,564.1955 1100.554,564.1955 1101,564.5672 1101,565.0288 L 1102,565.0288 C 1102,564.1055 1101.108,563.3622 1100,563.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="path21565" d="M 1088,563.3622 C 1086.892,563.3622 1086,564.0951 1086,565.0184 L 1086,566.7059 C 1086,567.6293 1086.892,568.3622 1088,568.3622 1088.364,568.3622 1088.706,568.2826 1089,568.1434 L 1089,568.3622 1090,568.3622 1090,566.7059 1090,565.0184 1090,563.3622 1089,563.3622 1089,563.5809 C 1088.706,563.4418 1088.364,563.3622 1088,563.3622 Z M 1088,564.2059 C 1088.554,564.2059 1089,564.5568 1089,565.0184 L 1089,566.7059 C 1089,567.1676 1088.554,567.5184 1088,567.5184 1087.446,567.5184 1087,567.1676 1087,566.7059 L 1087,565.0184 C 1087,564.5568 1087.446,564.2059 1088,564.2059 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ssssccccccccssssssss" inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1094,563.3622 C 1095.108,563.3622 1096,564.0951 1096,565.0184 L 1096,566.7059 C 1096,567.6293 1095.108,568.3622 1094,568.3622 1093.636,568.3622 1093.294,568.2826 1093,568.1434 L 1093,568.3622 1092,568.3622 1092,566.7059 1092,565.0184 1092,560.3622 1093,560.3622 1093,563.5809 C 1093.294,563.4418 1093.636,563.3622 1094,563.3622 Z M 1094,564.2059 C 1093.446,564.2059 1093,564.5568 1093,565.0184 L 1093,566.7059 C 1093,567.1676 1093.446,567.5184 1094,567.5184 1094.554,567.5184 1095,567.1676 1095,566.7059 L 1095,565.0184 C 1095,564.5568 1094.554,564.2059 1094,564.2059 Z" id="path21572" />
-<g id="g21578" transform="matrix(1.146412,0,0,0.920121,49.13317,555.0236)" style="stroke:url(#linearGradient19282);stroke-opacity:1">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 906.5,17.78125 906.1562,18.15625 903.1562,21.15625 902.7812,21.5 903.1562,21.84375 906.1562,24.84375 906.5,25.21875 907.2187,24.5 906.8437,24.15625 904.1875,21.5 906.8437,18.84375 907.2187,18.5 906.5,17.78125 Z M 909.5,17.78125 908.7812,18.5 909.1562,18.84375 911.8125,21.5 909.1562,24.15625 908.7812,24.5 909.5,25.21875 909.8437,24.84375 912.8437,21.84375 913.2187,21.5 912.8437,21.15625 909.8437,18.15625 909.5,17.78125 Z" id="path21580" inkscape:connector-curvature="0" />
+<rect y="557.3622" x="1082" height="24" width="24" id="rect17753" style="color:#000000;fill:none" />
+<rect style="fill:url(#linearGradient19282)" id="rect17755" width="1" height="24" x="1082" y="557.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17759" width="24" height="1" x="1082" y="557.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17763" width="24" height="1" x="1082" y="580.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect17765" width="1" height="24" x="1105" y="557.3622" />
+<path style="fill:url(#linearGradient19282)" d="M 1097,572.3622 1097,580.3622 1105,580.3622 1105,572.3622 Z M 1100,573.3622 1102,573.3622 1102,575.3622 1104,575.3622 1104,577.3622 1102,577.3622 1102,579.3622 1100,579.3622 1100,577.3622 1098,577.3622 1098,575.3622 1100,575.3622 Z" id="path17784" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccc" />
+<path inkscape:connector-curvature="0" id="rect21555" d="M 1100,563.3622 C 1098.892,563.3622 1098,564.1055 1098,565.0288 L 1098,566.6955 C 1098,567.6188 1098.892,568.3622 1100,568.3622 1101.108,568.3622 1102,567.6188 1102,566.6955 L 1101,566.6955 C 1101,567.1572 1100.554,567.5288 1100,567.5288 1099.446,567.5288 1099,567.1572 1099,566.6955 L 1099,565.0288 C 1099,564.5672 1099.446,564.1955 1100,564.1955 1100.554,564.1955 1101,564.5672 1101,565.0288 L 1102,565.0288 C 1102,564.1055 1101.108,563.3622 1100,563.3622 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path21565" d="M 1088,563.3622 C 1086.892,563.3622 1086,564.0951 1086,565.0184 L 1086,566.7059 C 1086,567.6293 1086.892,568.3622 1088,568.3622 1088.364,568.3622 1088.706,568.2826 1089,568.1434 L 1089,568.3622 1090,568.3622 1090,566.7059 1090,565.0184 1090,563.3622 1089,563.3622 1089,563.5809 C 1088.706,563.4418 1088.364,563.3622 1088,563.3622 Z M 1088,564.2059 C 1088.554,564.2059 1089,564.5568 1089,565.0184 L 1089,566.7059 C 1089,567.1676 1088.554,567.5184 1088,567.5184 1087.446,567.5184 1087,567.1676 1087,566.7059 L 1087,565.0184 C 1087,564.5568 1087.446,564.2059 1088,564.2059 Z" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ssssccccccccssssssss" inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="M 1094,563.3622 C 1095.108,563.3622 1096,564.0951 1096,565.0184 L 1096,566.7059 C 1096,567.6293 1095.108,568.3622 1094,568.3622 1093.636,568.3622 1093.294,568.2826 1093,568.1434 L 1093,568.3622 1092,568.3622 1092,566.7059 1092,565.0184 1092,560.3622 1093,560.3622 1093,563.5809 C 1093.294,563.4418 1093.636,563.3622 1094,563.3622 Z M 1094,564.2059 C 1093.446,564.2059 1093,564.5568 1093,565.0184 L 1093,566.7059 C 1093,567.1676 1093.446,567.5184 1094,567.5184 1094.554,567.5184 1095,567.1676 1095,566.7059 L 1095,565.0184 C 1095,564.5568 1094.554,564.2059 1094,564.2059 Z" id="path21572" />
+<g id="g21578" transform="matrix(1.146412,0,0,0.920121,49.13317,555.0236)" style="stroke:url(#linearGradient19282)">
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke:none;stroke-width:1px" d="M 906.5,17.78125 906.1562,18.15625 903.1562,21.15625 902.7812,21.5 903.1562,21.84375 906.1562,24.84375 906.5,25.21875 907.2187,24.5 906.8437,24.15625 904.1875,21.5 906.8437,18.84375 907.2187,18.5 906.5,17.78125 Z M 909.5,17.78125 908.7812,18.5 909.1562,18.84375 911.8125,21.5 909.1562,24.15625 908.7812,24.5 909.5,25.21875 909.8437,24.84375 912.8437,21.84375 913.2187,21.5 912.8437,21.15625 909.8437,18.15625 909.5,17.78125 Z" id="path21580" inkscape:connector-curvature="0" />
</g>
</g>
<g id="xml-node-delete" inkscape:label="#delete_xml_node">
-<rect y="557.3622" x="1120" height="24" width="24" id="rect21582" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21584" width="1" height="24" x="1120" y="557.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21586" width="24" height="1" x="1120" y="557.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21588" width="24" height="1" x="1120" y="580.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21590" width="1" height="24" x="1143" y="557.3622" />
-<path inkscape:connector-curvature="0" id="path21592" d="M 1130,563.3622 1129.99,568.3782 1130.995,568.3622 1130.995,563.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccc" />
-<path inkscape:connector-curvature="0" id="path21594" d="M 1135.467,563.3749 C 1134.731,563.2972 1133.99,563.5901 1133.472,563.8635 L 1133.877,564.749 C 1134.284,564.5339 1134.931,564.3077 1135.351,564.352 1135.561,564.3742 1135.718,564.4531 1135.814,564.5658 1135.91,564.6784 1135.987,564.861 1135.987,565.2681 L 1136,568.3622 1137,568.3622 1137,565.5353 C 1137,564.9653 1137,564.2691 1136.479,563.894 1136.199,563.5639 1135.836,563.4138 1135.467,563.3749 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" sodipodi:nodetypes="cccccsccscsc" />
-<path inkscape:connector-curvature="0" id="path21596" d="M 1137.972,559.3753 1137.972,565.4408 1138,566.3622 C 1137.912,568.8648 1139.447,568.3033 1141.001,568.3622 L 1141.001,567.3252 1140,567.3622 C 1139.967,567.3187 1138.956,567.7599 1139,566.3622 L 1139.033,559.3753 1137.974,559.3753 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" sodipodi:nodetypes="cccccccccc" />
-<path inkscape:connector-curvature="0" id="path21598" d="M 1132.643,563.3749 C 1131.96,563.2972 1131.273,563.5901 1130.793,563.8635 L 1131.168,564.749 C 1131.546,564.5339 1132.146,564.3077 1132.536,564.352 1132.73,564.3742 1132.876,564.4531 1132.965,564.5658 1133.054,564.6784 1132.981,565.1286 1133,565.5353 L 1133,568.3622 1134,568.3622 1134,565.5353 C 1134,564.9653 1134.156,564.1807 1133.581,563.894 1133.321,563.5639 1132.984,563.4138 1132.643,563.3749 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" sodipodi:nodetypes="cccccsccsccc" />
-<path inkscape:connector-curvature="0" id="path21600" d="M 1124.604,563.3622 1124,563.9666 1128.396,568.3622 1129,567.7578 1124.604,563.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" id="path21602" d="M 1128.396,563.3622 1124,567.7545 1124.605,568.3585 1129,563.9661 1128.396,563.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" />
-<g id="g21604" transform="matrix(1.146412,0,0,0.920121,87.01395,555.0575)" style="stroke:url(#linearGradient19282);stroke-opacity:1">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 906.5,17.78125 906.1562,18.15625 903.1562,21.15625 902.7812,21.5 903.1562,21.84375 906.1562,24.84375 906.5,25.21875 907.2187,24.5 906.8437,24.15625 904.1875,21.5 906.8437,18.84375 907.2187,18.5 906.5,17.78125 Z M 909.5,17.78125 908.7812,18.5 909.1562,18.84375 911.8125,21.5 909.1562,24.15625 908.7812,24.5 909.5,25.21875 909.8437,24.84375 912.8437,21.84375 913.2187,21.5 912.8437,21.15625 909.8437,18.15625 909.5,17.78125 Z" id="path21606" inkscape:connector-curvature="0" />
-</g>
-<path sodipodi:nodetypes="cccccccccccccccccc" inkscape:connector-curvature="0" id="path21608" transform="translate(0,512.3622)" d="M 1136,60 1136,68 1143,68 1143,60 Z M 1137,62 1139,62 1140,63.25 1141,62 1143,62 1141,64.5 1143,67 1141,67 1140,65.75 1139,67 1137,67 1139,64.5 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="557.3622" x="1120" height="24" width="24" id="rect21582" style="color:#000000;fill:none" />
+<rect style="fill:url(#linearGradient19282)" id="rect21584" width="1" height="24" x="1120" y="557.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect21586" width="24" height="1" x="1120" y="557.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect21588" width="24" height="1" x="1120" y="580.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect21590" width="1" height="24" x="1143" y="557.3622" />
+<path inkscape:connector-curvature="0" id="path21592" d="M 1130,563.3622 1129.99,568.3782 1130.995,568.3622 1130.995,563.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" sodipodi:nodetypes="ccccc" />
+<path inkscape:connector-curvature="0" id="path21594" d="M 1135.467,563.3749 C 1134.731,563.2972 1133.99,563.5901 1133.472,563.8635 L 1133.877,564.749 C 1134.284,564.5339 1134.931,564.3077 1135.351,564.352 1135.561,564.3742 1135.718,564.4531 1135.814,564.5658 1135.91,564.6784 1135.987,564.861 1135.987,565.2681 L 1136,568.3622 1137,568.3622 1137,565.5353 C 1137,564.9653 1137,564.2691 1136.479,563.894 1136.199,563.5639 1135.836,563.4138 1135.467,563.3749 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" sodipodi:nodetypes="cccccsccscsc" />
+<path inkscape:connector-curvature="0" id="path21596" d="M 1137.972,559.3753 1137.972,565.4408 1138,566.3622 C 1137.912,568.8648 1139.447,568.3033 1141.001,568.3622 L 1141.001,567.3252 1140,567.3622 C 1139.967,567.3187 1138.956,567.7599 1139,566.3622 L 1139.033,559.3753 1137.974,559.3753 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" sodipodi:nodetypes="cccccccccc" />
+<path inkscape:connector-curvature="0" id="path21598" d="M 1132.643,563.3749 C 1131.96,563.2972 1131.273,563.5901 1130.793,563.8635 L 1131.168,564.749 C 1131.546,564.5339 1132.146,564.3077 1132.536,564.352 1132.73,564.3742 1132.876,564.4531 1132.965,564.5658 1133.054,564.6784 1132.981,565.1286 1133,565.5353 L 1133,568.3622 1134,568.3622 1134,565.5353 C 1134,564.9653 1134.156,564.1807 1133.581,563.894 1133.321,563.5639 1132.984,563.4138 1132.643,563.3749 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" sodipodi:nodetypes="cccccsccsccc" />
+<path inkscape:connector-curvature="0" id="path21600" d="M 1124.604,563.3622 1124,563.9666 1128.396,568.3622 1129,567.7578 1124.604,563.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" />
+<path inkscape:connector-curvature="0" id="path21602" d="M 1128.396,563.3622 1124,567.7545 1124.605,568.3585 1129,563.9661 1128.396,563.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1px" />
+<g id="g21604" transform="matrix(1.146412,0,0,0.920121,87.01395,555.0575)" style="stroke:url(#linearGradient19282)">
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke:none;stroke-width:1px" d="M 906.5,17.78125 906.1562,18.15625 903.1562,21.15625 902.7812,21.5 903.1562,21.84375 906.1562,24.84375 906.5,25.21875 907.2187,24.5 906.8437,24.15625 904.1875,21.5 906.8437,18.84375 907.2187,18.5 906.5,17.78125 Z M 909.5,17.78125 908.7812,18.5 909.1562,18.84375 911.8125,21.5 909.1562,24.15625 908.7812,24.5 909.5,25.21875 909.8437,24.84375 912.8437,21.84375 913.2187,21.5 912.8437,21.15625 909.8437,18.15625 909.5,17.78125 Z" id="path21606" inkscape:connector-curvature="0" />
+</g>
+<path sodipodi:nodetypes="cccccccccccccccccc" inkscape:connector-curvature="0" id="path21608" transform="translate(0,512.3622)" d="M 1136,60 1136,68 1143,68 1143,60 Z M 1137,62 1139,62 1140,63.25 1141,62 1143,62 1141,64.5 1143,67 1141,67 1140,65.75 1139,67 1137,67 1139,64.5 Z" style="fill:url(#linearGradient19282)" />
</g>
<g id="xml-node-duplicate" inkscape:label="#duplicate_xml_node">
<g id="g21890">
-<rect y="557.3622" x="1158" height="24" width="24" id="rect21796" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21798" width="1" height="18" x="1164" y="563.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21800" width="17" height="1" x="1165" y="563.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21802" width="18" height="1" x="1164" y="580.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21804" width="1" height="18" x="1181" y="563.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1173,573.3622 1173,581.3622 1181,581.3622 1181,573.3622 Z M 1176,574.3622 1178,574.3622 1178,576.3622 1180,576.3622 1180,578.3622 1178,578.3622 1178,580.3622 1176,580.3622 1176,578.3622 1174,578.3622 1174,576.3622 1176,576.3622 Z" id="path21806" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccc" />
-<g id="g21814" transform="matrix(1.146412,0,0,0.920121,132.1332,549.0236)" style="stroke:url(#linearGradient19282);stroke-opacity:1">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1px;marker:none;enable-background:accumulate" d="M 906.5,17.78125 906.1562,18.15625 903.1562,21.15625 902.7812,21.5 903.1562,21.84375 906.1562,24.84375 906.5,25.21875 907.2187,24.5 906.8437,24.15625 904.1875,21.5 906.8437,18.84375 907.2187,18.5 906.5,17.78125 Z M 909.5,17.78125 908.7812,18.5 909.1562,18.84375 911.8125,21.5 909.1562,24.15625 908.7812,24.5 909.5,25.21875 909.8437,24.84375 912.8437,21.84375 913.2187,21.5 912.8437,21.15625 909.8437,18.15625 909.5,17.78125 Z" id="path21816" inkscape:connector-curvature="0" />
+<rect y="557.3622" x="1158" height="24" width="24" id="rect21796" style="color:#000000;fill:none" />
+<rect style="fill:url(#linearGradient19282)" id="rect21798" width="1" height="18" x="1164" y="563.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect21800" width="17" height="1" x="1165" y="563.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect21802" width="18" height="1" x="1164" y="580.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect21804" width="1" height="18" x="1181" y="563.3622" />
+<path style="fill:url(#linearGradient19282)" d="M 1173,573.3622 1173,581.3622 1181,581.3622 1181,573.3622 Z M 1176,574.3622 1178,574.3622 1178,576.3622 1180,576.3622 1180,578.3622 1178,578.3622 1178,580.3622 1176,580.3622 1176,578.3622 1174,578.3622 1174,576.3622 1176,576.3622 Z" id="path21806" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccc" />
+<g id="g21814" transform="matrix(1.146412,0,0,0.920121,132.1332,549.0236)" style="stroke:url(#linearGradient19282)">
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke:none;stroke-width:1px" d="M 906.5,17.78125 906.1562,18.15625 903.1562,21.15625 902.7812,21.5 903.1562,21.84375 906.1562,24.84375 906.5,25.21875 907.2187,24.5 906.8437,24.15625 904.1875,21.5 906.8437,18.84375 907.2187,18.5 906.5,17.78125 Z M 909.5,17.78125 908.7812,18.5 909.1562,18.84375 911.8125,21.5 909.1562,24.15625 908.7812,24.5 909.5,25.21875 909.8437,24.84375 912.8437,21.84375 913.2187,21.5 912.8437,21.15625 909.8437,18.15625 909.5,17.78125 Z" id="path21816" inkscape:connector-curvature="0" />
</g>
-<rect y="557.3622" x="1158" height="18" width="1" id="rect21818" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="557.3622" x="1159" height="1" width="17" id="rect21820" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="574.3622" x="1158" height="1" width="6" id="rect21822" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="557.3622" x="1175" height="5.999998" width="1" id="rect21824" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="557.3622" x="1158" height="18" width="1" id="rect21818" style="fill:url(#linearGradient19282)" />
+<rect y="557.3622" x="1159" height="1" width="17" id="rect21820" style="fill:url(#linearGradient19282)" />
+<rect y="574.3622" x="1158" height="1" width="6" id="rect21822" style="fill:url(#linearGradient19282)" />
+<rect y="557.3622" x="1175" height="5.999998" width="1" id="rect21824" style="fill:url(#linearGradient19282)" />
</g>
</g>
<g id="xml-attribute-delete" inkscape:label="#delete_xml_attribute">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect21940" width="24" height="24" x="1196" y="557.3622" />
-<rect y="557.3622" x="1196" height="24" width="1" id="rect21942" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="557.3622" x="1196" height="1" width="24" id="rect21944" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="580.3622" x="1196" height="1" width="24" id="rect21946" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="557.3622" x="1219" height="24" width="1" id="rect21948" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1212,574.3622 1212,580.3622 1219,580.3622 1219,574.3622 Z M 1213,575.3622 1215,575.3622 1216,576.6122 1217,575.3622 1219,575.3622 1217,577.8622 1219,580.3622 1217,580.3622 1216,579.1122 1215,580.3622 1213,580.3622 1215,577.8622 Z" id="path21966" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccc" />
-<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="rect21982" transform="translate(0,512.3622)" d="M 1199,47 1199,50 1202,50 1202,47 Z M 1200,48 1201,48 1201,49 1200,49 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="562.3622" x="1200" height="8.000006" width="1" id="rect21986" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="565.3622" x="1201" height="1" width="6" id="rect21988" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21990" width="7" height="1" x="1200" y="570.3622" />
-<path id="rect21992" transform="translate(0,512.3622)" d="M 1207,51 1207,55 1217,55 1217,51 1207,51 Z M 1208,52 1216,52 1216,54 1208,54 1208,52 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="rect21994" transform="translate(0,512.3622)" d="M 1207,56 1207,60 1217,60 1217,56 1207,56 Z M 1208,57 1216,57 1216,59 1208,59 1208,57 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect style="color:#000000;fill:none" id="rect21940" width="24" height="24" x="1196" y="557.3622" />
+<rect y="557.3622" x="1196" height="24" width="1" id="rect21942" style="fill:url(#linearGradient19282)" />
+<rect y="557.3622" x="1196" height="1" width="24" id="rect21944" style="fill:url(#linearGradient19282)" />
+<rect y="580.3622" x="1196" height="1" width="24" id="rect21946" style="fill:url(#linearGradient19282)" />
+<rect y="557.3622" x="1219" height="24" width="1" id="rect21948" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 1212,574.3622 1212,580.3622 1219,580.3622 1219,574.3622 Z M 1213,575.3622 1215,575.3622 1216,576.6122 1217,575.3622 1219,575.3622 1217,577.8622 1219,580.3622 1217,580.3622 1216,579.1122 1215,580.3622 1213,580.3622 1215,577.8622 Z" id="path21966" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccccccccc" />
+<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="rect21982" transform="translate(0,512.3622)" d="M 1199,47 1199,50 1202,50 1202,47 Z M 1200,48 1201,48 1201,49 1200,49 Z" style="fill:url(#linearGradient19282)" />
+<rect y="562.3622" x="1200" height="8.000006" width="1" id="rect21986" style="fill:url(#linearGradient19282)" />
+<rect y="565.3622" x="1201" height="1" width="6" id="rect21988" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21990" width="7" height="1" x="1200" y="570.3622" />
+<path id="rect21992" transform="translate(0,512.3622)" d="M 1207,51 1207,55 1217,55 1217,51 1207,51 Z M 1208,52 1216,52 1216,54 1208,54 1208,52 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="rect21994" transform="translate(0,512.3622)" d="M 1207,56 1207,60 1217,60 1217,56 1207,56 Z M 1208,57 1216,57 1216,59 1208,59 1208,57 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="align-horizontal-right-to-anchor" inkscape:label="#al_left_out">
-<rect y="595.3622" x="1044" height="24" width="24" id="rect22036" style="fill:none;stroke:none" />
-<rect y="595.3622" x="1064" height="4" width="4" id="rect22038" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="595.3622" x="1062" height="24" width="1" id="rect22040" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="599.3622" x="1045" height="4.999998" width="16" id="rect22042" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22044" width="10" height="3.000003" x="1051" y="606.3622" />
-<rect y="611.3622" x="1047" height="4" width="14" id="rect22046" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="595.3622" x="1044" height="24" width="24" id="rect22036" style="fill:none" />
+<rect y="595.3622" x="1064" height="4" width="4" id="rect22038" style="fill:url(#linearGradient19282)" />
+<rect y="595.3622" x="1062" height="24" width="1" id="rect22040" style="fill:url(#linearGradient19282)" />
+<rect y="599.3622" x="1045" height="4.999998" width="16" id="rect22042" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22044" width="10" height="3.000003" x="1051" y="606.3622" />
+<rect y="611.3622" x="1047" height="4" width="14" id="rect22046" style="fill:url(#linearGradient19282)" />
</g>
<g id="align-vertical-bottom-to-anchor" inkscape:label="#al_top_out">
-<rect transform="rotate(90)" style="fill:none;stroke:none" id="rect22048" width="24" height="24" x="632.3622" y="-1068" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22050" width="4" height="4" x="652.3622" y="-1068" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22052" width="1" height="24" x="650.3622" y="-1068" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22054" width="16" height="4.999998" x="633.3622" y="-1064" />
-<rect transform="rotate(90)" y="-1057" x="639.3622" height="3.000003" width="10" id="rect22056" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22058" width="14" height="4" x="635.3622" y="-1052" />
+<rect transform="rotate(90)" style="fill:none" id="rect22048" width="24" height="24" x="632.3622" y="-1068" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22050" width="4" height="4" x="652.3622" y="-1068" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22052" width="1" height="24" x="650.3622" y="-1068" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22054" width="16" height="4.999998" x="633.3622" y="-1064" />
+<rect transform="rotate(90)" y="-1057" x="639.3622" height="3.000003" width="10" id="rect22056" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22058" width="14" height="4" x="635.3622" y="-1052" />
</g>
<g id="align-horizontal-left" inkscape:label="#al_left_in">
<g id="g22133">
-<rect y="595.3622" x="-1106" height="24" width="24" id="rect22111" style="fill:none;stroke:none" transform="scale(-1,1)" />
-<rect y="595.3622" x="-1086" height="24" width="1" id="rect22115" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(-1,1)" />
-<rect y="595.3622" x="-1103" height="4.999998" width="16" id="rect22117" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(-1,1)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22119" width="10" height="3.000003" x="-1097" y="602.3622" transform="scale(-1,1)" />
-<rect y="607.3622" x="-1101" height="4" width="14" id="rect22121" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(-1,1)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1087,616.3622 1090,613.3622 1090,619.3622 Z" id="path22129" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22131" width="9" height="2" x="1090" y="615.3622" />
+<rect y="595.3622" x="-1106" height="24" width="24" id="rect22111" style="fill:none" transform="scale(-1,1)" />
+<rect y="595.3622" x="-1086" height="24" width="1" id="rect22115" style="fill:url(#linearGradient19282)" transform="scale(-1,1)" />
+<rect y="595.3622" x="-1103" height="4.999998" width="16" id="rect22117" style="fill:url(#linearGradient19282)" transform="scale(-1,1)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22119" width="10" height="3.000003" x="-1097" y="602.3622" transform="scale(-1,1)" />
+<rect y="607.3622" x="-1101" height="4" width="14" id="rect22121" style="fill:url(#linearGradient19282)" transform="scale(-1,1)" />
+<path style="fill:url(#linearGradient19282)" d="M 1087,616.3622 1090,613.3622 1090,619.3622 Z" id="path22129" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect22131" width="9" height="2" x="1090" y="615.3622" />
</g>
</g>
<g id="align-vertical-top" inkscape:label="#al_top_in">
-<rect y="-1106" x="-656.3622" height="24" width="24" id="rect22175" style="fill:none;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<rect y="-1106" x="-636.3622" height="24" width="1" id="rect22177" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<rect y="-1095" x="-653.3622" height="4.999998" width="16" id="rect22179" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22181" width="10" height="3.000003" x="-647.3622" y="-1100" transform="matrix(0,-1,-1,0,0,0)" />
-<rect y="-1106" x="-651.3622" height="4" width="14" id="rect22183" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1085,637.3622 1088,640.3622 1082,640.3622 Z" id="path22185" inkscape:connector-curvature="0" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22187" width="9" height="2" x="640.3622" y="-1086" />
+<rect y="-1106" x="-656.3622" height="24" width="24" id="rect22175" style="fill:none" transform="matrix(0,-1,-1,0,0,0)" />
+<rect y="-1106" x="-636.3622" height="24" width="1" id="rect22177" style="fill:url(#linearGradient19282)" transform="matrix(0,-1,-1,0,0,0)" />
+<rect y="-1095" x="-653.3622" height="4.999998" width="16" id="rect22179" style="fill:url(#linearGradient19282)" transform="matrix(0,-1,-1,0,0,0)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22181" width="10" height="3.000003" x="-647.3622" y="-1100" transform="matrix(0,-1,-1,0,0,0)" />
+<rect y="-1106" x="-651.3622" height="4" width="14" id="rect22183" style="fill:url(#linearGradient19282)" transform="matrix(0,-1,-1,0,0,0)" />
+<path style="fill:url(#linearGradient19282)" d="M 1085,637.3622 1088,640.3622 1082,640.3622 Z" id="path22185" inkscape:connector-curvature="0" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22187" width="9" height="2" x="640.3622" y="-1086" />
</g>
<g id="align-horizontal-center" inkscape:label="#al_center_hor">
-<rect y="595.3622" x="-1144" height="24" width="24" id="rect22217" style="fill:none;stroke:none" transform="scale(-1,1)" />
-<rect y="595.3622" x="-1133" height="24" width="1" id="rect22219" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(-1,1)" />
-<path id="rect22221" transform="translate(0,512.3622)" d="M 1124,83 1124,88 1131,88 1131,83 1124,83 Z M 1134,83 1134,88 1141,88 1141,83 1134,83 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="rect22223" transform="translate(0,512.3622)" d="M 1127,90 1127,93 1131,93 1131,90 1127,90 Z M 1134,90 1134,93 1138,93 1138,90 1134,90 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path id="rect22225" transform="translate(0,512.3622)" d="M 1125,95 1125,99 1131,99 1131,95 1125,95 Z M 1134,95 1134,99 1140,99 1140,95 1134,95 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1134,616.3622 1137,613.3622 1137,619.3622 Z" id="path22227" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22229" width="7" height="2" x="1137" y="615.3622" />
-<path inkscape:connector-curvature="0" id="path22246" d="M 1131,616.3622 1128,613.3622 1128,619.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(-1,1)" y="615.3622" x="-1128" height="2" width="7" id="rect22248" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="595.3622" x="-1144" height="24" width="24" id="rect22217" style="fill:none" transform="scale(-1,1)" />
+<rect y="595.3622" x="-1133" height="24" width="1" id="rect22219" style="fill:url(#linearGradient19282)" transform="scale(-1,1)" />
+<path id="rect22221" transform="translate(0,512.3622)" d="M 1124,83 1124,88 1131,88 1131,83 1124,83 Z M 1134,83 1134,88 1141,88 1141,83 1134,83 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="rect22223" transform="translate(0,512.3622)" d="M 1127,90 1127,93 1131,93 1131,90 1127,90 Z M 1134,90 1134,93 1138,93 1138,90 1134,90 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path id="rect22225" transform="translate(0,512.3622)" d="M 1125,95 1125,99 1131,99 1131,95 1125,95 Z M 1134,95 1134,99 1140,99 1140,95 1134,95 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 1134,616.3622 1137,613.3622 1137,619.3622 Z" id="path22227" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect22229" width="7" height="2" x="1137" y="615.3622" />
+<path inkscape:connector-curvature="0" id="path22246" d="M 1131,616.3622 1128,613.3622 1128,619.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(-1,1)" y="615.3622" x="-1128" height="2" width="7" id="rect22248" style="fill:url(#linearGradient19282)" />
</g>
<g id="align-vertical-center" inkscape:label="#al_center_ver">
-<rect transform="matrix(0,-1,-1,0,0,0)" style="fill:none;stroke:none" id="rect22291" width="24" height="24" x="-656.3622" y="-1144" />
-<rect transform="matrix(0,-1,-1,0,0,0)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22293" width="1" height="24" x="-645.3622" y="-1144" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1133,636.3622 1128,636.3622 1128,643.3622 1133,643.3622 1133,636.3622 Z M 1133,646.3622 1128,646.3622 1128,653.3622 1133,653.3622 1133,646.3622 Z" id="path22295" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1138,639.3622 1135,639.3622 1135,643.3622 1138,643.3622 1138,639.3622 Z M 1138,646.3622 1135,646.3622 1135,650.3622 1138,650.3622 1138,646.3622 Z" id="path22297" inkscape:connector-curvature="0" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1144,637.3622 1140,637.3622 1140,643.3622 1144,643.3622 1144,637.3622 Z M 1144,646.3622 1140,646.3622 1140,652.3622 1144,652.3622 1144,646.3622 Z" id="path22299" inkscape:connector-curvature="0" />
-<path inkscape:connector-curvature="0" id="path22301" d="M 1123,646.3622 1126,649.3622 1120,649.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" y="-1124" x="649.3622" height="2" width="7" id="rect22303" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1123,643.3622 1126,640.3622 1120,640.3622 Z" id="path22305" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22307" width="7" height="2" x="-640.3622" y="-1124" transform="matrix(0,-1,-1,0,0,0)" />
+<rect transform="matrix(0,-1,-1,0,0,0)" style="fill:none" id="rect22291" width="24" height="24" x="-656.3622" y="-1144" />
+<rect transform="matrix(0,-1,-1,0,0,0)" style="fill:url(#linearGradient19282)" id="rect22293" width="1" height="24" x="-645.3622" y="-1144" />
+<path style="fill:url(#linearGradient19282)" d="M 1133,636.3622 1128,636.3622 1128,643.3622 1133,643.3622 1133,636.3622 Z M 1133,646.3622 1128,646.3622 1128,653.3622 1133,653.3622 1133,646.3622 Z" id="path22295" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 1138,639.3622 1135,639.3622 1135,643.3622 1138,643.3622 1138,639.3622 Z M 1138,646.3622 1135,646.3622 1135,650.3622 1138,650.3622 1138,646.3622 Z" id="path22297" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 1144,637.3622 1140,637.3622 1140,643.3622 1144,643.3622 1144,637.3622 Z M 1144,646.3622 1140,646.3622 1140,652.3622 1144,652.3622 1144,646.3622 Z" id="path22299" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path22301" d="M 1123,646.3622 1126,649.3622 1120,649.3622 Z" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" y="-1124" x="649.3622" height="2" width="7" id="rect22303" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 1123,643.3622 1126,640.3622 1120,640.3622 Z" id="path22305" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect22307" width="7" height="2" x="-640.3622" y="-1124" transform="matrix(0,-1,-1,0,0,0)" />
</g>
<g id="align-horizontal-right" inkscape:label="#al_right_in">
<g transform="matrix(-1,0,0,1,2264,0)" id="g22329" inkscape:label="#al_left_in">
<g id="g22331">
-<rect y="595.3622" x="-1106" height="24" width="24" id="rect22333" style="fill:none;stroke:none" transform="scale(-1,1)" />
-<rect y="595.3622" x="-1086" height="24" width="1" id="rect22335" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(-1,1)" />
-<rect y="595.3622" x="-1103" height="4.999998" width="16" id="rect22337" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(-1,1)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22339" width="10" height="3.000003" x="-1097" y="602.3622" transform="scale(-1,1)" />
-<rect y="607.3622" x="-1101" height="4" width="14" id="rect22341" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(-1,1)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1087,616.3622 1090,613.3622 1090,619.3622 Z" id="path22343" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22345" width="9" height="2" x="1090" y="615.3622" />
+<rect y="595.3622" x="-1106" height="24" width="24" id="rect22333" style="fill:none" transform="scale(-1,1)" />
+<rect y="595.3622" x="-1086" height="24" width="1" id="rect22335" style="fill:url(#linearGradient19282)" transform="scale(-1,1)" />
+<rect y="595.3622" x="-1103" height="4.999998" width="16" id="rect22337" style="fill:url(#linearGradient19282)" transform="scale(-1,1)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22339" width="10" height="3.000003" x="-1097" y="602.3622" transform="scale(-1,1)" />
+<rect y="607.3622" x="-1101" height="4" width="14" id="rect22341" style="fill:url(#linearGradient19282)" transform="scale(-1,1)" />
+<path style="fill:url(#linearGradient19282)" d="M 1087,616.3622 1090,613.3622 1090,619.3622 Z" id="path22343" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect22345" width="9" height="2" x="1090" y="615.3622" />
</g>
</g>
</g>
<g id="align-vertical-bottom" inkscape:label="#al_bottom_in">
<g transform="matrix(1,0,0,-1,76,1288.724)" id="g22358" inkscape:label="#al_top_in">
-<rect y="-1106" x="-656.3622" height="24" width="24" id="rect22360" style="fill:none;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<rect y="-1106" x="-636.3622" height="24" width="1" id="rect22362" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<rect y="-1095" x="-653.3622" height="4.999998" width="16" id="rect22364" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22366" width="10" height="3.000003" x="-647.3622" y="-1100" transform="matrix(0,-1,-1,0,0,0)" />
-<rect y="-1106" x="-651.3622" height="4" width="14" id="rect22368" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1085,637.3622 1088,640.3622 1082,640.3622 Z" id="path22370" inkscape:connector-curvature="0" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22372" width="9" height="2" x="640.3622" y="-1086" />
+<rect y="-1106" x="-656.3622" height="24" width="24" id="rect22360" style="fill:none" transform="matrix(0,-1,-1,0,0,0)" />
+<rect y="-1106" x="-636.3622" height="24" width="1" id="rect22362" style="fill:url(#linearGradient19282)" transform="matrix(0,-1,-1,0,0,0)" />
+<rect y="-1095" x="-653.3622" height="4.999998" width="16" id="rect22364" style="fill:url(#linearGradient19282)" transform="matrix(0,-1,-1,0,0,0)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22366" width="10" height="3.000003" x="-647.3622" y="-1100" transform="matrix(0,-1,-1,0,0,0)" />
+<rect y="-1106" x="-651.3622" height="4" width="14" id="rect22368" style="fill:url(#linearGradient19282)" transform="matrix(0,-1,-1,0,0,0)" />
+<path style="fill:url(#linearGradient19282)" d="M 1085,637.3622 1088,640.3622 1082,640.3622 Z" id="path22370" inkscape:connector-curvature="0" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22372" width="9" height="2" x="640.3622" y="-1086" />
</g>
</g>
<g id="align-horizontal-left-to-anchor" inkscape:label="#al_right_out">
<g transform="matrix(-1,0,0,1,2264,0)" id="g22384" inkscape:label="#al_left_out">
-<rect y="595.3622" x="1044" height="24" width="24" id="rect22386" style="fill:none;stroke:none" />
-<rect y="595.3622" x="1064" height="4" width="4" id="rect22388" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="595.3622" x="1062" height="24" width="1" id="rect22390" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="599.3622" x="1045" height="4.999998" width="16" id="rect22392" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22394" width="10" height="3.000003" x="1051" y="606.3622" />
-<rect y="611.3622" x="1047" height="4" width="14" id="rect22396" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="595.3622" x="1044" height="24" width="24" id="rect22386" style="fill:none" />
+<rect y="595.3622" x="1064" height="4" width="4" id="rect22388" style="fill:url(#linearGradient19282)" />
+<rect y="595.3622" x="1062" height="24" width="1" id="rect22390" style="fill:url(#linearGradient19282)" />
+<rect y="599.3622" x="1045" height="4.999998" width="16" id="rect22392" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22394" width="10" height="3.000003" x="1051" y="606.3622" />
+<rect y="611.3622" x="1047" height="4" width="14" id="rect22396" style="fill:url(#linearGradient19282)" />
</g>
</g>
<g id="align-vertical-top-to-anchor" inkscape:label="#al_bottom_out">
<g transform="matrix(1,0,0,-1,152,1288.724)" id="g22407" inkscape:label="#al_top_out">
-<rect transform="rotate(90)" style="fill:none;stroke:none" id="rect22409" width="24" height="24" x="632.3622" y="-1068" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22411" width="4" height="4" x="652.3622" y="-1068" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22413" width="1" height="24" x="650.3622" y="-1068" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22415" width="16" height="4.999998" x="633.3622" y="-1064" />
-<rect transform="rotate(90)" y="-1057" x="639.3622" height="3.000003" width="10" id="rect22417" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22419" width="14" height="4" x="635.3622" y="-1052" />
+<rect transform="rotate(90)" style="fill:none" id="rect22409" width="24" height="24" x="632.3622" y="-1068" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22411" width="4" height="4" x="652.3622" y="-1068" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22413" width="1" height="24" x="650.3622" y="-1068" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22415" width="16" height="4.999998" x="633.3622" y="-1064" />
+<rect transform="rotate(90)" y="-1057" x="639.3622" height="3.000003" width="10" id="rect22417" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect22419" width="14" height="4" x="635.3622" y="-1052" />
</g>
</g>
<g id="align-horizontal-baseline" inkscape:label="#al_baselines_vert">
<g id="g22449" transform="matrix(-1,0,0,0.997921,1039.197,589.8441)" inkscape:label="#al_baselines_vert">
-<use xlink:href="#path5120" height="1250" width="1250" id="use22451" y="0" x="0" style="display:inline" transform="matrix(-1,0,0,1.000085,-38.76176,-94.35424)" />
-<rect style="font-size:12px;fill:none;stroke:none" id="rect22453" width="24.05" height="24" x="80.6858" y="-28.803" transform="matrix(0,1,1,0,0,0)" />
-<path id="path22455" d="M -11.9668,90.11223 C -12.7455,89.43522 -14.0693,89.67792 -14.6597,90.46077 -15.6351,91.64638 -15.9172,93.16305 -16.2761,94.58222 -16.5423,95.79253 -16.7095,97.02162 -16.7771,98.2554 -17.5654,96.69517 -18.4736,95.01934 -18.4901,93.26239 -18.5119,92.37434 -17.9777,91.62159 -17.6209,90.83626 -17.3262,90.17803 -18.1376,89.4931 -18.8334,89.70428 -19.6856,89.87006 -19.8276,90.81043 -19.803,91.48473 -19.7134,93.49021 -18.8909,95.4594 -18.0586,97.29225 -16.8791,99.71268 -15.1908,101.9573 -12.9826,103.6604 -12.1142,104.2845 -9.9179,105.0083 -8.8334,104.6324 -6.8334,103.6372 -6.8334,101.6468 -8.8334,101.6468 -9.552,101.3227 -11.3725,102.8907 -12.1086,102.866 -13.3235,102.857 -14.1896,101.8146 -14.5175,100.8217 -14.8507,99.50814 -14.5389,98.151 -14.3331,96.84131 -13.9978,95.13877 -13.6205,93.40174 -12.7366,91.86153 -12.5558,91.26334 -11.1394,90.90781 -11.9668,90.11223 Z" style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:19.2307739px;line-height:100%;font-family:Baskerville-Nova;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccsccccccccccc" inkscape:connector-curvature="0" />
-<path transform="scale(-1.036041,0.965213)" style="font-style:normal;font-weight:normal;font-size:14.6271629px;font-family:'Bitstream Vera Sans';fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 15.59046,88.20062 C 15.05718,88.20062 14.65483,88.29109 14.38344,88.47202 14.11679,88.65296 13.98347,88.9196 13.98347,89.27194 13.98347,89.59572 14.0906,89.85046 14.30487,90.03615 14.5239,90.21709 14.82625,90.30756 15.21193,90.30756 15.69283,90.30756 16.09755,90.13615 16.4261,89.79332 16.75463,89.44574 16.9189,89.01245 16.91891,88.49345 L 16.91891,88.20062 15.59047,88.20062 M 19.49723,87.23643 19.49723,91.80027 16.91891,91.80027 16.91891,90.61467 C 16.57608,91.10034 16.1904,91.45507 15.76188,91.67885 15.33334,91.89788 14.81196,92.00739 14.19774,92.00739 13.36925,92.00739 12.6955,91.76694 12.17651,91.28603 11.66227,90.80037 11.40515,90.17186 11.40515,89.4005 11.40515,88.4625 11.72655,87.77447 12.36934,87.33641 13.0169,86.89837 14.03109,86.67934 15.41191,86.67933 L 16.91891,86.67933 16.91891,86.47935 C 16.9189,86.07464 16.75939,85.77943 16.44038,85.59372 16.12136,85.40327 15.62379,85.30804 14.94767,85.30804 14.4001,85.30804 13.89062,85.3628 13.41924,85.47231 12.94786,85.58183 12.50981,85.7461 12.10508,85.96512 L 12.10508,84.01531 C 12.65265,83.88199 13.2026,83.782 13.75493,83.71533 14.30725,83.64392 14.85958,83.60821 15.41191,83.6082 16.85462,83.60821 17.895,83.8939 18.53304,84.46526 19.17582,85.03188 19.49722,85.9556 19.49723,87.23642" id="path22457" inkscape:connector-curvature="0" />
-</g>
-<rect y="670.3622" x="1049" height="24" width="1" id="rect22505" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<rect style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.9999999;marker:none;enable-background:accumulate" id="rect18772" width="197" height="197" x="-276" y="517.3622" />
-<text xml:space="preserve" style="font-style:normal;font-weight:normal;font-size:40px;line-height:125%;font-family:Sans;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" x="-274" y="238" id="text19288" sodipodi:linespacing="125%" transform="translate(0,512.3622)"><tspan sodipodi:role="line" x="-274" y="238" id="tspan19292" /></text>
-<flowRoot xml:space="preserve" id="flowRoot19296" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none" transform="translate(18.104,520.7221)"><flowRegion id="flowRegion19298"><rect id="rect19300" width="230" height="230" x="-287" y="209" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:16px;line-height:125%;font-family:Cantarell;-inkscape-font-specification:Cantarell;text-align:start;writing-mode:lr-tb;text-anchor:start" /></flowRegion><flowPara id="flowPara19302">Use the swatch palette to change color globally</flowPara></flowRoot><g id="g11376" transform="translate(0,20)">
-<rect style="fill:none;stroke:none" id="rect11378" width="16" height="16" x="75" y="15" transform="translate(0,512.3622)" />
-</g>
-<g id="g18770" inkscape:label="#zoom_half_size">
-<g transform="translate(0,20)" id="g11380">
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient29515);fill-opacity:1;stroke:none" d="M 82.5,35 C 78.35787,35 75,38.33709 75,42.4375 75,46.53789 78.35787,49.84375 82.5,49.84375 83.97335,49.84375 85.34092,49.41397 86.5,48.6875 L 88.46875,50.625 C 88.98674,51.13661 89.80212,51.11299 90.3125,50.59375 L 90.5625,50.34375 C 91.07288,49.82451 91.08049,48.98035 90.5625,48.46875 L 88.65625,46.625 C 89.49555,45.42604 90,44.00669 90,42.4375 90,38.3371 86.64213,35 82.5,35 Z M 78,39 79.5,39 80,39 80,39.5 80,46 79,46 79,40 78,40 78,39 Z M 84,39 87,39 87,43 85,43 85,45 87,45 87,46 85.5,46 84,46 84,42 86,42 86,40 84,40 84,39 Z M 81,42 82,42 82,43 81,43 81,42 Z M 81,45 82,45 82,46 81,46 81,45 Z" transform="translate(0,492.3622)" id="path11382" />
-</g>
-</g>
-<g id="tool-tweak" inkscape:label="#g19602">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect4400" width="24" height="24" x="285" y="1053.362" />
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="rect4412" d="M 299.1929,1056.371 C 298.0977,1056.32 297.088,1056.501 296.4525,1056.899 290.9701,1060.339 294.0653,1068.958 286.013,1067.4 L 285.9688,1076.425 307,1076.425 307.0442,1067.4 C 301.5616,1068.644 299.2809,1067.179 298.2051,1064.739 297.2515,1062.576 298.0121,1060.654 299.2885,1060.423 301.812,1059.964 301.5498,1061.668 303.0487,1062.096 304.4735,1062.503 304.9073,1061.141 303.909,1059.013 303.0709,1057.227 301.0184,1056.456 299.193,1056.371 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.8916873;marker:none;enable-background:accumulate" />
-</g>
-<g id="tool-tweak-16px" inkscape:label="#g19606">
-<rect y="1053.362" x="317" height="16" width="16" id="rect19598" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<path sodipodi:nodetypes="ccccccccscc" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.8916873;marker:none;enable-background:accumulate" d="M 326.803,1055.368 C 326.0739,1055.334 325.4018,1055.452 324.9788,1055.71 321.3293,1057.939 323.4044,1063.38 318.0442,1062.37 L 318,1068.362 332,1068.362 332.0442,1062.37 C 328.3945,1063.177 326.8616,1062.371 326.1455,1060.79 325.5106,1059.389 326.0169,1058.144 326.8667,1057.994 328.5465,1057.696 328.3719,1058.801 329.3697,1059.078 330.3182,1059.341 330.607,1058.459 329.9424,1057.08 329.3845,1055.923 328.0182,1055.423 326.803,1055.368 Z" id="path19600" inkscape:connector-curvature="0" />
-</g>
-<g id="object-rotate-90-CW" inkscape:label="#g23367">
-<g inkscape:label="stock-rotate-270" id="g15895" style="display:inline" transform="translate(223.9998,725.3622)">
-<rect y="-77.0002" x="-375" height="16" width="16" id="rect15886" style="fill:none;stroke:none" transform="matrix(0,-1,-1,0,0,0)" />
-<path id="path15888-3" transform="translate(-223.9998,-213)" d="M 294.5,574 C 290.9101,574 288,576.9102 288,580.5 288,580.6711 288.0183,580.8323 288.0312,581 L 285,581 289,585 293,581 290.0625,581 C 290.0438,580.8332 290,580.6718 290,580.5 290,578.0147 292.0147,576 294.5,576 296.9853,576 299,578.0147 299,580.5 299,580.6718 298.9562,580.8332 298.9375,581 L 300.9687,581 C 300.9817,580.8323 301,580.6711 301,580.5 301,576.9102 298.0899,574 294.5,574 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
-</g>
+<use xlink:href="#path5120" height="1250" width="1250" id="use22451" y="0" x="0" transform="matrix(-1,0,0,1.000085,-38.76176,-94.35424)" />
+<rect style="fill:none" id="rect22453" width="24.05" height="24" x="80.6858" y="-28.803" transform="matrix(0,1,1,0,0,0)" />
+<path id="path22455" d="M -11.9668,90.11223 C -12.7455,89.43522 -14.0693,89.67792 -14.6597,90.46077 -15.6351,91.64638 -15.9172,93.16305 -16.2761,94.58222 -16.5423,95.79253 -16.7095,97.02162 -16.7771,98.2554 -17.5654,96.69517 -18.4736,95.01934 -18.4901,93.26239 -18.5119,92.37434 -17.9777,91.62159 -17.6209,90.83626 -17.3262,90.17803 -18.1376,89.4931 -18.8334,89.70428 -19.6856,89.87006 -19.8276,90.81043 -19.803,91.48473 -19.7134,93.49021 -18.8909,95.4594 -18.0586,97.29225 -16.8791,99.71268 -15.1908,101.9573 -12.9826,103.6604 -12.1142,104.2845 -9.9179,105.0083 -8.8334,104.6324 -6.8334,103.6372 -6.8334,101.6468 -8.8334,101.6468 -9.552,101.3227 -11.3725,102.8907 -12.1086,102.866 -13.3235,102.857 -14.1896,101.8146 -14.5175,100.8217 -14.8507,99.50814 -14.5389,98.151 -14.3331,96.84131 -13.9978,95.13877 -13.6205,93.40174 -12.7366,91.86153 -12.5558,91.26334 -11.1394,90.90781 -11.9668,90.11223 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccsccccccccccc" inkscape:connector-curvature="0" />
+<path transform="scale(-1.036041,0.965213)" style="fill:url(#linearGradient19282)" d="M 15.59046,88.20062 C 15.05718,88.20062 14.65483,88.29109 14.38344,88.47202 14.11679,88.65296 13.98347,88.9196 13.98347,89.27194 13.98347,89.59572 14.0906,89.85046 14.30487,90.03615 14.5239,90.21709 14.82625,90.30756 15.21193,90.30756 15.69283,90.30756 16.09755,90.13615 16.4261,89.79332 16.75463,89.44574 16.9189,89.01245 16.91891,88.49345 L 16.91891,88.20062 15.59047,88.20062 M 19.49723,87.23643 19.49723,91.80027 16.91891,91.80027 16.91891,90.61467 C 16.57608,91.10034 16.1904,91.45507 15.76188,91.67885 15.33334,91.89788 14.81196,92.00739 14.19774,92.00739 13.36925,92.00739 12.6955,91.76694 12.17651,91.28603 11.66227,90.80037 11.40515,90.17186 11.40515,89.4005 11.40515,88.4625 11.72655,87.77447 12.36934,87.33641 13.0169,86.89837 14.03109,86.67934 15.41191,86.67933 L 16.91891,86.67933 16.91891,86.47935 C 16.9189,86.07464 16.75939,85.77943 16.44038,85.59372 16.12136,85.40327 15.62379,85.30804 14.94767,85.30804 14.4001,85.30804 13.89062,85.3628 13.41924,85.47231 12.94786,85.58183 12.50981,85.7461 12.10508,85.96512 L 12.10508,84.01531 C 12.65265,83.88199 13.2026,83.782 13.75493,83.71533 14.30725,83.64392 14.85958,83.60821 15.41191,83.6082 16.85462,83.60821 17.895,83.8939 18.53304,84.46526 19.17582,85.03188 19.49722,85.9556 19.49723,87.23642" id="path22457" inkscape:connector-curvature="0" />
</g>
-<g id="object-rotate-90-CCW" inkscape:label="#g23373">
-<g transform="matrix(-1,0,0,1,394.0002,725.3622)" id="g15900" inkscape:label="stock-rotate-90" style="display:inline">
-<rect transform="matrix(0,-1,-1,0,0,0)" style="fill:none;stroke:none" id="rect15902" width="16" height="16" x="-375" y="-77.0002" />
-<path id="path15904-4" transform="matrix(-1,0,0,1,394.0002,-213)" d="M 323.5,574 C 319.9101,574 317,576.9102 317,580.5 317,580.6711 317.0183,580.8323 317.0312,581 L 319.0625,581 C 319.0438,580.8332 319,580.6718 319,580.5 319,578.0147 321.0147,576 323.5,576 325.9853,576 328,578.0147 328,580.5 328,580.6718 327.9562,580.8332 327.9375,581 L 325,581 329,585 333,581 329.9687,581 C 329.9817,580.8323 330,580.6711 330,580.5 330,576.9102 327.0899,574 323.5,574 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="object-flip-ver" inkscape:label="#g30557">
-<g inkscape:label="stock-flip-vertical" id="g11667-3" style="display:inline" transform="translate(275.9998,705.3622)">
-<g id="g6273" inkscape:label="stock-flip-vertical">
-<rect style="fill:none;stroke:none" id="rect6216" width="16" height="16" x="379" y="-117.0002" transform="rotate(90)" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 110.0002,381 108.0002,381 C 107.9932,384.9896 107.9737,389.0105 108.0062,393 L 110.0062,393 C 109.9031,389.0117 109.9865,384.9905 110.0002,381 Z" id="path6220" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 109.0233,394 105.0002,390 113.0002,390 Z" id="path6222" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6271" d="M 109.0233,380 105.0002,384 113.0002,384 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
-</g>
-</g>
-</g>
-<g id="object-flip-hor" inkscape:label="#g30550">
-<g inkscape:label="stock-flip-horizontal" id="g11674" style="display:inline" transform="translate(265.9998,705.3622)">
-<rect style="fill:none;stroke:none" id="rect6281" width="16" height="16" x="-97.0002" y="-395" transform="scale(-1)" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 95.0002,388 95.0002,386 C 91.01056,385.993 86.98972,385.9735 83.00019,386.006 L 83.00019,388.006 C 86.98849,387.9029 91.00972,387.9863 95.0002,388 Z" id="path6283" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 82.00019,387.0231 86.0002,383 86.0002,391 Z" id="path6285" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6287" d="M 96.0002,387.0231 92.00019,383 92.00019,391 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
-</g>
-</g>
-<g id="edit-undo" inkscape:label="#g37656">
-<rect y="1107.362" x="285" height="16" width="16" id="rect10176" style="fill:none;stroke:none" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 286,1113.362 290,1117.362 290,1109.362 Z" id="path15820" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<path inkscape:connector-curvature="0" id="path7283" d="M 290,1112.362 290,1114.362 295.5,1114.362 C 296.3403,1114.362 297,1115.022 297,1115.862 L 297,1116.362 297,1116.862 C 297,1117.703 296.3403,1118.362 295.5,1118.362 L 295,1118.362 295,1120.362 295.5,1120.362 C 297.4212,1120.362 299,1118.783 299,1116.862 L 299,1116.362 299,1115.862 C 299,1113.941 297.4212,1112.362 295.5,1112.362 L 290,1112.362 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" />
-</g>
-<g id="edit-redo" inkscape:label="#g37661">
-<rect transform="scale(-1,1)" style="fill:none;stroke:none" id="rect37650" width="16" height="16" x="-333" y="1107.362" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path37652" d="M 332,1113.362 328,1117.362 328,1109.362 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" d="M 328,1112.362 328,1114.362 322.5,1114.362 C 321.6597,1114.362 321,1115.022 321,1115.862 L 321,1116.362 321,1116.862 C 321,1117.703 321.6597,1118.362 322.5,1118.362 L 323,1118.362 323,1120.362 322.5,1120.362 C 320.5788,1120.362 319,1118.783 319,1116.862 L 319,1116.362 319,1115.862 C 319,1113.941 320.5788,1112.362 322.5,1112.362 L 328,1112.362 Z" id="path37654" inkscape:connector-curvature="0" />
-</g>
-<g id="document-save" inkscape:label="#g73241">
-<g transform="translate(32)" id="g55560">
-<g id="g37774" transform="translate(32)">
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path11635" d="M 293,1140.362 288.9769,1136.362 296.9769,1136.362 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" id="rect4390-9" d="M 297,1139.362 297,1140.362 298.5817,1142.535 C 298.7689,1142.893 299.3255,1143.029 299.6784,1142.802 300.0313,1142.576 300,1142.362 300,1142.362 L 298.3019,1139.677 C 298.2231,1139.566 298.1419,1139.362 298,1139.362 L 297,1139.363 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" sodipodi:nodetypes="cccsccscc" />
-<rect transform="matrix(0,1,1,0,0,0)" style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:1;marker:none;enable-background:new" id="rect10837-5-8-4-4-4-1" y="285" x="1131.362" height="16" width="16" />
-<g transform="matrix(1.166667,0,0,1,96.99992,593.3622)" id="g4555">
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 162,549 162,554 174,554 174,549 Z M 165.7812,550.4375 C 165.802,550.4365 165.8229,550.4365 165.8437,550.4375 166.1347,550.3819 166.2909,550.7038 166.2857,551 L 166.2857,551 169.7143,551 169.7143,551 C 169.7103,550.7358 169.8251,550.4304 170.0893,550.4304 170.3535,550.4304 170.593,550.6733 170.5893,550.9375 L 170.5893,551 C 170.5893,551.5453 170.2596,552 169.7143,552 L 166.2857,552 C 165.7404,552 165.4375,551.5453 165.4375,551 L 165.4375,550.9375 C 165.4267,550.7204 165.5747,550.5052 165.7812,550.4375 Z" id="rect11668-7-5" sodipodi:nodetypes="ccccccsccccsccccccc" inkscape:connector-curvature="0" />
-</g>
-<rect y="1131.362" x="292" height="4.999998" width="2" id="rect11650" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
-<path sodipodi:nodetypes="cccsccscc" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 289.0007,1139.362 289.0007,1140.362 287.4189,1142.535 C 287.2318,1142.893 286.6752,1143.029 286.3223,1142.802 285.9693,1142.576 286.0007,1142.362 286.0007,1142.362 L 287.6988,1139.677 C 287.7776,1139.566 287.8588,1139.362 288.0007,1139.362 L 289.0007,1139.363 Z" id="path55558" inkscape:connector-curvature="0" />
-</g>
-</g>
-</g>
-<g transform="translate(416,1152.362)" id="edit-copy" inkscape:label="window-management">
-<rect y="-20" x="-5" height="16" width="16" id="rect28728" style="opacity:0.3;fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" id="rect28730" d="M -5,-20 -5,-9 -1,-9 -1,-15 6,-15 6,-20 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccccc" />
-<path inkscape:connector-curvature="0" id="rect28732" d="M 0,-14 0,-4 11,-4 11,-14 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" sodipodi:nodetypes="ccccc" />
-</g>
-<g id="document-print" transform="translate(64)" inkscape:label="#g47634">
-<g style="display:inline" inkscape:label="printer" id="g10817" transform="translate(269,733.3622)">
-<g id="g10819" inkscape:label="accessories-calculator">
-<rect y="398" x="48" height="16" width="16" id="rect10821" style="color:#bebebe;display:inline;overflow:visible;visibility:visible;opacity:0.5146443;fill:none;stroke:none;stroke-width:3;marker:none;enable-background:accumulate" />
-</g>
-<g transform="translate(48,398)" id="layer1-6" inkscape:label="Layer 1">
-<path inkscape:connector-curvature="0" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 2,4 C 1.5,4 1,4.5 1,5 L 1,9 C 1,9.5 1.5,10 2,10 L 3,10 3,8 13,8 13,10 14,10 C 14.5,10 15,9.5 15,9 L 15,5 C 15,4.5 14.5,4 14,4 L 2,4 Z" id="path3520" sodipodi:nodetypes="ccccccccccccc" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" id="path4804" d="M 4,1 4,3 12,3 12,1 4,1 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 4,9 4,14 12,14 12,9 Z" id="path4806" sodipodi:nodetypes="ccccc" />
-</g>
-</g>
-</g>
-<g id="document-open" transform="translate(32)" inkscape:label="#g55552">
-<g inkscape:label="folder-open" id="g14298" style="display:inline" transform="translate(24.0019,734.3622)">
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 261.572,398 C 261.2842,398 261.0432,398.242 261.0432,398.5312 L 261.0432,411.4675 C 261.0432,411.7659 261.2747,411.9987 261.572,411.9987 L 275.3205,411.9987 C 275.6177,411.9987 275.8493,411.766 275.8493,411.4675 L 277.0002,405.5306 C 277.0002,405.2415 276.7592,404.9994 276.4714,404.9994 L 265.0558,404.9994 264.0293,409.4989 C 264.0293,409.7759 263.8073,409.9989 263.5316,409.9989 263.2559,409.9989 263.0353,409.7759 263.0339,409.4989 L 263.0002,403 C 265.493,403 271.3467,403 275.0002,403 275.0002,403 275.2368,401 274.5196,401 L 266.9981,401 266.9981,398.5314 C 266.9981,398.2423 266.7571,398.0002 266.4693,398.0002 L 263.9981,398 262.0696,398 Z" id="path12212" inkscape:connector-curvature="0" sodipodi:nodetypes="sssssccsccssccscssccs" />
-<g style="display:inline" transform="translate(53.0004,-599)" inkscape:label="document-open" id="g12202">
-<rect style="color:#bebebe;display:inline;overflow:visible;visibility:visible;fill:none;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" id="rect12206" width="16" height="16" x="207.9998" y="996" />
-</g>
-</g>
-</g>
-<g id="document-new" inkscape:label="#g73235">
-<g id="g61181">
-<rect style="fill:none;stroke:none" id="rect14038-2" width="16" height="16" x="285" y="1131.362" rx="0" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" inkscape:transform-center-x="-0.004012586" inkscape:transform-center-y="-0.3040493" d="M 299.9786,1137.342 C 299.6337,1137.604 298.4947,1136.402 298.0659,1136.4 297.6296,1136.4 296.5539,1137.587 296.1989,1137.327 295.85,1137.07 296.6385,1135.675 296.5077,1135.255 296.3746,1134.828 295.0196,1134.128 295.1511,1133.701 295.2804,1133.28 296.737,1133.636 297.085,1133.378 297.439,1133.116 297.6296,1131.504 298.0659,1131.5 298.4947,1131.5 298.6541,1133.102 299,1133.362 299.3519,1133.627 300.9018,1133.315 301.0399,1133.741 301.1757,1134.16 299.7404,1134.811 299.6062,1135.23 299.4697,1135.656 300.3296,1137.076 299.9786,1137.342 Z" id="path8980" inkscape:connector-curvature="0" sodipodi:nodetypes="scsssssscss" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.9999999;marker:none;enable-background:accumulate" d="M 285.8125,1134.362 C 285.3541,1134.449 284.9918,1134.896 285,1135.362 L 285,1146.362 C 285,1146.886 285.4764,1147.362 286,1147.362 L 296,1147.362 C 296.5236,1147.362 297,1146.886 297,1146.362 L 297,1138.925 C 297.006,1138.661 296.9025,1138.396 296.7187,1138.206 L 293.1562,1134.643 C 292.9665,1134.46 292.7015,1134.356 292.4375,1134.362 L 286,1134.362 C 285.9688,1134.362 285.9375,1134.362 285.9063,1134.362 285.8751,1134.362 285.8438,1134.362 285.8126,1134.362 Z M 287,1136.362 292,1136.362 292,1139.362 295,1139.362 295,1145.362 287,1145.362 Z" id="path1234-4" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccc" />
-</g>
-</g>
-<g id="edit-cut" inkscape:label="#g61255">
-<rect y="1132.362" x="441" height="16" width="16" id="rect11780" style="fill:none;stroke:none" />
-<path id="rect4875" d="M 444.3591,1132.362 C 443.3207,1132.834 442.9817,1133.86 443.5813,1134.677 L 447.9102,1140.878 446.2001,1142.894 447.5849,1144.67 449.1615,1142.554 450.7076,1144.67 452.0797,1142.969 450.4129,1140.878 454.7418,1134.677 C 455.3413,1133.86 455.0024,1132.834 453.9639,1132.362 L 449.1615,1139.175 444.3591,1132.362 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccc" />
-<path inkscape:connector-curvature="0" id="path61250" d="M 453.5,1141.362 C 451.567,1141.362 450,1142.929 450,1144.862 450,1146.795 451.567,1148.362 453.5,1148.362 455.433,1148.362 457,1146.795 457,1144.862 457,1142.929 455.433,1141.362 453.5,1141.362 Z M 453.5,1143.362 C 454.3284,1143.362 455,1144.034 455,1144.862 455,1145.691 454.3284,1146.362 453.5,1146.362 452.6716,1146.362 452,1145.691 452,1144.862 452,1144.034 452.6716,1143.362 453.5,1143.362 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
-<path inkscape:connector-curvature="0" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 444.5,1141.362 C 442.567,1141.362 441,1142.929 441,1144.862 441,1146.795 442.567,1148.362 444.5,1148.362 446.433,1148.362 448,1146.795 448,1144.862 448,1142.929 446.433,1141.362 444.5,1141.362 Z M 444.5,1143.362 C 445.3284,1143.362 446,1144.034 446,1144.862 446,1145.691 445.3284,1146.362 444.5,1146.362 443.6716,1146.362 443,1145.691 443,1144.862 443,1144.034 443.6716,1143.362 444.5,1143.362 Z" id="path61253" />
-</g>
-<g id="edit-paste" inkscape:label="#g61302">
-<rect rx="0" y="1132.362" x="471" height="16" width="16" id="rect14038-0" style="fill:none;stroke:none" />
-<rect ry="0.5303301" rx="0.5303301" y="1133.362" x="475" height="3" width="6" id="rect6874-8" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" />
-<path sodipodi:nodetypes="cccccc" id="path6973-4" d="M 474,1137.362 474,1146.362 480,1146.362 482,1144.362 482,1137.362 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
-<path id="path6977-3" transform="translate(0,512.3622)" d="M 471.5312,622 C 471.2375,622 471,622.2374 471,622.5312 L 471,627 471,635.4687 C 471,635.7626 471.2375,636 471.5312,636 L 484.4687,636 C 484.7625,636 484.9881,635.7622 485,635.4687 L 485,627 485,622.5312 C 485,622.2374 484.7625,622 484.4687,622 L 482,622 482,623 483.4687,623 C 483.7625,623 484,623.2374 484,623.5312 L 484,627 484,634.4687 C 484,634.7626 483.7625,635 483.4687,635 L 472.5312,635 C 472.2375,635 472,634.7626 472,634.4687 L 472,627 472,623.5312 C 472,623.2374 472.2375,623 472.5312,623 L 474,623 474,622 471.5312,622 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
+<rect y="670.3622" x="1049" height="24" width="1" id="rect22505" style="fill:url(#linearGradient19282)" />
</g>
<g id="align-vertical-baseline" inkscape:label="#al_baselines_hor">
-<rect style="font-size:12px;fill:none;stroke:none" id="rect17558" width="24" height="24" x="670.3622" y="-1106" transform="rotate(90)" />
-<path id="path17560" d="M 1087.164,675.769 C 1087.943,675.0934 1089.266,675.3356 1089.857,676.1168 1090.832,677.3 1091.114,678.8135 1091.473,680.2297 1091.739,681.4375 1091.932,682.131 1092,683.3622 1092.788,681.8052 1093.671,680.6659 1093.687,678.9126 1093.709,678.0264 1093.175,677.2752 1092.818,676.4915 1092.523,675.8347 1093.335,675.1512 1094.03,675.3619 1094.883,675.5273 1095.025,676.4658 1095,677.1387 1094.91,679.14 1094.088,681.1051 1093.256,682.9341 1092.076,685.3495 1090.388,687.5895 1088.18,689.289 1087.311,689.9118 1085.115,690.6341 1084.03,690.259 1082.03,689.2659 1082.03,687.2796 1084.03,687.2796 1084.749,686.9562 1086.57,688.5209 1087.306,688.4963 1088.521,688.4873 1089.387,687.4471 1089.715,686.4562 1090.048,685.1454 1089.736,683.7911 1089.53,682.4841 1089.195,680.7851 1088.817,679.0517 1087.934,677.5147 1087.753,676.9177 1086.336,676.5629 1087.164,675.769 Z" style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:19.2307739px;line-height:100%;font-family:Baskerville-Nova;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccsccccccccccc" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccscscscccccccscscscscscccccc" style="font-style:normal;font-weight:normal;font-size:14.6271629px;font-family:'Bitstream Vera Sans';fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1100.349,680.7426 C 1099.797,680.7426 1099.38,680.8286 1099.099,681.0007 1098.823,681.1727 1098.684,681.4262 1098.684,681.7613 1098.684,682.0691 1098.795,682.3113 1099.017,682.4879 1099.244,682.6599 1099.558,682.7459 1099.957,682.7459 1100.455,682.7459 1100.875,682.583 1101.215,682.257 1101.556,681.9265 1101.726,681.5145 1101.726,681.0211 L 1101.726,680.7426 1100.349,680.7426 M 1104,679.8018 1104,684.3622 1101.726,684.3862 1101.726,683.0379 C 1101.371,683.4997 1100.971,683.837 1100.527,684.0498 1100.083,684.258 1099.543,684.3621 1098.906,684.3621 1098.048,684.3621 1097.35,684.1335 1096.812,683.6763 1096.28,683.2145 1096.013,682.6169 1096.013,681.8835 1096.013,680.9916 1096.346,680.3374 1097.012,679.9209 1097.683,679.5044 1098.734,679.2961 1100.164,679.2961 L 1101.726,679.2961 1101.726,679.106 C 1101.726,678.7212 1101.56,678.4405 1101.23,678.2639 1100.899,678.0828 1100.384,677.9923 1099.683,677.9923 1099.116,677.9923 1098.588,678.0443 1098.1,678.1485 1097.612,678.2526 1097.419,678.1535 1097,678.3621 L 1097,676.5082 1100.164,676.3761 C 1101.659,676.3761 1102.34,676.6237 1103.001,677.1669 1103.667,677.7057 1104,678.584 1104,679.8018" id="path17562" inkscape:connector-curvature="0" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect17564" width="1" height="24" x="684.3622" y="-1106" />
+<rect style="fill:none" id="rect17558" width="24" height="24" x="670.3622" y="-1106" transform="rotate(90)" />
+<path id="path17560" d="M 1087.164,675.769 C 1087.943,675.0934 1089.266,675.3356 1089.857,676.1168 1090.832,677.3 1091.114,678.8135 1091.473,680.2297 1091.739,681.4375 1091.932,682.131 1092,683.3622 1092.788,681.8052 1093.671,680.6659 1093.687,678.9126 1093.709,678.0264 1093.175,677.2752 1092.818,676.4915 1092.523,675.8347 1093.335,675.1512 1094.03,675.3619 1094.883,675.5273 1095.025,676.4658 1095,677.1387 1094.91,679.14 1094.088,681.1051 1093.256,682.9341 1092.076,685.3495 1090.388,687.5895 1088.18,689.289 1087.311,689.9118 1085.115,690.6341 1084.03,690.259 1082.03,689.2659 1082.03,687.2796 1084.03,687.2796 1084.749,686.9562 1086.57,688.5209 1087.306,688.4963 1088.521,688.4873 1089.387,687.4471 1089.715,686.4562 1090.048,685.1454 1089.736,683.7911 1089.53,682.4841 1089.195,680.7851 1088.817,679.0517 1087.934,677.5147 1087.753,676.9177 1086.336,676.5629 1087.164,675.769 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccsccccccccccc" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccscscscccccccscscscscscccccc" style="fill:url(#linearGradient19282)" d="M 1100.349,680.7426 C 1099.797,680.7426 1099.38,680.8286 1099.099,681.0007 1098.823,681.1727 1098.684,681.4262 1098.684,681.7613 1098.684,682.0691 1098.795,682.3113 1099.017,682.4879 1099.244,682.6599 1099.558,682.7459 1099.957,682.7459 1100.455,682.7459 1100.875,682.583 1101.215,682.257 1101.556,681.9265 1101.726,681.5145 1101.726,681.0211 L 1101.726,680.7426 1100.349,680.7426 M 1104,679.8018 1104,684.3622 1101.726,684.3862 1101.726,683.0379 C 1101.371,683.4997 1100.971,683.837 1100.527,684.0498 1100.083,684.258 1099.543,684.3621 1098.906,684.3621 1098.048,684.3621 1097.35,684.1335 1096.812,683.6763 1096.28,683.2145 1096.013,682.6169 1096.013,681.8835 1096.013,680.9916 1096.346,680.3374 1097.012,679.9209 1097.683,679.5044 1098.734,679.2961 1100.164,679.2961 L 1101.726,679.2961 1101.726,679.106 C 1101.726,678.7212 1101.56,678.4405 1101.23,678.2639 1100.899,678.0828 1100.384,677.9923 1099.683,677.9923 1099.116,677.9923 1098.588,678.0443 1098.1,678.1485 1097.612,678.2526 1097.419,678.1535 1097,678.3621 L 1097,676.5082 1100.164,676.3761 C 1101.659,676.3761 1102.34,676.6237 1103.001,677.1669 1103.667,677.7057 1104,678.584 1104,679.8018" id="path17562" inkscape:connector-curvature="0" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect17564" width="1" height="24" x="684.3622" y="-1106" />
</g>
<g id="distribute-horizontal-left" inkscape:label="#distribute_left" transform="translate(0,4.153308e-4)">
-<use style="fill:url(#linearGradient19282);stroke:#bebebe;stroke-opacity:1" height="1250" width="1250" transform="matrix(1,0,0,0.7500174,12,177.0778)" id="use5269" y="0" x="0" xlink:href="#path5265" />
-<path id="path5265" d="M 1049,708.3622 1049,709.2853 1049,731.4391 1049,732.3622 1050,732.3622 1050,731.4391 1050,709.2853 1050,708.3622 1049,708.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
-<rect transform="matrix(0,1,1,0,0,0)" y="1048.999" x="717.3622" height="5.001156" width="14.94228" id="rect5326" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000023;marker:none" />
-<rect y="717.3622" x="1061" height="9.017755" width="3.004833" id="rect5724" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.000002;marker:none" />
-<rect y="708.3622" x="1044" height="24" width="24" id="rect18537" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path18619" d="M 1053,715.3622 1050,712.3622 1053,709.3622 1053,711.3622 1058,711.3622 1058,709.3622 1061,712.3622 1058,715.3622 1058,713.3622 1053,713.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+<use height="1250" width="1250" transform="matrix(1,0,0,0.7500174,12,177.0778)" id="use5269" y="0" x="0" xlink:href="#path5265" />
+<path id="path5265" d="M 1049,708.3622 1049,709.2853 1049,731.4391 1049,732.3622 1050,732.3622 1050,731.4391 1050,709.2853 1050,708.3622 1049,708.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" inkscape:connector-curvature="0" />
+<rect transform="matrix(0,1,1,0,0,0)" y="1048.999" x="717.3622" height="5.001156" width="14.94228" id="rect5326" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0000023" />
+<rect y="717.3622" x="1061" height="9.017755" width="3.004833" id="rect5724" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.000002" />
+<rect y="708.3622" x="1044" height="24" width="24" id="rect18537" style="fill:none" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path18619" d="M 1053,715.3622 1050,712.3622 1053,709.3622 1053,711.3622 1058,711.3622 1058,709.3622 1061,712.3622 1058,715.3622 1058,713.3622 1053,713.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
</g>
<g id="distribute-horizontal-center" inkscape:label="#distribute_hcenter" transform="translate(0,4.153308e-4)">
-<use xlink:href="#path5265" x="0" y="0" id="use18671" transform="matrix(1,0,0,0.5000175,51.00122,354.1682)" width="1250" height="1250" style="fill:url(#linearGradient19282);stroke:#bebebe;stroke-opacity:1" />
-<path id="path18673" d="M 1088.001,708.3622 1088.001,708.8237 1088.001,719.9006 1088.001,720.3622 1089.001,720.3622 1089.001,719.9006 1089.001,708.8237 1089.001,708.3622 1088.001,708.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
-<path id="rect18675" d="M 1085,717.3622 1085,732.3622 1092,732.3622 1092,717.3622 1089.969,717.3622 1089.969,721.3934 1087.063,721.3934 1087.063,717.3622 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000023;marker:none" inkscape:connector-curvature="0" />
-<path id="rect18677" d="M 1098,717.3622 1098,726.3622 1103,726.3622 1103,717.3622 1102,717.3622 1102,721.3622 1099,721.3622 1099,717.3622 1098,717.3622 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.000002;marker:none" inkscape:connector-curvature="0" />
-<rect style="fill:none;stroke:none" id="rect18679" width="24" height="24" x="1082.001" y="708.3622" />
-<path id="path18683" d="M 1092.001,715.3622 1089.001,712.3622 1092.001,709.3622 1092.001,711.3622 1097.001,711.3622 1097.001,709.3622 1100.001,712.3622 1097.001,715.3622 1097.001,713.3622 1092.001,713.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
+<use xlink:href="#path5265" x="0" y="0" id="use18671" transform="matrix(1,0,0,0.5000175,51.00122,354.1682)" width="1250" height="1250" />
+<path id="path18673" d="M 1088.001,708.3622 1088.001,708.8237 1088.001,719.9006 1088.001,720.3622 1089.001,720.3622 1089.001,719.9006 1089.001,708.8237 1089.001,708.3622 1088.001,708.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" inkscape:connector-curvature="0" />
+<path id="rect18675" d="M 1085,717.3622 1085,732.3622 1092,732.3622 1092,717.3622 1089.969,717.3622 1089.969,721.3934 1087.063,721.3934 1087.063,717.3622 Z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0000023" inkscape:connector-curvature="0" />
+<path id="rect18677" d="M 1098,717.3622 1098,726.3622 1103,726.3622 1103,717.3622 1102,717.3622 1102,721.3622 1099,721.3622 1099,717.3622 1098,717.3622 Z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.000002" inkscape:connector-curvature="0" />
+<rect style="fill:none" id="rect18679" width="24" height="24" x="1082.001" y="708.3622" />
+<path id="path18683" d="M 1092.001,715.3622 1089.001,712.3622 1092.001,709.3622 1092.001,711.3622 1097.001,711.3622 1097.001,709.3622 1100.001,712.3622 1097.001,715.3622 1097.001,713.3622 1092.001,713.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
</g>
<g id="distribute-horizontal-right" inkscape:label="#distribute_right" transform="translate(0,4.153308e-4)">
-<use xlink:href="#path5265" x="0" y="0" id="use18748" transform="matrix(1,0,0,0.7500174,90,177.0778)" width="1250" height="1250" style="fill:url(#linearGradient19282);stroke:#707070;stroke-opacity:1" />
-<path inkscape:connector-curvature="0" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" d="M 1127,708.3622 1127,709.2853 1127,731.4391 1127,732.3622 1128,732.3622 1128,731.4391 1128,709.2853 1128,708.3622 1127,708.3622 Z" id="path18750" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000023;marker:none" id="rect18752" width="14.94228" height="5.001156" x="717.3622" y="1123" transform="matrix(0,1,1,0,0,0)" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.000002;marker:none" id="rect18754" width="3.004833" height="9.017755" x="1137" y="717.3622" />
-<rect style="fill:none;stroke:none" id="rect18756" width="24" height="24" x="1120" y="708.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1131,715.3622 1128,712.3622 1131,709.3622 1131,711.3622 1136,711.3622 1136,709.3622 1139,712.3622 1136,715.3622 1136,713.3622 1131,713.3622 Z" id="path18758" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
+<use xlink:href="#path5265" x="0" y="0" id="use18748" transform="matrix(1,0,0,0.7500174,90,177.0778)" width="1250" height="1250" />
+<path inkscape:connector-curvature="0" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" d="M 1127,708.3622 1127,709.2853 1127,731.4391 1127,732.3622 1128,732.3622 1128,731.4391 1128,709.2853 1128,708.3622 1127,708.3622 Z" id="path18750" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0000023" id="rect18752" width="14.94228" height="5.001156" x="717.3622" y="1123" transform="matrix(0,1,1,0,0,0)" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.000002" id="rect18754" width="3.004833" height="9.017755" x="1137" y="717.3622" />
+<rect style="fill:none" id="rect18756" width="24" height="24" x="1120" y="708.3622" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1131,715.3622 1128,712.3622 1131,709.3622 1131,711.3622 1136,711.3622 1136,709.3622 1139,712.3622 1136,715.3622 1136,713.3622 1131,713.3622 Z" id="path18758" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
</g>
<g id="distribute-horizontal-gaps" inkscape:label="#distribute_hdist" transform="translate(0,4.153308e-4)">
-<use style="fill:url(#linearGradient19282);stroke:#bebebe;stroke-opacity:1" height="1250" width="1250" transform="matrix(1,0,0,0.7500174,124,177.0778)" id="use18776" y="0" x="0" xlink:href="#path5265" />
-<path id="path18778" d="M 1161,708.3622 1161,709.2853 1161,731.4391 1161,732.3622 1162,732.3622 1162,731.4391 1162,709.2853 1162,708.3622 1161,708.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
-<rect transform="matrix(0,1,1,0,0,0)" y="1159" x="717.3622" height="3" width="14.94228" id="rect18780" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000023;marker:none" />
-<rect y="717.3622" x="1173" height="9.017755" width="4" id="rect18782" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.000002;marker:none" />
-<rect y="708.3622" x="1159" height="24" width="24" id="rect18784" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path18786" d="M 1165,715.3622 1162,712.3622 1165,709.3622 1165,711.3622 1170,711.3622 1170,709.3622 1173,712.3622 1170,715.3622 1170,713.3622 1165,713.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<use xlink:href="#path5265" x="0" y="0" id="use18794" transform="matrix(1,0,0,0.7500174,127,177.0778)" width="1250" height="1250" style="fill:url(#linearGradient19282);stroke:#bebebe;stroke-opacity:1" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1180,715.3622 1177,712.3622 1180,709.3622 1180,711.3622 1183,711.3622 1183,713.3622 1180,713.3622 Z" id="path18798" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
+<use height="1250" width="1250" transform="matrix(1,0,0,0.7500174,124,177.0778)" id="use18776" y="0" x="0" xlink:href="#path5265" />
+<path id="path18778" d="M 1161,708.3622 1161,709.2853 1161,731.4391 1161,732.3622 1162,732.3622 1162,731.4391 1162,709.2853 1162,708.3622 1161,708.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" inkscape:connector-curvature="0" />
+<rect transform="matrix(0,1,1,0,0,0)" y="1159" x="717.3622" height="3" width="14.94228" id="rect18780" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0000023" />
+<rect y="717.3622" x="1173" height="9.017755" width="4" id="rect18782" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.000002" />
+<rect y="708.3622" x="1159" height="24" width="24" id="rect18784" style="fill:none" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path18786" d="M 1165,715.3622 1162,712.3622 1165,709.3622 1165,711.3622 1170,711.3622 1170,709.3622 1173,712.3622 1170,715.3622 1170,713.3622 1165,713.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<use xlink:href="#path5265" x="0" y="0" id="use18794" transform="matrix(1,0,0,0.7500174,127,177.0778)" width="1250" height="1250" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1180,715.3622 1177,712.3622 1180,709.3622 1180,711.3622 1183,711.3622 1183,713.3622 1180,713.3622 Z" id="path18798" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
</g>
<g id="distribute-vertical-bottom" inkscape:label="#distribute_bottom" transform="translate(0,4.153308e-4)">
-<use xlink:href="#path5265" x="0" y="0" id="use18831" transform="matrix(0,-1,0.7500174,0,512.7158,1801.362)" width="1250" height="1250" style="fill:url(#linearGradient19282);stroke:#707070;stroke-opacity:1" />
-<path inkscape:connector-curvature="0" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" d="M 1044,764.3619 1044.923,764.3619 1067.077,764.3619 1068,764.3619 1068,763.3619 1067.077,763.3619 1044.923,763.3619 1044,763.3619 1044,764.3619 Z" id="path18833" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000023;marker:none" id="rect18835" width="14.94228" height="5.001156" x="1053" y="-764.3631" transform="scale(1,-1)" />
-<rect transform="rotate(-90)" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.000002;marker:none" id="rect18837" width="3.999697" height="9.017755" x="-752.3619" y="1053" />
-<rect transform="rotate(-90)" style="fill:none;stroke:none" id="rect18839" width="24" height="24" x="-770.3619" y="1044" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1051,760.3619 1048,763.3619 1045,760.3619 1047,760.3619 1047,755.3619 1045,755.3619 1048,752.3619 1051,755.3619 1049,755.3619 1049,760.3619 Z" id="path18841" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
+<use xlink:href="#path5265" x="0" y="0" id="use18831" transform="matrix(0,-1,0.7500174,0,512.7158,1801.362)" width="1250" height="1250" />
+<path inkscape:connector-curvature="0" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" d="M 1044,764.3619 1044.923,764.3619 1067.077,764.3619 1068,764.3619 1068,763.3619 1067.077,763.3619 1044.923,763.3619 1044,763.3619 1044,764.3619 Z" id="path18833" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0000023" id="rect18835" width="14.94228" height="5.001156" x="1053" y="-764.3631" transform="scale(1,-1)" />
+<rect transform="rotate(-90)" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.000002" id="rect18837" width="3.999697" height="9.017755" x="-752.3619" y="1053" />
+<rect transform="rotate(-90)" style="fill:none" id="rect18839" width="24" height="24" x="-770.3619" y="1044" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1051,760.3619 1048,763.3619 1045,760.3619 1047,760.3619 1047,755.3619 1045,755.3619 1048,752.3619 1051,755.3619 1049,755.3619 1049,760.3619 Z" id="path18841" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
</g>
<g id="distribute-vertical-center" inkscape:label="#distribute_vcenter" transform="translate(0,4.153308e-4)">
-<use style="fill:url(#linearGradient19282);stroke:#bebebe;stroke-opacity:1" height="1250" width="1250" transform="matrix(0,1,0.5416243,0,698.3349,-285.638)" id="use18859" y="0" x="0" xlink:href="#path5265" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" d="M 1082.001,751.3619 1082.501,751.3619 1094.5,751.3619 1095,751.3619 1095,752.3619 1094.5,752.3619 1082.501,752.3619 1082.001,752.3619 1082.001,751.3619 Z" id="path18861" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccc" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000023;marker:none" d="M 1092,760.3622 1105.969,760.2997 1105.969,767.2997 1092,767.3622 1092,765.331 1096,765.3622 1096,762.4559 1092,762.4247 Z" id="path18863" inkscape:connector-curvature="0" />
-<path sodipodi:nodetypes="ccccccccc" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.000002;marker:none" d="M 1092,749.3622 1100,749.3622 1100,754.3622 1092,754.3622 1092,753.3622 1096,753.3622 1096,750.3622 1092,750.3622 Z" id="path18865" inkscape:connector-curvature="0" />
-<rect transform="matrix(0,1,1,0,0,0)" y="1082.001" x="746.362" height="24" width="24" id="rect18867" style="fill:none;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1089.001,755.3619 1086.001,752.3619 1083.001,755.3619 1085.001,755.3619 1085.001,760.3619 1083.001,760.3619 1086.001,763.3619 1089.001,760.3619 1087.001,760.3619 1087.001,755.3619 Z" id="path18869" inkscape:connector-curvature="0" />
+<use height="1250" width="1250" transform="matrix(0,1,0.5416243,0,698.3349,-285.638)" id="use18859" y="0" x="0" xlink:href="#path5265" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" d="M 1082.001,751.3619 1082.501,751.3619 1094.5,751.3619 1095,751.3619 1095,752.3619 1094.5,752.3619 1082.501,752.3619 1082.001,752.3619 1082.001,751.3619 Z" id="path18861" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccc" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0000023" d="M 1092,760.3622 1105.969,760.2997 1105.969,767.2997 1092,767.3622 1092,765.331 1096,765.3622 1096,762.4559 1092,762.4247 Z" id="path18863" inkscape:connector-curvature="0" />
+<path sodipodi:nodetypes="ccccccccc" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.000002" d="M 1092,749.3622 1100,749.3622 1100,754.3622 1092,754.3622 1092,753.3622 1096,753.3622 1096,750.3622 1092,750.3622 Z" id="path18865" inkscape:connector-curvature="0" />
+<rect transform="matrix(0,1,1,0,0,0)" y="1082.001" x="746.362" height="24" width="24" id="rect18867" style="fill:none" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1089.001,755.3619 1086.001,752.3619 1083.001,755.3619 1085.001,755.3619 1085.001,760.3619 1083.001,760.3619 1086.001,763.3619 1089.001,760.3619 1087.001,760.3619 1087.001,755.3619 Z" id="path18869" inkscape:connector-curvature="0" />
</g>
<g id="distribute-vertical-top" inkscape:label="#distribute_top" transform="translate(0,4.153308e-4)">
<g transform="rotate(-90,1151,739.362)" id="g18885" inkscape:label="#distribute_right">
-<use xlink:href="#path5265" x="0" y="0" id="use18887" transform="matrix(1,0,0,0.7500174,90,177.0778)" width="1250" height="1250" style="fill:url(#linearGradient19282);stroke:#707070;stroke-opacity:1" />
-<path inkscape:connector-curvature="0" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" d="M 1127,708.3622 1127,709.2853 1127,731.4391 1127,732.3622 1128,732.3622 1128,731.4391 1128,709.2853 1128,708.3622 1127,708.3622 Z" id="path18889" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000023;marker:none" id="rect18891" width="14.94228" height="5.001156" x="717.3622" y="1123" transform="matrix(0,1,1,0,0,0)" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.000002;marker:none" id="rect18893" width="3.004833" height="9.017755" x="1137" y="717.3622" />
-<rect style="fill:none;stroke:none" id="rect18895" width="24" height="24" x="1120" y="708.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1131,715.3622 1128,712.3622 1131,709.3622 1131,711.3622 1136,711.3622 1136,709.3622 1139,712.3622 1136,715.3622 1136,713.3622 1131,713.3622 Z" id="path18897" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
+<use xlink:href="#path5265" x="0" y="0" id="use18887" transform="matrix(1,0,0,0.7500174,90,177.0778)" width="1250" height="1250" />
+<path inkscape:connector-curvature="0" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" d="M 1127,708.3622 1127,709.2853 1127,731.4391 1127,732.3622 1128,732.3622 1128,731.4391 1128,709.2853 1128,708.3622 1127,708.3622 Z" id="path18889" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0000023" id="rect18891" width="14.94228" height="5.001156" x="717.3622" y="1123" transform="matrix(0,1,1,0,0,0)" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.000002" id="rect18893" width="3.004833" height="9.017755" x="1137" y="717.3622" />
+<rect style="fill:none" id="rect18895" width="24" height="24" x="1120" y="708.3622" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1131,715.3622 1128,712.3622 1131,709.3622 1131,711.3622 1136,711.3622 1136,709.3622 1139,712.3622 1136,715.3622 1136,713.3622 1131,713.3622 Z" id="path18897" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
</g>
</g>
<g id="distribute-vertical-gaps" inkscape:label="#distribute_vdist" transform="translate(0,4.153308e-4)">
<g transform="rotate(-90,1190,739.362)" id="g18927" inkscape:label="#distribute_hdist">
-<use style="fill:url(#linearGradient19282);stroke:#bebebe;stroke-opacity:1" height="1250" width="1250" transform="matrix(1,0,0,0.7500174,124,177.0778)" id="use18929" y="0" x="0" xlink:href="#path5265" />
-<path id="path18931" d="M 1161,708.3622 1161,709.2853 1161,731.4391 1161,732.3622 1162,732.3622 1162,731.4391 1162,709.2853 1162,708.3622 1161,708.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000004;marker:none;enable-background:accumulate" inkscape:connector-curvature="0" />
-<rect transform="matrix(0,1,1,0,0,0)" y="1159" x="717.3622" height="3" width="14.94228" id="rect18933" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000023;marker:none" />
-<rect y="717.3622" x="1173" height="9.017755" width="4" id="rect18935" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.000002;marker:none" />
-<rect y="708.3622" x="1159" height="24" width="24" id="rect18937" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path18939" d="M 1165,715.3622 1162,712.3622 1165,709.3622 1165,711.3622 1170,711.3622 1170,709.3622 1173,712.3622 1170,715.3622 1170,713.3622 1165,713.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
-<use xlink:href="#path5265" x="0" y="0" id="use18941" transform="matrix(1,0,0,0.7500174,127,177.0778)" width="1250" height="1250" style="fill:url(#linearGradient19282);stroke:#bebebe;stroke-opacity:1" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1180,715.3622 1177,712.3622 1180,709.3622 1180,711.3622 1183,711.3622 1183,713.3622 1180,713.3622 Z" id="path18943" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
+<use height="1250" width="1250" transform="matrix(1,0,0,0.7500174,124,177.0778)" id="use18929" y="0" x="0" xlink:href="#path5265" />
+<path id="path18931" d="M 1161,708.3622 1161,709.2853 1161,731.4391 1161,732.3622 1162,732.3622 1162,731.4391 1162,709.2853 1162,708.3622 1161,708.3622 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000004" inkscape:connector-curvature="0" />
+<rect transform="matrix(0,1,1,0,0,0)" y="1159" x="717.3622" height="3" width="14.94228" id="rect18933" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0000023" />
+<rect y="717.3622" x="1173" height="9.017755" width="4" id="rect18935" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.000002" />
+<rect y="708.3622" x="1159" height="24" width="24" id="rect18937" style="fill:none" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path18939" d="M 1165,715.3622 1162,712.3622 1165,709.3622 1165,711.3622 1170,711.3622 1170,709.3622 1173,712.3622 1170,715.3622 1170,713.3622 1165,713.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
+<use xlink:href="#path5265" x="0" y="0" id="use18941" transform="matrix(1,0,0,0.7500174,127,177.0778)" width="1250" height="1250" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1180,715.3622 1177,712.3622 1180,709.3622 1180,711.3622 1183,711.3622 1183,713.3622 1180,713.3622 Z" id="path18943" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
</g>
</g>
<g id="distribute-horizontal-baseline" inkscape:label="#distribute_baseline_hor" transform="translate(0,4.153308e-4)">
-<rect style="font-size:12px;fill:none;stroke:none" id="rect18962" width="24" height="24" x="785.3622" y="-1068" transform="rotate(90)" />
-<path id="path18964" d="M 1058.23,794.6165 C 1059.009,793.9409 1060.333,794.1831 1060.923,794.9643 1061.899,796.1475 1062.181,797.661 1062.54,799.0772 1062.806,800.285 1062.999,800.9785 1063.066,802.2097 1063.855,800.6527 1064.737,799.5134 1064.754,797.7601 1064.776,796.8739 1064.241,796.1227 1063.884,795.339 1063.59,794.6822 1064.401,793.9987 1065.097,794.2094 1065.949,794.3748 1066.091,795.3133 1066.066,795.9862 1065.976,797.9875 1065.154,799.9526 1064.322,801.7816 1063.143,804.197 1061.454,806.437 1059.246,808.1365 1058.378,808.7593 1056.181,809.4816 1055.097,809.1065 1053.097,808.1134 1053.097,806.1271 1055.097,806.1271 1055.815,805.8037 1057.636,807.3684 1058.372,807.3438 1059.587,807.3348 1060.453,806.2946 1060.781,805.3037 1061.114,803.9929 1060.802,802.6386 1060.596,801.3316 1060.261,799.6326 1059.884,797.8992 1059,796.3622 1058.819,795.7652 1057.403,795.4104 1058.23,794.6165 Z" style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:19.2307739px;line-height:100%;font-family:Baskerville-Nova;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:nodetypes="cccccsccccccccccc" inkscape:connector-curvature="0" />
-<path style="font-style:normal;font-weight:normal;font-size:14.6271629px;font-family:'Bitstream Vera Sans';fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1050.349,798.7995 C 1049.797,798.7995 1049.38,798.8866 1049.099,799.0609 1048.823,799.2352 1048.684,799.4921 1048.684,799.8314 1048.684,800.1433 1048.795,800.3887 1049.017,800.5675 1049.244,800.7418 1049.558,800.8289 1049.957,800.8289 1050.455,800.8289 1050.875,800.6638 1051.215,800.3336 1051.556,799.9988 1051.726,799.5815 1051.726,799.0816 L 1051.726,798.7995 1050.349,798.7995 M 1054,797.3622 1054,802.3622 1052,802.3622 1052,801.2202 C 1051.645,801.688 1051.245,802.0297 1050.801,802.2452 1050.357,802.4562 1049.817,802.5617 1049.181,802.5617 1048.322,802.5617 1047.35,802.2346 1046.812,801.7714 1046.28,801.3036 1046.013,800.6982 1046.013,799.9553 1046.013,799.0518 1046.346,798.3891 1047.012,797.9671 1047.683,797.5452 1048.734,797.3342 1050.164,797.3342 L 1051.726,797.3342 1051.726,797.1416 C 1051.726,796.7518 1051.56,796.4674 1051.23,796.2885 1050.899,796.1051 1050.384,796.0134 1049.683,796.0134 1049.116,796.0134 1048.588,796.0661 1048.1,796.1716 1047.612,796.2771 1047.158,796.4353 1046.738,796.6463 L 1046.738,794.7682 C 1047.306,794.6398 1047.875,794.5435 1048.448,794.4793 1049.02,794.4105 1049.592,794.3761 1050.164,794.3761 1051.659,794.3761 1052.162,794.4583 1052.823,795.0086 1053.489,795.5544 1054,796.1285 1054,797.3622" id="path18967" inkscape:connector-curvature="0" sodipodi:nodetypes="ccscscccccccccscscscccsccccccc" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect18969" width="1" height="24" x="1045" y="785.3622" />
-<rect y="785.3622" x="1057" height="24" width="1" id="rect18981" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1049,791.3622 1046,788.3622 1049,785.3622 1049,787.3622 1054,787.3622 1054,785.3622 1057,788.3622 1054,791.3622 1054,789.3622 1049,789.3622 Z" id="path18995" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
+<rect style="fill:none" id="rect18962" width="24" height="24" x="785.3622" y="-1068" transform="rotate(90)" />
+<path id="path18964" d="M 1058.23,794.6165 C 1059.009,793.9409 1060.333,794.1831 1060.923,794.9643 1061.899,796.1475 1062.181,797.661 1062.54,799.0772 1062.806,800.285 1062.999,800.9785 1063.066,802.2097 1063.855,800.6527 1064.737,799.5134 1064.754,797.7601 1064.776,796.8739 1064.241,796.1227 1063.884,795.339 1063.59,794.6822 1064.401,793.9987 1065.097,794.2094 1065.949,794.3748 1066.091,795.3133 1066.066,795.9862 1065.976,797.9875 1065.154,799.9526 1064.322,801.7816 1063.143,804.197 1061.454,806.437 1059.246,808.1365 1058.378,808.7593 1056.181,809.4816 1055.097,809.1065 1053.097,808.1134 1053.097,806.1271 1055.097,806.1271 1055.815,805.8037 1057.636,807.3684 1058.372,807.3438 1059.587,807.3348 1060.453,806.2946 1060.781,805.3037 1061.114,803.9929 1060.802,802.6386 1060.596,801.3316 1060.261,799.6326 1059.884,797.8992 1059,796.3622 1058.819,795.7652 1057.403,795.4104 1058.23,794.6165 Z" style="fill:url(#linearGradient19282)" sodipodi:nodetypes="cccccsccccccccccc" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="M 1050.349,798.7995 C 1049.797,798.7995 1049.38,798.8866 1049.099,799.0609 1048.823,799.2352 1048.684,799.4921 1048.684,799.8314 1048.684,800.1433 1048.795,800.3887 1049.017,800.5675 1049.244,800.7418 1049.558,800.8289 1049.957,800.8289 1050.455,800.8289 1050.875,800.6638 1051.215,800.3336 1051.556,799.9988 1051.726,799.5815 1051.726,799.0816 L 1051.726,798.7995 1050.349,798.7995 M 1054,797.3622 1054,802.3622 1052,802.3622 1052,801.2202 C 1051.645,801.688 1051.245,802.0297 1050.801,802.2452 1050.357,802.4562 1049.817,802.5617 1049.181,802.5617 1048.322,802.5617 1047.35,802.2346 1046.812,801.7714 1046.28,801.3036 1046.013,800.6982 1046.013,799.9553 1046.013,799.0518 1046.346,798.3891 1047.012,797.9671 1047.683,797.5452 1048.734,797.3342 1050.164,797.3342 L 1051.726,797.3342 1051.726,797.1416 C 1051.726,796.7518 1051.56,796.4674 1051.23,796.2885 1050.899,796.1051 1050.384,796.0134 1049.683,796.0134 1049.116,796.0134 1048.588,796.0661 1048.1,796.1716 1047.612,796.2771 1047.158,796.4353 1046.738,796.6463 L 1046.738,794.7682 C 1047.306,794.6398 1047.875,794.5435 1048.448,794.4793 1049.02,794.4105 1049.592,794.3761 1050.164,794.3761 1051.659,794.3761 1052.162,794.4583 1052.823,795.0086 1053.489,795.5544 1054,796.1285 1054,797.3622" id="path18967" inkscape:connector-curvature="0" sodipodi:nodetypes="ccscscccccccccscscscccsccccccc" />
+<rect style="fill:url(#linearGradient19282)" id="rect18969" width="1" height="24" x="1045" y="785.3622" />
+<rect y="785.3622" x="1057" height="24" width="1" id="rect18981" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1049,791.3622 1046,788.3622 1049,785.3622 1049,787.3622 1054,787.3622 1054,785.3622 1057,788.3622 1054,791.3622 1054,789.3622 1049,789.3622 Z" id="path18995" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" />
</g>
<g id="distribute-vertical-baseline" inkscape:label="#distribute_baseline_vert" transform="translate(0,4.153308e-4)">
-<rect transform="rotate(90)" y="-1106" x="785.3622" height="24" width="24" id="rect19003" style="font-size:12px;fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccsccccccccccc" style="font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:19.2307739px;line-height:100%;font-family:Baskerville-Nova;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1097.164,795.7771 C 1097.943,795.1486 1099.266,795.3739 1099.857,796.1007 1100.832,797.2014 1101.114,798.6094 1101.473,799.9269 1101.739,801.0505 1101.932,801.6956 1102,802.841 1102.788,801.3926 1103.671,800.3327 1103.687,798.7016 1103.709,797.8772 1103.175,797.1783 1102.818,796.4493 1102.523,795.8382 1103.335,795.2023 1104.03,795.3984 1104.883,795.5523 1105.025,796.4253 1105,797.0513 1104.91,798.9131 1104.088,800.7412 1103.256,802.4428 1102.076,804.6898 1100.388,806.7736 1098.18,808.3547 1097.311,808.9341 1095.115,809.6061 1094.03,809.2571 1092.03,808.3332 1092.03,806.4854 1094.03,806.4854 1094.749,806.1845 1096.57,807.6402 1097.306,807.6172 1098.521,807.6092 1099.387,806.6412 1099.715,805.7194 1100.048,804.4999 1099.736,803.24 1099.53,802.0241 1099.195,800.4436 1098.817,798.831 1097.934,797.4011 1097.753,796.8458 1096.336,796.5157 1097.164,795.7771 Z" id="path19005" />
-<path sodipodi:nodetypes="ccscscccccccccscscscccsccccccc" inkscape:connector-curvature="0" id="path19007" d="M 1101.349,789.7995 C 1100.797,789.7995 1100.38,789.8866 1100.099,790.0609 1099.823,790.2352 1099.684,790.4921 1099.684,790.8314 1099.684,791.1433 1099.795,791.3887 1100.017,791.5675 1100.244,791.7418 1100.558,791.8289 1100.957,791.8289 1101.455,791.8289 1101.875,791.6638 1102.215,791.3336 1102.556,790.9988 1102.726,790.5815 1102.726,790.0816 L 1102.726,789.7995 1101.349,789.7995 M 1105,788.3622 1105,793.3622 1103,793.3622 1103,792.2202 C 1102.645,792.688 1102.245,793.0297 1101.801,793.2452 1101.357,793.4562 1100.817,793.5617 1100.181,793.5617 1099.322,793.5617 1098.35,793.2346 1097.812,792.7714 1097.28,792.3036 1097.013,791.6982 1097.013,790.9553 1097.013,790.0518 1097.346,789.3891 1098.012,788.9671 1098.683,788.5452 1099.734,788.3342 1101.164,788.3342 L 1102.726,788.3342 1102.726,788.1416 C 1102.726,787.7518 1102.56,787.4674 1102.23,787.2885 1101.899,787.1051 1101.384,787.0134 1100.683,787.0134 1100.116,787.0134 1099.588,787.0661 1099.1,787.1716 1098.612,787.2771 1098.158,787.4353 1097.738,787.6463 L 1097.738,785.7682 C 1098.306,785.6398 1098.875,785.5435 1099.448,785.4793 1100.02,785.4105 1100.592,785.3761 1101.164,785.3761 1102.659,785.3761 1103.162,785.4583 1103.823,786.0086 1104.489,786.5544 1105,787.1285 1105,788.3622" style="font-style:normal;font-weight:normal;font-size:14.6271629px;font-family:'Bitstream Vera Sans';fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" y="-1106" x="805.3622" height="24" width="1" id="rect19009" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19011" width="1" height="24" x="793.3622" y="-1106" />
-<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path19013" d="M 1084,797.3622 1087,794.3622 1090,797.3622 1088,797.3622 1088,802.3622 1090,802.3622 1087,805.3622 1084,802.3622 1086,802.3622 1086,797.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" />
+<rect transform="rotate(90)" y="-1106" x="785.3622" height="24" width="24" id="rect19003" style="fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccsccccccccccc" style="fill:url(#linearGradient19282)" d="M 1097.164,795.7771 C 1097.943,795.1486 1099.266,795.3739 1099.857,796.1007 1100.832,797.2014 1101.114,798.6094 1101.473,799.9269 1101.739,801.0505 1101.932,801.6956 1102,802.841 1102.788,801.3926 1103.671,800.3327 1103.687,798.7016 1103.709,797.8772 1103.175,797.1783 1102.818,796.4493 1102.523,795.8382 1103.335,795.2023 1104.03,795.3984 1104.883,795.5523 1105.025,796.4253 1105,797.0513 1104.91,798.9131 1104.088,800.7412 1103.256,802.4428 1102.076,804.6898 1100.388,806.7736 1098.18,808.3547 1097.311,808.9341 1095.115,809.6061 1094.03,809.2571 1092.03,808.3332 1092.03,806.4854 1094.03,806.4854 1094.749,806.1845 1096.57,807.6402 1097.306,807.6172 1098.521,807.6092 1099.387,806.6412 1099.715,805.7194 1100.048,804.4999 1099.736,803.24 1099.53,802.0241 1099.195,800.4436 1098.817,798.831 1097.934,797.4011 1097.753,796.8458 1096.336,796.5157 1097.164,795.7771 Z" id="path19005" />
+<path sodipodi:nodetypes="ccscscccccccccscscscccsccccccc" inkscape:connector-curvature="0" id="path19007" d="M 1101.349,789.7995 C 1100.797,789.7995 1100.38,789.8866 1100.099,790.0609 1099.823,790.2352 1099.684,790.4921 1099.684,790.8314 1099.684,791.1433 1099.795,791.3887 1100.017,791.5675 1100.244,791.7418 1100.558,791.8289 1100.957,791.8289 1101.455,791.8289 1101.875,791.6638 1102.215,791.3336 1102.556,790.9988 1102.726,790.5815 1102.726,790.0816 L 1102.726,789.7995 1101.349,789.7995 M 1105,788.3622 1105,793.3622 1103,793.3622 1103,792.2202 C 1102.645,792.688 1102.245,793.0297 1101.801,793.2452 1101.357,793.4562 1100.817,793.5617 1100.181,793.5617 1099.322,793.5617 1098.35,793.2346 1097.812,792.7714 1097.28,792.3036 1097.013,791.6982 1097.013,790.9553 1097.013,790.0518 1097.346,789.3891 1098.012,788.9671 1098.683,788.5452 1099.734,788.3342 1101.164,788.3342 L 1102.726,788.3342 1102.726,788.1416 C 1102.726,787.7518 1102.56,787.4674 1102.23,787.2885 1101.899,787.1051 1101.384,787.0134 1100.683,787.0134 1100.116,787.0134 1099.588,787.0661 1099.1,787.1716 1098.612,787.2771 1098.158,787.4353 1097.738,787.6463 L 1097.738,785.7682 C 1098.306,785.6398 1098.875,785.5435 1099.448,785.4793 1100.02,785.4105 1100.592,785.3761 1101.164,785.3761 1102.659,785.3761 1103.162,785.4583 1103.823,786.0086 1104.489,786.5544 1105,787.1285 1105,788.3622" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" y="-1106" x="805.3622" height="24" width="1" id="rect19009" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" style="fill:url(#linearGradient19282)" id="rect19011" width="1" height="24" x="793.3622" y="-1106" />
+<path sodipodi:nodetypes="ccccccccccc" inkscape:connector-curvature="0" id="path19013" d="M 1084,797.3622 1087,794.3622 1090,797.3622 1088,797.3622 1088,802.3622 1090,802.3622 1087,805.3622 1084,802.3622 1086,802.3622 1086,797.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" />
</g>
<g id="distribute-randomize" inkscape:label="#distribute_randomize" transform="translate(0,4.153308e-4)">
-<rect y="823.3622" x="1044" height="24" width="24" id="rect19031" style="fill:none;stroke:none" />
-<rect transform="translate(0,512.3622)" y="313" x="1046" height="4" width="6" id="rect19033" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="832.3622" x="1051" height="4" width="6" id="rect19035" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19037" width="6" height="4" x="1056" y="826.3622" />
-<rect y="834.3622" x="1060" height="4" width="6" id="rect19039" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19041" width="6" height="4" x="1046" y="838.3622" />
-<rect y="841.3622" x="1054" height="4" width="6" id="rect19043" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="823.3622" x="1044" height="24" width="24" id="rect19031" style="fill:none" />
+<rect transform="translate(0,512.3622)" y="313" x="1046" height="4" width="6" id="rect19033" style="fill:url(#linearGradient19282)" />
+<rect y="832.3622" x="1051" height="4" width="6" id="rect19035" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19037" width="6" height="4" x="1056" y="826.3622" />
+<rect y="834.3622" x="1060" height="4" width="6" id="rect19039" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19041" width="6" height="4" x="1046" y="838.3622" />
+<rect y="841.3622" x="1054" height="4" width="6" id="rect19043" style="fill:url(#linearGradient19282)" />
</g>
<g id="distribute-unclump" inkscape:label="#unclump" transform="translate(0,4.153308e-4)">
-<rect y="823.3622" x="1082" height="24" width="24" id="rect19054" style="fill:none;stroke:none" />
-<rect y="833.3622" x="1083" height="4.941823" width="6.000003" id="rect19056" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="826.3608" x="1098" height="4.941819" width="5.998661" id="rect19058" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="840.4218" x="1098" height="4.941819" width="5.998661" id="rect19061" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect ry="0.9999999" rx="1" y="833.3622" x="1100" height="4.999998" width="2" id="rect19286" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="matrix(0.3292633,0.9442382,-0.9505411,0.3105989,0,0)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19288" width="1.732945" height="6.224145" x="1128.639" y="-761.7267" rx="0.9733821" ry="0.9763651" />
-<rect ry="0.9763651" rx="0.9733821" y="-1312.294" x="-460.7786" height="6.224145" width="1.732945" id="rect19292" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="matrix(0.3292633,-0.9442382,-0.9505411,-0.3105989,0,0)" />
+<rect y="823.3622" x="1082" height="24" width="24" id="rect19054" style="fill:none" />
+<rect y="833.3622" x="1083" height="4.941823" width="6.000003" id="rect19056" style="fill:url(#linearGradient19282)" />
+<rect y="826.3608" x="1098" height="4.941819" width="5.998661" id="rect19058" style="fill:url(#linearGradient19282)" />
+<rect y="840.4218" x="1098" height="4.941819" width="5.998661" id="rect19061" style="fill:url(#linearGradient19282)" />
+<rect ry="0.9999999" rx="1" y="833.3622" x="1100" height="4.999998" width="2" id="rect19286" style="fill:url(#linearGradient19282)" />
+<rect transform="matrix(0.3292633,0.9442382,-0.9505411,0.3105989,0,0)" style="fill:url(#linearGradient19282)" id="rect19288" width="1.732945" height="6.224145" x="1128.639" y="-761.7267" rx="0.9733821" ry="0.9763651" />
+<rect ry="0.9763651" rx="0.9733821" y="-1312.294" x="-460.7786" height="6.224145" width="1.732945" id="rect19292" style="fill:url(#linearGradient19282)" transform="matrix(0.3292633,-0.9442382,-0.9505411,-0.3105989,0,0)" />
</g>
<g id="distribute-graph" inkscape:label="#distribute_graph" transform="translate(0,4.153308e-4)">
-<rect ry="0.9714081" rx="0" y="823.3622" x="1120" height="24" width="24" id="rect19372" style="fill:none;stroke:none" />
-<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(-1,511.3622)" d="M 1125,320 A 2,2 0 0 1 1123.007,322 2,2 0 0 1 1121,320.0143 2,2 0 0 1 1122.979,318.0001 2,2 0 0 1 1125,319.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19374" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19376" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="M 1125,320 A 2,2 0 0 1 1123.007,322 2,2 0 0 1 1121,320.0143 2,2 0 0 1 1122.979,318.0001 2,2 0 0 1 1125,319.9714 L 1123,320 Z" transform="translate(4,505.3622)" sodipodi:start="0" sodipodi:end="6.268901" />
-<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(13.0002,507.3908)" d="M 1125,320 A 2,2 0 0 1 1123.007,322 2,2 0 0 1 1121,320.0143 2,2 0 0 1 1122.979,318.0001 2,2 0 0 1 1125,319.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19378" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19380" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="M 1125,320 A 2,2 0 0 1 1123.007,322 2,2 0 0 1 1121,320.0143 2,2 0 0 1 1122.979,318.0001 2,2 0 0 1 1125,319.9714 L 1123,320 Z" transform="translate(12,515.3622)" sodipodi:start="0" sodipodi:end="6.268901" />
-<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(4,517.3622)" d="M 1125,320 A 2,2 0 0 1 1123.007,322 2,2 0 0 1 1121,320.0143 2,2 0 0 1 1122.979,318.0001 2,2 0 0 1 1125,319.9714 L 1123,320 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19384" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19387" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="M 1125,320 A 2,2 0 0 1 1123.007,322 2,2 0 0 1 1121,320.0143 2,2 0 0 1 1122.979,318.0001 2,2 0 0 1 1125,319.9714 L 1123,320 Z" transform="translate(17,523.3622)" sodipodi:start="0" sodipodi:end="6.268901" />
-<path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path19391" d="M 1135,835.3622 1127,837.3622 1122,831.3622 1127,825.3622 1136,827.3622 Z" inkscape:transform-center-y="-0.1777287" inkscape:transform-center-x="0.460128" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0227215;stroke-opacity:1" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path19394" d="M 1135,835.3622 1140,843.3622 1132,845.3622 1132,845.3622" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
-<path sodipodi:end="6.268901" sodipodi:start="0" transform="matrix(0.9886057,0,0,1.325734,11.90974,403.2185)" d="M 1135,333.5 A 2,1.5 0 0 1 1133.007,335 2,1.5 0 0 1 1131,333.5107 2,1.5 0 0 1 1132.979,332.0001 2,1.5 0 0 1 1135,333.4786 L 1133,333.5 Z" sodipodi:ry="1.5" sodipodi:rx="2" sodipodi:cy="333.5" sodipodi:cx="1133" id="path19396" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
+<rect ry="0.9714081" rx="0" y="823.3622" x="1120" height="24" width="24" id="rect19372" style="fill:none" />
+<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(-1,511.3622)" d="m 1125,320 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19374" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
+<path sodipodi:type="arc" style="fill:url(#linearGradient19282)" id="path19376" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" transform="translate(4,505.3622)" sodipodi:start="0" sodipodi:end="6.268901" />
+<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(13.0002,507.3908)" d="m 1125,320 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19378" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
+<path sodipodi:type="arc" style="fill:url(#linearGradient19282)" id="path19380" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" transform="translate(12,515.3622)" sodipodi:start="0" sodipodi:end="6.268901" />
+<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(4,517.3622)" d="m 1125,320 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="320" sodipodi:cx="1123" id="path19384" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
+<path sodipodi:type="arc" style="fill:url(#linearGradient19282)" id="path19387" sodipodi:cx="1123" sodipodi:cy="320" sodipodi:rx="2" sodipodi:ry="2" d="m 1125,320 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" transform="translate(17,523.3622)" sodipodi:start="0" sodipodi:end="6.268901" />
+<path sodipodi:nodetypes="cccccc" inkscape:connector-curvature="0" id="path19391" d="M 1135,835.3622 1127,837.3622 1122,831.3622 1127,825.3622 1136,827.3622 Z" inkscape:transform-center-y="-0.1777287" inkscape:transform-center-x="0.460128" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0227215" />
+<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path19394" d="M 1135,835.3622 1140,843.3622 1132,845.3622 1132,845.3622" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px" />
+<path sodipodi:end="6.268901" sodipodi:start="0" transform="matrix(0.9886057,0,0,1.325734,11.90974,403.2185)" d="m 1135,333.5 a 2,1.5 0 0 1 -1.993,1.5 2,1.5 0 0 1 -2.007,-1.4893 2,1.5 0 0 1 1.979,-1.5106 2,1.5 0 0 1 2.021,1.4785 l -2,0.021 z" sodipodi:ry="1.5" sodipodi:rx="2" sodipodi:cy="333.5" sodipodi:cx="1133" id="path19396" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
</g>
<g id="distribute-remove-overlaps" inkscape:label="#g19465" transform="translate(0,4.153308e-4)">
-<rect ry="0" y="823.3622" x="1156" height="24" width="22" id="rect19455" style="fill:none;stroke:none" />
-<rect y="824.3622" x="1157" height="4.999998" width="5" id="rect19457" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="832.3622" x="1157" height="14" width="5" id="rect19459" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19461" width="5" height="22" x="1165" y="824.3622" />
-<rect y="824.3622" x="1173" height="22" width="5" id="rect19463" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect ry="0" y="823.3622" x="1156" height="24" width="22" id="rect19455" style="fill:none" />
+<rect y="824.3622" x="1157" height="4.999998" width="5" id="rect19457" style="fill:url(#linearGradient19282)" />
+<rect y="832.3622" x="1157" height="14" width="5" id="rect19459" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19461" width="5" height="22" x="1165" y="824.3622" />
+<rect y="824.3622" x="1173" height="22" width="5" id="rect19463" style="fill:url(#linearGradient19282)" />
</g>
<g id="distribute-graph-directed" inkscape:label="#directed_graph" transform="translate(0,4.153308e-4)">
-<rect y="823.3622" x="1192" height="24" width="24" id="rect19472" style="fill:none;stroke:none" />
-<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(-1,509.3622)" d="M 1199,316 A 2,2 0 0 1 1197.007,318 2,2 0 0 1 1195,316.0143 2,2 0 0 1 1196.979,314.0001 2,2 0 0 1 1199,315.9714 L 1197,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1197" id="path19474" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
-<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(2,509.3622)" d="M 1212,316 A 2,2 0 0 1 1210.007,318 2,2 0 0 1 1208,316.0143 2,2 0 0 1 1209.979,314.0001 2,2 0 0 1 1212,315.9714 L 1210,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19476" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
-<path sodipodi:type="arc" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path19478" sodipodi:cx="1210" sodipodi:cy="316" sodipodi:rx="2" sodipodi:ry="2" d="M 1212,316 A 2,2 0 0 1 1210.007,318 2,2 0 0 1 1208,316.0143 2,2 0 0 1 1209.979,314.0001 2,2 0 0 1 1212,315.9714 L 1210,316 Z" transform="translate(-6,518.3622)" sodipodi:start="0" sodipodi:end="6.268901" />
-<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(-6,529.3622)" d="M 1212,316 A 2,2 0 0 1 1210.007,318 2,2 0 0 1 1208,316.0143 2,2 0 0 1 1209.979,314.0001 2,2 0 0 1 1212,315.9714 L 1210,316 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19480" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" sodipodi:type="arc" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.7051678;marker:none;enable-background:accumulate" d="M 1209.72,826.5042 1210.896,827.7306 1208.648,829.9087 1210.123,831.3572 1206,831.3622 1206,831.3622 1205.99,827.2391 1207.467,828.6821 Z" id="path19568" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.7051678;marker:none;enable-background:accumulate" d="M 1205,837.3622 1203,837.3622 1203,839.3622 1201,839.3622 1204,842.3622 1204,842.3622 1207.064,839.4324 1205,839.3622 Z" id="path19570" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
-<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19572" d="M 1198.28,826.5042 1197.104,827.7306 1199.352,829.9087 1197.877,831.3572 1202,831.3622 1202,831.3622 1202.01,827.2391 1200.533,828.6821 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.7051678;marker:none;enable-background:accumulate" />
+<rect y="823.3622" x="1192" height="24" width="24" id="rect19472" style="fill:none" />
+<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(-1,509.3622)" d="m 1199,316 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1197" id="path19474" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
+<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(2,509.3622)" d="m 1212,316 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19476" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
+<path sodipodi:type="arc" style="fill:url(#linearGradient19282)" id="path19478" sodipodi:cx="1210" sodipodi:cy="316" sodipodi:rx="2" sodipodi:ry="2" d="m 1212,316 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" transform="translate(-6,518.3622)" sodipodi:start="0" sodipodi:end="6.268901" />
+<path sodipodi:end="6.268901" sodipodi:start="0" transform="translate(-6,529.3622)" d="m 1212,316 a 2,2 0 0 1 -1.993,2 2,2 0 0 1 -2.007,-1.9857 2,2 0 0 1 1.979,-2.0142 2,2 0 0 1 2.021,1.9713 l -2,0.029 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="316" sodipodi:cx="1210" id="path19480" style="fill:url(#linearGradient19282)" sodipodi:type="arc" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.7051678" d="M 1209.72,826.5042 1210.896,827.7306 1208.648,829.9087 1210.123,831.3572 1206,831.3622 1206,831.3622 1205.99,827.2391 1207.467,828.6821 Z" id="path19568" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.7051678" d="M 1205,837.3622 1203,837.3622 1203,839.3622 1201,839.3622 1204,842.3622 1204,842.3622 1207.064,839.4324 1205,839.3622 Z" id="path19570" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
+<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path19572" d="M 1198.28,826.5042 1197.104,827.7306 1199.352,829.9087 1197.877,831.3572 1202,831.3622 1202,831.3622 1202.01,827.2391 1200.533,828.6821 Z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.7051678" />
</g>
<g id="align-horizontal-node" inkscape:label="#node_valign" transform="translate(0,4.153308e-4)">
-<path inkscape:connector-curvature="0" style="display:inline;fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 1055.506,861.863 1055.506,884.8569 1055.506,884.8569" id="path5262" />
-<path inkscape:connector-curvature="0" style="fill:none;fill-opacity:1;stroke:url(#linearGradient19282);stroke-width:0.9996572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 1044.511,861.8622 C 1047.509,865.3614 1063.477,863.4606 1062.003,869.3605 1061.003,873.3596 1045.011,870.3602 1044.511,877.8585 1044.145,883.3451 1061.503,880.358 1067.5,884.357" id="path5249" sodipodi:nodetypes="cssc" />
-<rect y="862.3622" x="1053" height="4.999989" width="5.000005" id="rect5251" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" id="rect19638" width="5.000005" height="4.999989" x="1053" y="870.3622" />
-<rect y="879.3622" x="1053" height="4.999989" width="5.000005" id="rect19640" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" />
-<rect y="861.3622" x="1044" height="24" width="24" id="rect19636" style="fill:none;stroke:none" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-linecap:square" d="M 1055.506,861.863 1055.506,884.8569 1055.506,884.8569" id="path5262" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9996572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 1044.511,861.8622 C 1047.509,865.3614 1063.477,863.4606 1062.003,869.3605 1061.003,873.3596 1045.011,870.3602 1044.511,877.8585 1044.145,883.3451 1061.503,880.358 1067.5,884.357" id="path5249" sodipodi:nodetypes="cssc" />
+<rect y="862.3622" x="1053" height="4.999989" width="5.000005" id="rect5251" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" id="rect19638" width="5.000005" height="4.999989" x="1053" y="870.3622" />
+<rect y="879.3622" x="1053" height="4.999989" width="5.000005" id="rect19640" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" />
+<rect y="861.3622" x="1044" height="24" width="24" id="rect19636" style="fill:none" />
</g>
<g id="align-vertical-node" inkscape:label="#node_halign" transform="translate(0,4.153308e-4)">
<g transform="matrix(0,-1,-1,0,1967.362,1929.362)" id="g19671" inkscape:label="#node_valign">
-<path inkscape:connector-curvature="0" style="display:inline;fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 1055.506,861.863 1055.506,884.8569 1055.506,884.8569" id="path19673" />
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9996572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 1044.511,861.8622 C 1047.509,865.3614 1063.477,863.4606 1062.003,869.3605 1061.003,873.3596 1045.011,870.3602 1044.511,877.8585 1044.145,883.3451 1061.503,880.358 1067.5,884.357" id="path19675" sodipodi:nodetypes="cssc" />
-<rect y="862.3622" x="1053" height="4.999989" width="5.000005" id="rect19677" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" id="rect19679" width="5.000005" height="4.999989" x="1053" y="870.3622" />
-<rect y="879.3622" x="1053" height="4.999989" width="5.000005" id="rect19681" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" />
-<rect y="861.3622" x="1044" height="24" width="24" id="rect19683" style="fill:none;stroke:none" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-linecap:square" d="M 1055.506,861.863 1055.506,884.8569 1055.506,884.8569" id="path19673" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9996572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 1044.511,861.8622 C 1047.509,865.3614 1063.477,863.4606 1062.003,869.3605 1061.003,873.3596 1045.011,870.3602 1044.511,877.8585 1044.145,883.3451 1061.503,880.358 1067.5,884.357" id="path19675" sodipodi:nodetypes="cssc" />
+<rect y="862.3622" x="1053" height="4.999989" width="5.000005" id="rect19677" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" id="rect19679" width="5.000005" height="4.999989" x="1053" y="870.3622" />
+<rect y="879.3622" x="1053" height="4.999989" width="5.000005" id="rect19681" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" />
+<rect y="861.3622" x="1044" height="24" width="24" id="rect19683" style="fill:none" />
</g>
</g>
<g id="distribute-vertical-node" inkscape:label="#node_vdistribute" transform="translate(0,4.153308e-4)">
<g transform="translate(76)" id="g19713" inkscape:label="#node_valign">
-<path inkscape:connector-curvature="0" style="display:inline;fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 1055.506,861.863 1055.506,884.8569 1055.506,884.8569" id="path19715" />
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9996572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 1044.511,861.8622 C 1047.509,865.3614 1063.477,863.4606 1062.003,869.3605 1061.003,873.3596 1045.011,870.3602 1044.511,877.8585 1044.145,883.3451 1061.503,880.358 1067.5,884.357" id="path19717" sodipodi:nodetypes="cssc" />
-<rect y="862.3622" x="1053" height="4.999989" width="5.000005" id="rect19719" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" id="rect19721" width="5.000005" height="4.999989" x="1053" y="870.3622" />
-<rect y="879.3622" x="1053" height="4.999989" width="5.000005" id="rect19723" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" />
-<rect y="861.3622" x="1044" height="24" width="24" id="rect19725" style="fill:none;stroke:none" />
-</g>
-<rect ry="0" y="864.3622" x="1134" height="1" width="10" id="rect19727" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19729" width="10" height="1" x="1134" y="872.3622" ry="0" />
-<rect ry="0" y="881.3622" x="1134" height="1" width="10" id="rect19731" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" style="display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1139.968,875.3622 1141.5,873.3622 1142.968,875.3622 1142,875.3622 1142,879.3622 1143,879.3622 1141.5,881.3622 1140,879.3622 1141,879.3622 1141,875.3622 1139.968,875.3622 Z" id="path5344" sodipodi:nodetypes="ccccccccccc" />
-<path sodipodi:nodetypes="ccccccccccc" id="path19903" d="M 1139.968,867.3622 1141.5,865.3622 1142.968,867.3622 1142,867.3622 1142,870.3622 1143,870.3622 1141.5,872.3622 1140,870.3622 1141,870.3622 1141,867.3622 Z" style="display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-linecap:square" d="M 1055.506,861.863 1055.506,884.8569 1055.506,884.8569" id="path19715" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9996572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 1044.511,861.8622 C 1047.509,865.3614 1063.477,863.4606 1062.003,869.3605 1061.003,873.3596 1045.011,870.3602 1044.511,877.8585 1044.145,883.3451 1061.503,880.358 1067.5,884.357" id="path19717" sodipodi:nodetypes="cssc" />
+<rect y="862.3622" x="1053" height="4.999989" width="5.000005" id="rect19719" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" id="rect19721" width="5.000005" height="4.999989" x="1053" y="870.3622" />
+<rect y="879.3622" x="1053" height="4.999989" width="5.000005" id="rect19723" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" />
+<rect y="861.3622" x="1044" height="24" width="24" id="rect19725" style="fill:none" />
+</g>
+<rect ry="0" y="864.3622" x="1134" height="1" width="10" id="rect19727" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19729" width="10" height="1" x="1134" y="872.3622" ry="0" />
+<rect ry="0" y="881.3622" x="1134" height="1" width="10" id="rect19731" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1139.968,875.3622 1141.5,873.3622 1142.968,875.3622 1142,875.3622 1142,879.3622 1143,879.3622 1141.5,881.3622 1140,879.3622 1141,879.3622 1141,875.3622 1139.968,875.3622 Z" id="path5344" sodipodi:nodetypes="ccccccccccc" />
+<path sodipodi:nodetypes="ccccccccccc" id="path19903" d="M 1139.968,867.3622 1141.5,865.3622 1142.968,867.3622 1142,867.3622 1142,870.3622 1143,870.3622 1141.5,872.3622 1140,870.3622 1141,870.3622 1141,867.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
</g>
<g id="distribute-horizontal-node" inkscape:label="#node_hdistribute" transform="translate(0,4.153308e-4)">
<g transform="rotate(-90,1168,873.3622)" id="g19929">
<g transform="translate(112)" id="g19905" inkscape:label="#node_valign">
-<path inkscape:connector-curvature="0" style="display:inline;fill:none;stroke:url(#linearGradient19282);stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" d="M 1055.506,861.863 1055.506,884.8569 1055.506,884.8569" id="path19907" />
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9996572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;stroke-opacity:1" d="M 1044.511,861.8622 C 1047.509,865.3614 1063.477,863.4606 1062.003,869.3605 1061.003,873.3596 1045.011,870.3602 1044.511,877.8585 1044.42,879.2302 1045.436,880.0722 1047.105,880.6262 1048.775,881.1802 1051.098,881.4461 1053.619,881.6656 1056.141,881.885 1058.862,882.058 1061.327,882.4261" id="path19909" sodipodi:nodetypes="cssssc" />
-<rect y="862.3622" x="1053" height="4.999989" width="5.000005" id="rect19911" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" />
-<rect style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" id="rect19913" width="5.000005" height="4.999989" x="1053" y="870.3622" />
-<rect y="879.3622" x="1053" height="4.999989" width="5.000005" id="rect19915" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.9999997;marker:none" />
-<rect y="861.3622" x="1044" height="24" width="24" id="rect19917" style="fill:none;stroke:none" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-linecap:square" d="M 1055.506,861.863 1055.506,884.8569 1055.506,884.8569" id="path19907" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9996572;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" d="M 1044.511,861.8622 C 1047.509,865.3614 1063.477,863.4606 1062.003,869.3605 1061.003,873.3596 1045.011,870.3602 1044.511,877.8585 1044.42,879.2302 1045.436,880.0722 1047.105,880.6262 1048.775,881.1802 1051.098,881.4461 1053.619,881.6656 1056.141,881.885 1058.862,882.058 1061.327,882.4261" id="path19909" sodipodi:nodetypes="cssssc" />
+<rect y="862.3622" x="1053" height="4.999989" width="5.000005" id="rect19911" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" />
+<rect style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" id="rect19913" width="5.000005" height="4.999989" x="1053" y="870.3622" />
+<rect y="879.3622" x="1053" height="4.999989" width="5.000005" id="rect19915" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:0.9999997" />
+<rect y="861.3622" x="1044" height="24" width="24" id="rect19917" style="fill:none" />
</g>
-<rect ry="0" y="864.3622" x="1170" height="1" width="10" id="rect19919" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19921" width="10" height="1" x="1170" y="872.3622" ry="0" />
-<rect ry="0" y="881.3622" x="1170" height="1" width="10" id="rect19923" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" style="display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1175.968,875.3622 1177.5,873.3622 1178.968,875.3622 1178,875.3622 1178,879.3622 1179,879.3622 1177.5,881.3622 1176,879.3622 1177,879.3622 1177,875.3622 1175.968,875.3622 Z" id="path19925" sodipodi:nodetypes="ccccccccccc" />
-<path sodipodi:nodetypes="ccccccccccc" id="path19927" d="M 1175.968,867.3622 1177.5,865.3622 1178.968,867.3622 1178,867.3622 1178,870.3622 1179,870.3622 1177.5,872.3622 1176,870.3622 1177,870.3622 1177,867.3622 Z" style="display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" inkscape:connector-curvature="0" />
+<rect ry="0" y="864.3622" x="1170" height="1" width="10" id="rect19919" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect19921" width="10" height="1" x="1170" y="872.3622" ry="0" />
+<rect ry="0" y="881.3622" x="1170" height="1" width="10" id="rect19923" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-rule:evenodd" d="M 1175.968,875.3622 1177.5,873.3622 1178.968,875.3622 1178,875.3622 1178,879.3622 1179,879.3622 1177.5,881.3622 1176,879.3622 1177,879.3622 1177,875.3622 1175.968,875.3622 Z" id="path19925" sodipodi:nodetypes="ccccccccccc" />
+<path sodipodi:nodetypes="ccccccccccc" id="path19927" d="M 1175.968,867.3622 1177.5,865.3622 1178.968,867.3622 1178,867.3622 1178,870.3622 1179,870.3622 1177.5,872.3622 1176,870.3622 1177,870.3622 1177,867.3622 Z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
</g>
</g>
<g id="object-fill" inkscape:label="#object_properties" transform="translate(0,4.153308e-4)">
-<rect y="903.3622" x="1044" height="12" width="12" id="rect20527" style="fill:none;stroke:none" />
-<rect y="903.3622" x="1044" height="12" width="12" id="rect20529" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="903.3622" x="1044" height="12" width="12" id="rect20527" style="fill:none" />
+<rect y="903.3622" x="1044" height="12" width="12" id="rect20529" style="fill:url(#linearGradient19282)" />
</g>
<g id="object-stroke" inkscape:label="#properties_stroke_paint" transform="translate(0,4.153308e-4)">
-<rect style="fill:none;stroke:none" id="rect20531" width="12" height="12" x="1082" y="903.3622" />
-<path id="rect20533" transform="translate(0,512.3622)" d="M 1082,391 1082,403 1094,403 1094,391 1082,391 Z M 1083,392 1093,392 1093,402 1083,402 1083,392 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
+<rect style="fill:none" id="rect20531" width="12" height="12" x="1082" y="903.3622" />
+<path id="rect20533" transform="translate(0,512.3622)" d="M 1082,391 1082,403 1094,403 1094,391 1082,391 Z M 1083,392 1093,392 1093,402 1083,402 1083,392 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
</g>
<g id="object-stroke-style" inkscape:label="#properties_stroke" transform="translate(0,4.153308e-4)">
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" id="rect12874" d="M 1120,905.3622 1128,905.3622 1128,903.3622 1132,905.8622 1128,908.3622 1128,906.3622 1120,906.3622 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none" />
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9999999;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" d="M 1120.5,910.8622 1121.5,910.8622" id="path10529" sodipodi:nodetypes="cc" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="use10533" d="M 1126.5,910.8617 1127.5,910.8617" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9999999;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<use xlink:href="#use10533" transform="translate(3)" height="1250" width="1250" id="use10535" y="0" x="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.3555895;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0000004px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="M 1120.5,914.8613 1131.502,914.8613" id="path10541" />
-<use xlink:href="#path10529" height="1250" width="1250" transform="translate(2.999996)" id="use4611" y="0" x="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.3555895;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-<rect y="903.3622" x="1120" height="12" width="12" id="rect20574" style="fill:none;stroke:none" />
-</g>
-<g id="paint-none" transform="translate(0,4.153308e-4)" inkscape:label="#g20666">
-<rect y="929.3622" x="1044" height="19.99997" width="19.99975" id="rect194" style="fill:none;stroke:none" />
-<path inkscape:connector-curvature="0" id="path2473" d="M 1049.998,935.3621 1058,943.3621" style="fill:none;stroke:#707070;stroke-width:2.3670151;stroke-linecap:round;stroke-opacity:1" />
-<path inkscape:connector-curvature="0" id="path2474" d="M 1058,935.3621 1049.998,943.3621" style="fill:none;stroke:url(#linearGradient19282);stroke-width:2.3670151;stroke-linecap:round;stroke-opacity:1" />
+<rect y="903.3622" x="1120" height="12" width="12" id="rect20574" style="fill:none" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" id="rect12874" d="M 1120,905.3622 1128,905.3622 1128,903.3622 1132,905.8622 1128,908.3622 1128,906.3622 1120,906.3622 Z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9999999;stroke-linecap:square" d="M 1120.5,910.8622 1121.5,910.8622" id="path10529" sodipodi:nodetypes="cc" />
+<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="use10533" d="M 1126.5,910.8617 1127.5,910.8617" style="fill:none;stroke:url(#linearGradient19282);stroke-width:0.9999999;stroke-linecap:square" />
+<use xlink:href="#use10533" transform="translate(3)" height="1250" width="1250" id="use10535" y="0" x="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.3555895" />
+<path inkscape:connector-curvature="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.0000004px;stroke-linecap:square" d="M 1120.5,914.8613 1131.502,914.8613" id="path10541" />
+<use xlink:href="#path10529" height="1250" width="1250" transform="translate(2.999996)" id="use4611" y="0" x="0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1.3555895" />
+</g>
+<g id="paint-none" transform="translate(0,4.153308e-4)">
+<rect y="929.3622" x="1044" height="19.99997" width="19.99975" id="rect194" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path2473" d="m 1049.998,935.3621 8.002,8" style="fill:none;stroke:url(#linearGradient19282);stroke-width:2.3670151;stroke-linecap:round" />
+<path inkscape:connector-curvature="0" id="path2474" d="m 1058,935.3621 -8.002,8" style="fill:none;stroke:url(#linearGradient19282);stroke-width:2.3670151;stroke-linecap:round" />
</g>
<g id="paint-solid" inkscape:label="#fill_solid" transform="translate(0,4.153308e-4)">
-<rect y="929.3622" x="1079" height="20" width="20" id="rect20690" style="fill:none;stroke:none" />
-<rect y="929.3622" x="1079" height="20" width="20" id="rect20692" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect y="929.3622" x="1079" height="20" width="20" id="rect20690" style="fill:none" />
+<rect y="929.3622" x="1079" height="20" width="20" id="rect20692" style="fill:url(#linearGradient19282)" />
</g>
<g id="paint-gradient-linear" inkscape:label="#fill_gradient" transform="translate(0,4.153308e-4)">
-<rect style="fill:none;stroke:none" id="rect20694" width="20" height="20" x="1113" y="929.3622" />
-<rect y="929.3622" x="1113" height="20" width="5" id="rect20698" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1118,417 1118,418 1119,418 1119,417 1118,417 Z M 1120,417 1120,418 1121,418 1121,417 1120,417 Z M 1118,419 1118,420 1119,420 1119,419 1118,419 Z M 1119,420 1119,421 1120,421 1120,420 1119,420 Z M 1120,420 1121,420 1121,419 1120,419 1120,420 Z M 1122,421 1122,422 1123,422 1123,421 1122,421 Z" transform="translate(0,512.3618)" id="rect20700" inkscape:connector-curvature="0" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20704" width="1" height="1" x="1119" y="930.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20712" width="1" height="1" x="1118" y="933.3622" />
-<rect y="933.3622" x="1120" height="1" width="1" id="rect20714" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20716" width="1" height="1" x="1119" y="934.3622" />
-<rect y="935.3622" x="1118" height="1" width="1" id="rect20718" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20720" width="1" height="1" x="1120" y="935.3622" />
-<rect y="936.3622" x="1119" height="1" width="1" id="rect20722" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20724" width="1" height="1" x="1118" y="937.3622" />
-<rect y="937.3622" x="1120" height="1" width="1" id="rect20726" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20728" width="1" height="1" x="1119" y="938.3622" />
-<rect y="939.3622" x="1118" height="1" width="1" id="rect20730" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20732" width="1" height="1" x="1120" y="939.3622" />
-<rect y="940.3622" x="1119" height="1" width="1" id="rect20734" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20736" width="1" height="1" x="1118" y="941.3622" />
-<rect y="941.3622" x="1120" height="1" width="1" id="rect20738" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20740" width="1" height="1" x="1119" y="942.3622" />
-<rect y="943.3622" x="1118" height="1" width="1" id="rect20742" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20744" width="1" height="1" x="1120" y="943.3622" />
-<rect y="944.3622" x="1119" height="1" width="1" id="rect20746" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20748" width="1" height="1" x="1118" y="945.3622" />
-<rect y="945.3622" x="1120" height="1" width="1" id="rect20750" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20752" width="1" height="1" x="1119" y="946.3622" />
-<rect y="947.3622" x="1118" height="1" width="1" id="rect20754" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20756" width="1" height="1" x="1120" y="947.3622" />
-<rect y="946.3622" x="1121" height="1" width="1" id="rect20758" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20760" width="1" height="1" x="1121" y="944.3622" />
-<rect y="942.3622" x="1121" height="1" width="1" id="rect20762" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20764" width="1" height="1" x="1121" y="940.3622" />
-<rect y="938.3622" x="1121" height="1" width="1" id="rect20766" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20768" width="1" height="1" x="1121" y="936.3622" />
-<rect y="934.3622" x="1121" height="1" width="1" id="rect20770" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20772" width="1" height="1" x="1121" y="932.3622" />
-<rect y="930.3622" x="1121" height="1" width="1" id="rect20774" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20776" width="1" height="1" x="1122" y="929.3622" />
-<rect y="931.3622" x="1122" height="1" width="1" id="rect20778" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="935.3622" x="1122" height="1" width="1" id="rect20782" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20784" width="1" height="1" x="1122" y="937.3622" />
-<rect y="939.3622" x="1122" height="1" width="1" id="rect20786" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20788" width="1" height="1" x="1122" y="941.3622" />
-<rect y="943.3622" x="1122" height="1" width="1" id="rect20790" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20792" width="1" height="1" x="1122" y="945.3622" />
-<rect y="947.3622" x="1122" height="1" width="1" id="rect20794" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20796" width="1" height="1" x="1121" y="948.3622" />
-<rect y="948.3622" x="1119" height="1" width="1" id="rect20798" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20802" width="5" height="20" x="1123" y="929.3622" />
-<rect transform="translate(0,512.3622)" y="417" x="1129" height="1" width="1" id="rect20804" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20806" width="1" height="1" x="1131" y="929.3622" />
-<rect y="930.3622" x="1130" height="1" width="1" id="rect20808" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20810" width="1" height="1" x="1132" y="930.3622" />
-<rect y="931.3622" x="1131" height="1" width="1" id="rect20812" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20814" width="1" height="1" x="1129" y="931.3622" />
-<rect y="932.3622" x="1130" height="1" width="1" id="rect20816" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20818" width="1" height="1" x="1132" y="932.3622" />
-<rect y="933.3622" x="1131" height="1" width="1" id="rect20820" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20822" width="1" height="1" x="1129" y="933.3622" />
-<rect y="934.3622" x="1130" height="1" width="1" id="rect20824" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20826" width="1" height="1" x="1132" y="934.3622" />
-<rect y="935.3622" x="1131" height="1" width="1" id="rect20828" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20830" width="1" height="1" x="1129" y="935.3622" />
-<rect y="936.3622" x="1130" height="1" width="1" id="rect20832" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20834" width="1" height="1" x="1132" y="936.3622" />
-<rect y="937.3622" x="1131" height="1" width="1" id="rect20836" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20838" width="1" height="1" x="1129" y="937.3622" />
-<rect y="938.3622" x="1132" height="1" width="1" id="rect20840" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20842" width="1" height="1" x="1130" y="938.3622" />
-<rect y="939.3622" x="1129" height="1" width="1" id="rect20844" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20846" width="1" height="1" x="1131" y="939.3622" />
-<rect y="940.3622" x="1132" height="1" width="1" id="rect20848" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20850" width="1" height="1" x="1130" y="940.3622" />
-<rect y="941.3622" x="1129" height="1" width="1" id="rect20852" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20854" width="1" height="1" x="1131" y="941.3622" />
-<rect y="942.3622" x="1132" height="1" width="1" id="rect20856" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20858" width="1" height="1" x="1130" y="942.3622" />
-<rect y="943.3622" x="1129" height="1" width="1" id="rect20860" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20862" width="1" height="1" x="1131" y="943.3622" />
-<rect y="944.3622" x="1132" height="1" width="1" id="rect20864" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20866" width="1" height="1" x="1130" y="944.3622" />
-<rect y="945.3622" x="1129" height="1" width="1" id="rect20868" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20870" width="1" height="1" x="1131" y="945.3622" />
-<rect y="946.3622" x="1132" height="1" width="1" id="rect20872" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20874" width="1" height="1" x="1130" y="946.3622" />
-<rect y="947.3622" x="1129" height="1" width="1" id="rect20876" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20878" width="1" height="1" x="1131" y="947.3622" />
-<rect y="948.3622" x="1132" height="1" width="1" id="rect20880" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20882" width="1" height="1" x="1130" y="948.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20886" width="1" height="1" x="1128" y="930.3622" />
-<rect y="932.3622" x="1128" height="1" width="1" id="rect20888" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20890" width="1" height="1" x="1128" y="934.3622" />
-<rect y="936.3622" x="1128" height="1" width="1" id="rect20892" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20894" width="1" height="1" x="1128" y="938.3622" />
-<rect y="940.3622" x="1128" height="1" width="1" id="rect20896" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20898" width="1" height="1" x="1128" y="942.3622" />
-<rect y="944.3622" x="1128" height="1" width="1" id="rect20900" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20902" width="1" height="1" x="1128" y="946.3622" />
-<rect y="948.3622" x="1128" height="1" width="1" id="rect20904" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="fill:none" id="rect20694" width="20" height="20" x="1113" y="929.3622" />
+<rect y="929.3622" x="1113" height="20" width="5" id="rect20698" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="M 1118,417 1118,418 1119,418 1119,417 1118,417 Z M 1120,417 1120,418 1121,418 1121,417 1120,417 Z M 1118,419 1118,420 1119,420 1119,419 1118,419 Z M 1119,420 1119,421 1120,421 1120,420 1119,420 Z M 1120,420 1121,420 1121,419 1120,419 1120,420 Z M 1122,421 1122,422 1123,422 1123,421 1122,421 Z" transform="translate(0,512.3618)" id="rect20700" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect20704" width="1" height="1" x="1119" y="930.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect20712" width="1" height="1" x="1118" y="933.3622" />
+<rect y="933.3622" x="1120" height="1" width="1" id="rect20714" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20716" width="1" height="1" x="1119" y="934.3622" />
+<rect y="935.3622" x="1118" height="1" width="1" id="rect20718" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20720" width="1" height="1" x="1120" y="935.3622" />
+<rect y="936.3622" x="1119" height="1" width="1" id="rect20722" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20724" width="1" height="1" x="1118" y="937.3622" />
+<rect y="937.3622" x="1120" height="1" width="1" id="rect20726" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20728" width="1" height="1" x="1119" y="938.3622" />
+<rect y="939.3622" x="1118" height="1" width="1" id="rect20730" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20732" width="1" height="1" x="1120" y="939.3622" />
+<rect y="940.3622" x="1119" height="1" width="1" id="rect20734" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20736" width="1" height="1" x="1118" y="941.3622" />
+<rect y="941.3622" x="1120" height="1" width="1" id="rect20738" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20740" width="1" height="1" x="1119" y="942.3622" />
+<rect y="943.3622" x="1118" height="1" width="1" id="rect20742" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20744" width="1" height="1" x="1120" y="943.3622" />
+<rect y="944.3622" x="1119" height="1" width="1" id="rect20746" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20748" width="1" height="1" x="1118" y="945.3622" />
+<rect y="945.3622" x="1120" height="1" width="1" id="rect20750" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20752" width="1" height="1" x="1119" y="946.3622" />
+<rect y="947.3622" x="1118" height="1" width="1" id="rect20754" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20756" width="1" height="1" x="1120" y="947.3622" />
+<rect y="946.3622" x="1121" height="1" width="1" id="rect20758" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20760" width="1" height="1" x="1121" y="944.3622" />
+<rect y="942.3622" x="1121" height="1" width="1" id="rect20762" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20764" width="1" height="1" x="1121" y="940.3622" />
+<rect y="938.3622" x="1121" height="1" width="1" id="rect20766" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20768" width="1" height="1" x="1121" y="936.3622" />
+<rect y="934.3622" x="1121" height="1" width="1" id="rect20770" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20772" width="1" height="1" x="1121" y="932.3622" />
+<rect y="930.3622" x="1121" height="1" width="1" id="rect20774" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20776" width="1" height="1" x="1122" y="929.3622" />
+<rect y="931.3622" x="1122" height="1" width="1" id="rect20778" style="fill:url(#linearGradient19282)" />
+<rect y="935.3622" x="1122" height="1" width="1" id="rect20782" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20784" width="1" height="1" x="1122" y="937.3622" />
+<rect y="939.3622" x="1122" height="1" width="1" id="rect20786" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20788" width="1" height="1" x="1122" y="941.3622" />
+<rect y="943.3622" x="1122" height="1" width="1" id="rect20790" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20792" width="1" height="1" x="1122" y="945.3622" />
+<rect y="947.3622" x="1122" height="1" width="1" id="rect20794" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect20796" width="1" height="1" x="1121" y="948.3622" />
+<rect y="948.3622" x="1119" height="1" width="1" id="rect20798" style="fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20802" width="5" height="20" x="1123" y="929.3622" />
+<rect transform="translate(0,512.3622)" y="417" x="1129" height="1" width="1" id="rect20804" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20806" width="1" height="1" x="1131" y="929.3622" />
+<rect y="930.3622" x="1130" height="1" width="1" id="rect20808" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20810" width="1" height="1" x="1132" y="930.3622" />
+<rect y="931.3622" x="1131" height="1" width="1" id="rect20812" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20814" width="1" height="1" x="1129" y="931.3622" />
+<rect y="932.3622" x="1130" height="1" width="1" id="rect20816" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20818" width="1" height="1" x="1132" y="932.3622" />
+<rect y="933.3622" x="1131" height="1" width="1" id="rect20820" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20822" width="1" height="1" x="1129" y="933.3622" />
+<rect y="934.3622" x="1130" height="1" width="1" id="rect20824" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20826" width="1" height="1" x="1132" y="934.3622" />
+<rect y="935.3622" x="1131" height="1" width="1" id="rect20828" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20830" width="1" height="1" x="1129" y="935.3622" />
+<rect y="936.3622" x="1130" height="1" width="1" id="rect20832" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20834" width="1" height="1" x="1132" y="936.3622" />
+<rect y="937.3622" x="1131" height="1" width="1" id="rect20836" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20838" width="1" height="1" x="1129" y="937.3622" />
+<rect y="938.3622" x="1132" height="1" width="1" id="rect20840" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20842" width="1" height="1" x="1130" y="938.3622" />
+<rect y="939.3622" x="1129" height="1" width="1" id="rect20844" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20846" width="1" height="1" x="1131" y="939.3622" />
+<rect y="940.3622" x="1132" height="1" width="1" id="rect20848" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20850" width="1" height="1" x="1130" y="940.3622" />
+<rect y="941.3622" x="1129" height="1" width="1" id="rect20852" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20854" width="1" height="1" x="1131" y="941.3622" />
+<rect y="942.3622" x="1132" height="1" width="1" id="rect20856" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20858" width="1" height="1" x="1130" y="942.3622" />
+<rect y="943.3622" x="1129" height="1" width="1" id="rect20860" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20862" width="1" height="1" x="1131" y="943.3622" />
+<rect y="944.3622" x="1132" height="1" width="1" id="rect20864" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20866" width="1" height="1" x="1130" y="944.3622" />
+<rect y="945.3622" x="1129" height="1" width="1" id="rect20868" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20870" width="1" height="1" x="1131" y="945.3622" />
+<rect y="946.3622" x="1132" height="1" width="1" id="rect20872" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20874" width="1" height="1" x="1130" y="946.3622" />
+<rect y="947.3622" x="1129" height="1" width="1" id="rect20876" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20878" width="1" height="1" x="1131" y="947.3622" />
+<rect y="948.3622" x="1132" height="1" width="1" id="rect20880" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20882" width="1" height="1" x="1130" y="948.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20886" width="1" height="1" x="1128" y="930.3622" />
+<rect y="932.3622" x="1128" height="1" width="1" id="rect20888" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20890" width="1" height="1" x="1128" y="934.3622" />
+<rect y="936.3622" x="1128" height="1" width="1" id="rect20892" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20894" width="1" height="1" x="1128" y="938.3622" />
+<rect y="940.3622" x="1128" height="1" width="1" id="rect20896" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20898" width="1" height="1" x="1128" y="942.3622" />
+<rect y="944.3622" x="1128" height="1" width="1" id="rect20900" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20902" width="1" height="1" x="1128" y="946.3622" />
+<rect y="948.3622" x="1128" height="1" width="1" id="rect20904" style="opacity:0.3;fill:url(#linearGradient19282)" />
</g>
<g id="paint-gradient-radial" inkscape:label="#fill_radial" transform="translate(0,4.153308e-4)">
-<rect y="929.3622" x="1146" height="20.00002" width="19.99994" id="rect21034" style="opacity:0.3;fill:none;stroke:none" />
-<rect y="936.3622" x="1153" height="5.999998" width="6" id="rect21036" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="935.3622" x="1153" height="1" width="1" id="rect21038" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21040" width="1" height="1" x="1155" y="935.3622" />
-<rect y="935.3622" x="1157" height="1" width="1" id="rect21042" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21044" width="1" height="1" x="1159" y="935.3622" />
-<rect y="937.3622" x="1159" height="1" width="1" id="rect21046" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21048" width="1" height="1" x="1159" y="939.3622" />
-<rect y="941.3622" x="1159" height="1" width="1" id="rect21050" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21052" width="1" height="1" x="1158" y="942.3622" />
-<rect y="942.3622" x="1156" height="1" width="1" id="rect21054" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21056" width="1" height="1" x="1154" y="942.3622" />
-<rect y="938.3622" x="1152" height="1" width="1" id="rect21058" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21068" width="1" height="1" x="1160" y="938.3622" />
-<rect y="940.3622" x="1160" height="1" width="1" id="rect21070" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21072" width="1" height="1" x="1160" y="942.3622" />
-<rect y="943.3622" x="1159" height="1" width="1" id="rect21074" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21076" width="1" height="1" x="1157" y="943.3622" />
-<rect y="943.3622" x="1155" height="1" width="1" id="rect21078" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21080" width="1" height="1" x="1153" y="943.3622" />
-<rect y="942.3622" x="1152" height="1" width="1" id="rect21082" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21084" width="1" height="1" x="1152" y="936.3622" />
-<rect y="944.3622" x="1151" height="1.000003" width="10" id="rect21107" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="933.3622" x="1161" height="12.00001" width="1" id="rect21135" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="931.3622" x="1150" height="1" width="1" id="rect21140" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21142" width="1" height="1" x="1151" y="932.3622" />
-<rect y="932.3622" x="1153" height="1.000003" width="1" id="rect21144" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21146" width="1" height="1" x="1155" y="932.3622" />
-<rect y="932.3622" x="1157" height="1" width="1" id="rect21148" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21150" width="1" height="1" x="1159" y="932.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21174" width="1" height="1" x="1149" y="942.3622" />
-<rect y="940.3622" x="1149" height="1" width="1" id="rect21176" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21178" width="1" height="1" x="1149" y="938.3622" />
-<rect y="936.3622" x="1149" height="1" width="1" id="rect21180" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21182" width="1" height="1" x="1149" y="934.3622" />
-<rect y="932.3622" x="1149" height="1" width="1" id="rect21184" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21187" width="1" height="1" x="1151" y="930.3622" />
-<rect y="930.3622" x="1153" height="1" width="1" id="rect21189" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21191" width="1" height="1" x="1155" y="930.3622" />
-<rect y="930.3622" x="1157" height="1" width="1" id="rect21193" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21195" width="1" height="1" x="1159" y="930.3622" />
-<rect y="930.3622" x="1161" height="1" width="1" id="rect21197" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21199" width="1" height="1" x="1163" y="930.3622" />
-<rect y="933.3622" x="1162" height="1" width="1" id="rect21201" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21203" width="1" height="1" x="1162" y="937.3622" />
-<rect y="939.3622" x="1162" height="1" width="1" id="rect21205" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21207" width="1" height="1" x="1163" y="940.3622" />
-<rect y="942.3622" x="1163" height="1" width="1" id="rect21209" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21211" width="1" height="1.000003" x="1162" y="941.3622" />
-<rect y="947.3622" x="1160" height="1" width="1" id="rect21213" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21215" width="1" height="1" x="1158" y="947.3622" />
-<rect y="947.3622" x="1156" height="1" width="1" id="rect21217" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21219" width="1" height="1" x="1154" y="947.3622" />
-<rect y="947.3622" x="1152" height="1" width="1" id="rect21221" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21223" width="1" height="1" x="1150" y="947.3622" />
-<rect y="947.3622" x="1148" height="1" width="1" id="rect21225" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21227" width="1" height="1" x="1148" y="943.3622" />
-<rect y="941.3622" x="1148" height="1" width="1" id="rect21229" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21231" width="1" height="1" x="1148" y="939.3622" />
-<rect y="937.3622" x="1148" height="1" width="1" id="rect21234" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21236" width="1" height="1" x="1148" y="935.3622" />
-<rect y="933.3622" x="1148" height="1" width="1" id="rect21238" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect21240" width="1" height="1" x="1148" y="931.3622" />
-<rect y="941.3622" x="1164" height="1" width="1" id="rect9505" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9507" width="1" height="1" x="1164" y="939.3622" />
-<rect y="937.3622" x="1164" height="1" width="1" id="rect9509" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9511" width="1" height="1" x="1164" y="935.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9515" width="1" height="1" x="1164" y="933.3622" />
-<rect y="931.3622" x="1164" height="1" width="1" id="rect9517" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(-1,1)" y="930.3622" x="-1150" height="1" width="1" id="rect9519" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9521" width="1" height="1" x="1161" y="932.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9523" width="1" height="1" x="1162" y="935.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9525" width="1" height="0.9999974" x="1148" y="945.3622" />
-<rect y="947.3622" x="1162" height="0.9999974" width="1" id="rect9527" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9529" width="1" height="0.9999974" x="1164" y="947.3622" />
-<rect y="945.3622" x="1164" height="0.9999974" width="1" id="rect9531" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9533" width="1" height="0.9999974" x="1164" y="943.3622" />
-<rect y="943.3622" x="1162" height="0.9999974" width="1" id="rect9535" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9537" width="1" height="1" x="1162" y="945.3622" />
-<rect y="945.3622" x="1160" height="0.9999974" width="1" id="rect9539" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9541" width="1" height="0.9999974" x="1158" y="945.3622" />
-<rect y="945.3622" x="1156" height="0.9999974" width="1" id="rect9543" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9545" width="1" height="0.9999974" x="1154" y="945.3622" />
-<rect y="945.3622" x="1152" height="0.9999974" width="1" id="rect9547" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9549" width="1" height="0.9999974" x="1151" y="946.3622" />
-<rect y="946.3622" x="1149" height="0.9999974" width="1" id="rect9551" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9553" width="1" height="0.9999974" x="1149" y="944.3622" />
-<rect y="945.3622" x="1150" height="0.9999974" width="1" id="rect9555" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9579" width="1" height="1" x="1151" y="943.3622" />
-<rect y="941.3622" x="1151" height="1" width="1" id="rect9581" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9583" width="1" height="1" x="1151" y="939.3622" />
-<rect y="937.3622" x="1151" height="1" width="1" id="rect9585" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9587" width="1" height="1" x="1151" y="935.3622" />
-<rect y="934.3622" x="1152" height="1" width="1" id="rect9589" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9591" width="1" height="1" x="1154" y="934.3622" />
-<rect y="934.3622" x="1156" height="1" width="1" id="rect9593" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9595" width="1" height="1" x="1158" y="934.3622" />
-<rect y="934.3622" x="1160" height="1" width="1" id="rect9597" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9599" width="1" height="1" x="1160" y="936.3622" />
-<rect y="936.3622" x="1160" height="1" width="1" id="rect9601" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect9603" width="1" height="1" x="1152" y="940.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19828" width="1" height="1" x="1163" y="932.3622" />
-<rect y="931.3622" x="1152" height="1" width="1" id="rect19834" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19836" width="1" height="1" x="1154" y="931.3622" />
-<rect y="931.3622" x="1156" height="1" width="1" id="rect19838" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19840" width="1" height="1" x="1158" y="931.3622" />
-<rect y="944.3622" x="1163" height="1" width="1" id="rect19842" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19844" width="1" height="1" x="1160" y="931.3622" />
-<rect y="946.3622" x="1163" height="1" width="1" id="rect19846" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19848" width="1" height="1" x="1162" y="931.3622" />
-<rect y="946.3622" x="1161" height="1" width="1" id="rect19850" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19852" width="1" height="1" x="1159" y="946.3622" />
-<rect y="946.3622" x="1157" height="1" width="1" id="rect19854" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19856" width="1" height="1" x="1155" y="946.3622" />
-<rect y="946.3622" x="1153" height="1" width="1" id="rect19859" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19861" width="1" height="1" x="1163" y="938.3622" />
-<rect y="936.3622" x="1163" height="1" width="1" id="rect19863" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19865" width="1" height="1" x="1163" y="934.3622" />
-<rect y="946.3622" x="1147" height="1" width="1" id="rect19867" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19869" width="1" height="1" x="1147" y="944.3622" />
-<rect y="942.3622" x="1147" height="1" width="1" id="rect19871" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19873" width="1" height="1" x="1147" y="940.3622" />
-<rect y="938.3622" x="1147" height="1" width="1" id="rect19875" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19877" width="1" height="1" x="1147" y="936.3622" />
-<rect y="934.3622" x="1147" height="1" width="1" id="rect19879" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect19881" width="1" height="1" x="1147" y="932.3622" />
-<rect y="930.3622" x="1147" height="1" width="1" id="rect19883" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20006" width="10" height="1.000003" x="1151" y="933.3622" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect20008" width="1" height="12.00001" x="1150" y="933.3622" />
+<rect y="929.3622" x="1146" height="20.00002" width="19.99994" id="rect21034" style="opacity:0.3;fill:none" />
+<rect y="936.3622" x="1153" height="5.999998" width="6" id="rect21036" style="fill:url(#linearGradient19282)" />
+<rect y="935.3622" x="1153" height="1" width="1" id="rect21038" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21040" width="1" height="1" x="1155" y="935.3622" />
+<rect y="935.3622" x="1157" height="1" width="1" id="rect21042" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21044" width="1" height="1" x="1159" y="935.3622" />
+<rect y="937.3622" x="1159" height="1" width="1" id="rect21046" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21048" width="1" height="1" x="1159" y="939.3622" />
+<rect y="941.3622" x="1159" height="1" width="1" id="rect21050" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21052" width="1" height="1" x="1158" y="942.3622" />
+<rect y="942.3622" x="1156" height="1" width="1" id="rect21054" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21056" width="1" height="1" x="1154" y="942.3622" />
+<rect y="938.3622" x="1152" height="1" width="1" id="rect21058" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21068" width="1" height="1" x="1160" y="938.3622" />
+<rect y="940.3622" x="1160" height="1" width="1" id="rect21070" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21072" width="1" height="1" x="1160" y="942.3622" />
+<rect y="943.3622" x="1159" height="1" width="1" id="rect21074" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21076" width="1" height="1" x="1157" y="943.3622" />
+<rect y="943.3622" x="1155" height="1" width="1" id="rect21078" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21080" width="1" height="1" x="1153" y="943.3622" />
+<rect y="942.3622" x="1152" height="1" width="1" id="rect21082" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect21084" width="1" height="1" x="1152" y="936.3622" />
+<rect y="944.3622" x="1151" height="1.000003" width="10" id="rect21107" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="933.3622" x="1161" height="12.00001" width="1" id="rect21135" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect y="931.3622" x="1150" height="1" width="1" id="rect21140" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21142" width="1" height="1" x="1151" y="932.3622" />
+<rect y="932.3622" x="1153" height="1.000003" width="1" id="rect21144" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21146" width="1" height="1" x="1155" y="932.3622" />
+<rect y="932.3622" x="1157" height="1" width="1" id="rect21148" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21150" width="1" height="1" x="1159" y="932.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21174" width="1" height="1" x="1149" y="942.3622" />
+<rect y="940.3622" x="1149" height="1" width="1" id="rect21176" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21178" width="1" height="1" x="1149" y="938.3622" />
+<rect y="936.3622" x="1149" height="1" width="1" id="rect21180" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21182" width="1" height="1" x="1149" y="934.3622" />
+<rect y="932.3622" x="1149" height="1" width="1" id="rect21184" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21187" width="1" height="1" x="1151" y="930.3622" />
+<rect y="930.3622" x="1153" height="1" width="1" id="rect21189" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21191" width="1" height="1" x="1155" y="930.3622" />
+<rect y="930.3622" x="1157" height="1" width="1" id="rect21193" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21195" width="1" height="1" x="1159" y="930.3622" />
+<rect y="930.3622" x="1161" height="1" width="1" id="rect21197" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21199" width="1" height="1" x="1163" y="930.3622" />
+<rect y="933.3622" x="1162" height="1" width="1" id="rect21201" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21203" width="1" height="1" x="1162" y="937.3622" />
+<rect y="939.3622" x="1162" height="1" width="1" id="rect21205" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21207" width="1" height="1" x="1163" y="940.3622" />
+<rect y="942.3622" x="1163" height="1" width="1" id="rect21209" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21211" width="1" height="1.000003" x="1162" y="941.3622" />
+<rect y="947.3622" x="1160" height="1" width="1" id="rect21213" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21215" width="1" height="1" x="1158" y="947.3622" />
+<rect y="947.3622" x="1156" height="1" width="1" id="rect21217" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21219" width="1" height="1" x="1154" y="947.3622" />
+<rect y="947.3622" x="1152" height="1" width="1" id="rect21221" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21223" width="1" height="1" x="1150" y="947.3622" />
+<rect y="947.3622" x="1148" height="1" width="1" id="rect21225" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21227" width="1" height="1" x="1148" y="943.3622" />
+<rect y="941.3622" x="1148" height="1" width="1" id="rect21229" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21231" width="1" height="1" x="1148" y="939.3622" />
+<rect y="937.3622" x="1148" height="1" width="1" id="rect21234" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21236" width="1" height="1" x="1148" y="935.3622" />
+<rect y="933.3622" x="1148" height="1" width="1" id="rect21238" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect21240" width="1" height="1" x="1148" y="931.3622" />
+<rect y="941.3622" x="1164" height="1" width="1" id="rect9505" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9507" width="1" height="1" x="1164" y="939.3622" />
+<rect y="937.3622" x="1164" height="1" width="1" id="rect9509" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9511" width="1" height="1" x="1164" y="935.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9515" width="1" height="1" x="1164" y="933.3622" />
+<rect y="931.3622" x="1164" height="1" width="1" id="rect9517" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect transform="scale(-1,1)" y="930.3622" x="-1150" height="1" width="1" id="rect9519" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9521" width="1" height="1" x="1161" y="932.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9523" width="1" height="1" x="1162" y="935.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9525" width="1" height="0.9999974" x="1148" y="945.3622" />
+<rect y="947.3622" x="1162" height="0.9999974" width="1" id="rect9527" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9529" width="1" height="0.9999974" x="1164" y="947.3622" />
+<rect y="945.3622" x="1164" height="0.9999974" width="1" id="rect9531" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9533" width="1" height="0.9999974" x="1164" y="943.3622" />
+<rect y="943.3622" x="1162" height="0.9999974" width="1" id="rect9535" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9537" width="1" height="1" x="1162" y="945.3622" />
+<rect y="945.3622" x="1160" height="0.9999974" width="1" id="rect9539" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9541" width="1" height="0.9999974" x="1158" y="945.3622" />
+<rect y="945.3622" x="1156" height="0.9999974" width="1" id="rect9543" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9545" width="1" height="0.9999974" x="1154" y="945.3622" />
+<rect y="945.3622" x="1152" height="0.9999974" width="1" id="rect9547" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9549" width="1" height="0.9999974" x="1151" y="946.3622" />
+<rect y="946.3622" x="1149" height="0.9999974" width="1" id="rect9551" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect9553" width="1" height="0.9999974" x="1149" y="944.3622" />
+<rect y="945.3622" x="1150" height="0.9999974" width="1" id="rect9555" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect9579" width="1" height="1" x="1151" y="943.3622" />
+<rect y="941.3622" x="1151" height="1" width="1" id="rect9581" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect9583" width="1" height="1" x="1151" y="939.3622" />
+<rect y="937.3622" x="1151" height="1" width="1" id="rect9585" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect9587" width="1" height="1" x="1151" y="935.3622" />
+<rect y="934.3622" x="1152" height="1" width="1" id="rect9589" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect9591" width="1" height="1" x="1154" y="934.3622" />
+<rect y="934.3622" x="1156" height="1" width="1" id="rect9593" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect9595" width="1" height="1" x="1158" y="934.3622" />
+<rect y="934.3622" x="1160" height="1" width="1" id="rect9597" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect9599" width="1" height="1" x="1160" y="936.3622" />
+<rect y="936.3622" x="1160" height="1" width="1" id="rect9601" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect9603" width="1" height="1" x="1152" y="940.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19828" width="1" height="1" x="1163" y="932.3622" />
+<rect y="931.3622" x="1152" height="1" width="1" id="rect19834" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19836" width="1" height="1" x="1154" y="931.3622" />
+<rect y="931.3622" x="1156" height="1" width="1" id="rect19838" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19840" width="1" height="1" x="1158" y="931.3622" />
+<rect y="944.3622" x="1163" height="1" width="1" id="rect19842" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19844" width="1" height="1" x="1160" y="931.3622" />
+<rect y="946.3622" x="1163" height="1" width="1" id="rect19846" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19848" width="1" height="1" x="1162" y="931.3622" />
+<rect y="946.3622" x="1161" height="1" width="1" id="rect19850" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19852" width="1" height="1" x="1159" y="946.3622" />
+<rect y="946.3622" x="1157" height="1" width="1" id="rect19854" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19856" width="1" height="1" x="1155" y="946.3622" />
+<rect y="946.3622" x="1153" height="1" width="1" id="rect19859" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19861" width="1" height="1" x="1163" y="938.3622" />
+<rect y="936.3622" x="1163" height="1" width="1" id="rect19863" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19865" width="1" height="1" x="1163" y="934.3622" />
+<rect y="946.3622" x="1147" height="1" width="1" id="rect19867" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19869" width="1" height="1" x="1147" y="944.3622" />
+<rect y="942.3622" x="1147" height="1" width="1" id="rect19871" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19873" width="1" height="1" x="1147" y="940.3622" />
+<rect y="938.3622" x="1147" height="1" width="1" id="rect19875" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19877" width="1" height="1" x="1147" y="936.3622" />
+<rect y="934.3622" x="1147" height="1" width="1" id="rect19879" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect19881" width="1" height="1" x="1147" y="932.3622" />
+<rect y="930.3622" x="1147" height="1" width="1" id="rect19883" style="opacity:0.3;fill:url(#linearGradient19282)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20006" width="10" height="1.000003" x="1151" y="933.3622" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect20008" width="1" height="12.00001" x="1150" y="933.3622" />
</g>
<g id="paint-pattern" inkscape:label="#fill_pattern" transform="translate(0,4.153308e-4)">
-<path id="rect4541" transform="translate(0,512.3622)" d="M 1180,417 1180,418.0312 1182.719,421.1875 1186.375,417 1180,417 Z M 1182.719,421.1875 1180,424.3125 1180,428.5312 1182.719,431.6875 1187.281,426.4062 1182.719,421.1875 Z M 1187.281,426.4062 1191.813,431.6875 1196.375,426.4062 1191.813,421.1875 1187.281,426.4062 Z M 1191.813,421.1875 1195.469,417 1188.188,417 1191.813,421.1875 Z M 1196.375,426.4062 1200,430.625 1200,422.2187 1196.375,426.4062 Z M 1191.813,431.6875 1187.281,436.9062 1187.375,437 1196.281,437 1196.375,436.9062 1191.813,431.6875 Z M 1196.375,436.9062 1196.469,437 1200,437 1200,432.7187 1196.375,436.9062 Z M 1187.281,436.9062 1182.719,431.6875 1180,434.8125 1180,437 1187.188,437 1187.282,436.9063 Z M 1197.281,417 1200,420.125 1200,417 1197.281,417 Z" style="color:#000000;display:inline;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000004;marker:none" inkscape:connector-curvature="0" />
-<path id="rect4381" transform="translate(0,512.3622)" d="M 1180,417 1180,437 1200,437 1200,417 1180,417 Z" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.9999989;marker:none" inkscape:connector-curvature="0" />
+<path id="rect4541" transform="translate(0,512.3622)" d="M 1180,417 1180,418.0312 1182.719,421.1875 1186.375,417 1180,417 Z M 1182.719,421.1875 1180,424.3125 1180,428.5312 1182.719,431.6875 1187.281,426.4062 1182.719,421.1875 Z M 1187.281,426.4062 1191.813,431.6875 1196.375,426.4062 1191.813,421.1875 1187.281,426.4062 Z M 1191.813,421.1875 1195.469,417 1188.188,417 1191.813,421.1875 Z M 1196.375,426.4062 1200,430.625 1200,422.2187 1196.375,426.4062 Z M 1191.813,431.6875 1187.281,436.9062 1187.375,437 1196.281,437 1196.375,436.9062 1191.813,431.6875 Z M 1196.375,436.9062 1196.469,437 1200,437 1200,432.7187 1196.375,436.9062 Z M 1187.281,436.9062 1182.719,431.6875 1180,434.8125 1180,437 1187.188,437 1187.282,436.9063 Z M 1197.281,417 1200,420.125 1200,417 1197.281,417 Z" style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.0000004" inkscape:connector-curvature="0" />
+<path id="rect4381" transform="translate(0,512.3622)" d="M 1180,417 1180,437 1200,437 1200,417 1180,417 Z" style="color:#000000;fill:none;stroke-width:0.9999989" inkscape:connector-curvature="0" />
</g>
<g id="fill-rule-nonzero" inkscape:label="#fillrule_nonzero" transform="translate(0,4.153308e-4)">
-<rect transform="translate(0,512.3622)" y="451" x="1079" height="20" width="20" id="rect20250" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccs" id="path20248" d="M 1089.028,983.3622 C 1099.424,983.3622 1101.913,963.3622 1095.448,963.3622 1088.901,963.3622 1078.606,979.3653 1089.064,979.3653 1099.391,979.3653 1089.154,963.3622 1082.632,963.3622 1076.11,963.3622 1078.448,983.3622 1089.028,983.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none" inkscape:label="#fillrule_nonzero" inkscape:connector-curvature="0" />
+<rect transform="translate(0,512.3622)" y="451" x="1079" height="20" width="20" id="rect20250" style="fill:none" />
+<path sodipodi:nodetypes="ccccs" id="path20248" d="M 1089.028,983.3622 C 1099.424,983.3622 1101.913,963.3622 1095.448,963.3622 1088.901,963.3622 1078.606,979.3653 1089.064,979.3653 1099.391,979.3653 1089.154,963.3622 1082.632,963.3622 1076.11,963.3622 1078.448,983.3622 1089.028,983.3622 Z" style="fill:url(#linearGradient19282)" inkscape:label="#fillrule_nonzero" inkscape:connector-curvature="0" />
</g>
<g id="fill-rule-even-odd" inkscape:label="#fillrule_evenodd" transform="translate(0,4.153308e-4)">
-<g id="g20362">
-<g id="g20364">
-<rect style="fill:none;stroke:none" id="rect20366" width="20" height="20" x="1044" y="963.3622" />
-</g>
-<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 1054.028,983.3622 C 1064.424,983.3622 1066.913,963.3622 1060.448,963.3622 1053.901,963.3622 1043.606,979.3654 1054.064,979.3654 1064.391,979.3654 1054.154,963.3622 1047.632,963.3622 1041.11,963.3622 1043.448,983.3622 1054.028,983.3622 Z" id="path20368" />
-</g>
+<rect style="fill:none" id="rect20366" width="20" height="20" x="1044" y="963.3622" />
+<path id="path20368" d="m 1054.028,983.3622 c 10.396,0 12.885,-20 6.42,-20 -6.547,0 -16.842,16.0032 -6.384,16.0032 10.327,0 0.09,-16.0032 -6.432,-16.0032 -6.522,0 -4.184,20 6.396,20 z" style="fill:url(#linearGradient19282);fill-rule:evenodd" inkscape:connector-curvature="0" />
</g>
<g id="paint-unknown" inkscape:label="#fill_unset" transform="translate(0,4.153308e-4)">
-<rect transform="translate(0,512.3622)" y="451" x="1113" height="20" width="20" id="rect20390" style="fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccsccccccscccccccc" inkscape:connector-curvature="0" id="path20410" d="M 1123.259,965.2684 C 1124.704,965.2684 1125.984,965.6452 1127.101,966.3988 1128.367,967.2623 1129,968.4241 1129,969.8842 1129,971.1088 1128.613,972.0744 1127.838,972.7809 L 1125.7,974.4703 C 1125,974.957 1125,975.483 1125,976.3622 L 1120,976.3622 C 1119.745,974.2091 1120.589,973.6147 1121.244,972.9396 1121.422,972.7512 1122.537,972.2956 1123.415,971.4856 1123.962,970.9808 1124.398,970.7006 1124.398,970.1197 1124.398,969.7115 1124.242,969.3818 1123.929,969.1306 1123.631,968.8794 1123.274,968.7538 1122.857,968.7538 1122.395,968.7538 1120.999,969.0072 1120.977,970.585 L 1121,971.3622 1117,971.2972 C 1117,970.3552 1117.179,969.1149 1117.536,968.4241 1117.879,967.7176 1118.392,967.121 1119.078,966.6343 1120.209,965.8179 1121.398,965.2684 1123.26,965.2684" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:100%;font-family:Hegel-Black;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="text2490" d="M 1120.05,978.3622 1125,978.3622 1124.937,983.2684 1120.049,983.2684 1120.049,978.3622" style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:100%;font-family:Hegel-Black;writing-mode:lr-tb;text-anchor:start;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect transform="translate(0,512.3622)" y="451" x="1113" height="20" width="20" id="rect20390" style="fill:none" />
+<path sodipodi:nodetypes="ccsccccccscccccccc" inkscape:connector-curvature="0" id="path20410" d="M 1123.259,965.2684 C 1124.704,965.2684 1125.984,965.6452 1127.101,966.3988 1128.367,967.2623 1129,968.4241 1129,969.8842 1129,971.1088 1128.613,972.0744 1127.838,972.7809 L 1125.7,974.4703 C 1125,974.957 1125,975.483 1125,976.3622 L 1120,976.3622 C 1119.745,974.2091 1120.589,973.6147 1121.244,972.9396 1121.422,972.7512 1122.537,972.2956 1123.415,971.4856 1123.962,970.9808 1124.398,970.7006 1124.398,970.1197 1124.398,969.7115 1124.242,969.3818 1123.929,969.1306 1123.631,968.8794 1123.274,968.7538 1122.857,968.7538 1122.395,968.7538 1120.999,969.0072 1120.977,970.585 L 1121,971.3622 1117,971.2972 C 1117,970.3552 1117.179,969.1149 1117.536,968.4241 1117.879,967.7176 1118.392,967.121 1119.078,966.6343 1120.209,965.8179 1121.398,965.2684 1123.26,965.2684" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="text2490" d="M 1120.05,978.3622 1125,978.3622 1124.937,983.2684 1120.049,983.2684 1120.049,978.3622" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="no-marker" transform="translate(1147,967.3622)">
+<title id="title36824">no-marker</title>
+<rect style="fill:none" id="rect36826" width="16" height="16" x="0" y="0" />
+<path inkscape:connector-curvature="0" id="path36828" d="M 1,8 15,8" style="fill:none;stroke:url(#linearGradient19282);stroke-width:2" />
</g>
<g id="stroke-join-bevel-16px" inkscape:label="#join_bevel_16px" transform="translate(0,4.000415)">
-<g inkscape:label="stock-join-bevel" id="g13357" style="display:inline" transform="translate(962.9998,465.3622)">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect13323" width="16" height="16" x="-160" y="342" transform="translate(241.0002,217)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 86.0002,561 83.0002,564 83.0002,566 83.0002,569 83.0002,574 86.0002,574 86.0002,564 88.0002,564 89.0002,564 95.0002,564 95.0002,561 Z M 89.0002,567 89.0002,574 92.0002,574 92.0002,570 95.0002,570 95.0002,567 Z" id="rect13325" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccc" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13341" width="1" height="1" x="93.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13343" width="1" height="1" x="91.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13345" width="1" height="1" x="89.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13347" width="1" height="1" x="87.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13349" width="1" height="1" x="87.0002" y="567" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13351" width="1" height="1" x="87.0002" y="569" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13353" width="1" height="1" x="87.0002" y="571" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13355" width="1" height="1" x="87.0002" y="573" />
-</g>
-</g>
-<g id="stroke-join-miter-16px" inkscape:label="#g24395" transform="translate(4,4.000415)">
-<g inkscape:label="stock-join-miter" id="g13410" style="display:inline" transform="translate(977.9998,465.3622)">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect13390" width="16" height="16" x="-160" y="342" transform="translate(241.0002,217)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 86.0002,561 83.0002,561 83.0002,566 83.0002,569 83.0002,574 86.0002,574 86.0002,564 88.0002,564 89.0002,564 95.0002,564 95.0002,561 Z M 89.0002,567 89.0002,574 92.0002,574 92.0002,570 95.0002,570 95.0002,567 Z" id="path13392" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccc" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13394" width="1" height="1" x="93.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13396" width="1" height="1" x="91.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13398" width="1" height="1" x="89.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13400" width="1" height="1" x="87.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13402" width="1" height="1" x="87.0002" y="567" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13404" width="1" height="1" x="87.0002" y="569" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13406" width="1" height="1" x="87.0002" y="571" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13408" width="1" height="1" x="87.0002" y="573" />
-</g>
-</g>
-<g id="stroke-join-round-16px" inkscape:label="#g24409" transform="translate(7,4.000415)">
-<g inkscape:label="stock-join-round" id="g13484" style="display:inline" transform="translate(990.9998,465.3622)">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect13427" width="16" height="16" x="121.0002" y="559" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13431" width="1" height="1" x="133.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13433" width="1" height="1" x="131.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13435" width="1" height="1" x="129.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13437" width="1" height="1" x="127.0002" y="565" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13439" width="1" height="1" x="127.0002" y="567" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13441" width="1" height="1" x="127.0002" y="569" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13443" width="1" height="1" x="127.0002" y="571" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect13445" width="1" height="1" x="127.0002" y="573" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 123.0002,574 123.0002,570 123.0002,565 C 123.0002,562.784 124.7842,561 127.0002,561 L 135.0002,561 C 135.0002,565.3748 135.0002,560.1443 135.0002,564 L 128.0002,564 C 126.8932,563.9532 126.0002,564.892 126.0002,566 L 126.0002,571 126.0002,574 Z" id="rect13447" inkscape:connector-curvature="0" sodipodi:nodetypes="ccssccssccc" />
-<path transform="translate(241.0002,217)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M -112,350 -106,350 -106,351.75 -106,353 -109,353 -109,357 -112,357 Z" id="rect13481" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
+<g inkscape:label="stock-join-bevel" id="g13357" transform="translate(962.9998,465.3622)">
+<rect style="opacity:0.3;fill:none" id="rect13323" width="16" height="16" x="-160" y="342" transform="translate(241.0002,217)" />
+<path style="fill:url(#linearGradient19282)" d="M 86.0002,561 83.0002,564 83.0002,566 83.0002,569 83.0002,574 86.0002,574 86.0002,564 88.0002,564 89.0002,564 95.0002,564 95.0002,561 Z M 89.0002,567 89.0002,574 92.0002,574 92.0002,570 95.0002,570 95.0002,567 Z" id="rect13325" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccc" />
+<rect style="fill:url(#linearGradient19282)" id="rect13341" width="1" height="1" x="93.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13343" width="1" height="1" x="91.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13345" width="1" height="1" x="89.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13347" width="1" height="1" x="87.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13349" width="1" height="1" x="87.0002" y="567" />
+<rect style="fill:url(#linearGradient19282)" id="rect13351" width="1" height="1" x="87.0002" y="569" />
+<rect style="fill:url(#linearGradient19282)" id="rect13353" width="1" height="1" x="87.0002" y="571" />
+<rect style="fill:url(#linearGradient19282)" id="rect13355" width="1" height="1" x="87.0002" y="573" />
+</g>
+</g>
+<g id="stroke-join-miter-16px" transform="translate(4,4.000415)">
+<g inkscape:label="stock-join-miter" id="g13410" transform="translate(977.9998,465.3622)">
+<rect style="opacity:0.3;fill:none" id="rect13390" width="16" height="16" x="-160" y="342" transform="translate(241.0002,217)" />
+<path style="fill:url(#linearGradient19282)" d="m 86.0002,561 -3,0 0,5 0,3 0,5 3,0 0,-10 2,0 1,0 6,0 0,-3 z m 3,6 0,7 3,0 0,-4 3,0 0,-3 z" id="path13392" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccc" />
+<rect style="fill:url(#linearGradient19282)" id="rect13394" width="1" height="1" x="93.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13396" width="1" height="1" x="91.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13398" width="1" height="1" x="89.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13400" width="1" height="1" x="87.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13402" width="1" height="1" x="87.0002" y="567" />
+<rect style="fill:url(#linearGradient19282)" id="rect13404" width="1" height="1" x="87.0002" y="569" />
+<rect style="fill:url(#linearGradient19282)" id="rect13406" width="1" height="1" x="87.0002" y="571" />
+<rect style="fill:url(#linearGradient19282)" id="rect13408" width="1" height="1" x="87.0002" y="573" />
+</g>
+</g>
+<g id="stroke-join-round-16px" transform="translate(7,4.000415)">
+<g inkscape:label="stock-join-round" id="g13484" transform="translate(990.9998,465.3622)">
+<rect style="opacity:0.3;fill:none" id="rect13427" width="16" height="16" x="121.0002" y="559" />
+<rect style="fill:url(#linearGradient19282)" id="rect13431" width="1" height="1" x="133.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13433" width="1" height="1" x="131.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13435" width="1" height="1" x="129.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13437" width="1" height="1" x="127.0002" y="565" />
+<rect style="fill:url(#linearGradient19282)" id="rect13439" width="1" height="1" x="127.0002" y="567" />
+<rect style="fill:url(#linearGradient19282)" id="rect13441" width="1" height="1" x="127.0002" y="569" />
+<rect style="fill:url(#linearGradient19282)" id="rect13443" width="1" height="1" x="127.0002" y="571" />
+<rect style="fill:url(#linearGradient19282)" id="rect13445" width="1" height="1" x="127.0002" y="573" />
+<path style="fill:url(#linearGradient19282)" d="m 123.0002,574 0,-4 0,-5 c 0,-2.216 1.784,-4 4,-4 l 8,0 c 0,4.3748 0,-0.8557 0,3 l -7,0 c -1.107,-0.047 -2,0.892 -2,2 l 0,5 0,3 z" id="rect13447" inkscape:connector-curvature="0" sodipodi:nodetypes="ccssccssccc" />
+<path transform="translate(241.0002,217)" style="fill:url(#linearGradient19282)" d="m -112,350 6,0 0,1.75 0,1.25 -3,0 0,4 -3,0 z" id="rect13481" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
</g>
</g>
<g id="stroke-join-bevel" inkscape:label="#join_bevel" transform="translate(0,4.153308e-4)">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect24338" width="24" height="24.00001" x="1044" y="997.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1052.25,998.4798 1046,1006.203 1046,1019.362 1051,1019.362 1051,1003.362 1053.438,1003.362 1055,1003.362 1067,1003.362 1067,998.4798 Z M 1055,1007.362 1055,1019.362 1060,1019.362 1060,1012.362 1067,1012.362 1067,1007.362 Z" id="path24340" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccc" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24342" width="2" height="1.999997" x="1055" y="1004.362" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24344" width="2" height="1.999997" x="1061" y="1004.362" />
-<rect y="1004.362" x="1058" height="1.999997" width="2" id="rect24491" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="1004.362" x="1052" height="1.999997" width="2" id="rect24493" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="1004.362" x="1064" height="1.999997" width="2" id="rect24495" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24497" width="2" height="1.999997" x="1052" y="1007.362" />
-<rect y="1010.362" x="1052" height="1.999997" width="2" id="rect24499" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24501" width="2" height="1.999997" x="1052" y="1013.362" />
-<rect y="1016.362" x="1052" height="1.999997" width="2" id="rect24503" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="opacity:0.3;fill:none" id="rect24338" width="24" height="24.00001" x="1044" y="997.3622" />
+<path style="fill:url(#linearGradient19282)" d="M 1052.25,998.4798 1046,1006.203 1046,1019.362 1051,1019.362 1051,1003.362 1053.438,1003.362 1055,1003.362 1067,1003.362 1067,998.4798 Z M 1055,1007.362 1055,1019.362 1060,1019.362 1060,1012.362 1067,1012.362 1067,1007.362 Z" id="path24340" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccc" />
+<rect style="fill:url(#linearGradient19282)" id="rect24342" width="2" height="1.999997" x="1055" y="1004.362" />
+<rect style="fill:url(#linearGradient19282)" id="rect24344" width="2" height="1.999997" x="1061" y="1004.362" />
+<rect y="1004.362" x="1058" height="1.999997" width="2" id="rect24491" style="fill:url(#linearGradient19282)" />
+<rect y="1004.362" x="1052" height="1.999997" width="2" id="rect24493" style="fill:url(#linearGradient19282)" />
+<rect y="1004.362" x="1064" height="1.999997" width="2" id="rect24495" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24497" width="2" height="1.999997" x="1052" y="1007.362" />
+<rect y="1010.362" x="1052" height="1.999997" width="2" id="rect24499" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24501" width="2" height="1.999997" x="1052" y="1013.362" />
+<rect y="1016.362" x="1052" height="1.999997" width="2" id="rect24503" style="fill:url(#linearGradient19282)" />
</g>
<g id="stroke-join-miter" inkscape:label="#join_miter" transform="translate(0,4.153308e-4)">
-<rect y="997.3622" x="1083" height="24.00001" width="24" id="rect24507" style="opacity:0.3;fill:none;stroke:none" />
-<path sodipodi:nodetypes="ccccccccccccccccc" inkscape:connector-curvature="0" id="path24509" d="M 1091.25,998.4798 1085,998.3622 1085,1019.362 1090,1019.362 1090,1003.362 1092.438,1003.362 1094,1003.362 1106,1003.362 1106,998.4798 Z M 1094,1007.362 1094,1019.362 1099,1019.362 1099,1012.362 1106,1012.362 1106,1007.362 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="1004.362" x="1094" height="1.999997" width="2" id="rect24511" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="1004.362" x="1100" height="1.999997" width="2" id="rect24513" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24515" width="2" height="1.999997" x="1097" y="1004.362" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24517" width="2" height="1.999997" x="1091" y="1004.362" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24519" width="2" height="1.999997" x="1103" y="1004.362" />
-<rect y="1007.362" x="1091" height="1.999997" width="2" id="rect24521" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24523" width="2" height="1.999997" x="1091" y="1010.362" />
-<rect y="1013.362" x="1091" height="1.999997" width="2" id="rect24525" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24527" width="2" height="1.999997" x="1091" y="1016.362" />
+<rect y="997.3622" x="1083" height="24.00001" width="24" id="rect24507" style="opacity:0.3;fill:none" />
+<path sodipodi:nodetypes="ccccccccccccccccc" inkscape:connector-curvature="0" id="path24509" d="M 1091.25,998.4798 1085,998.3622 1085,1019.362 1090,1019.362 1090,1003.362 1092.438,1003.362 1094,1003.362 1106,1003.362 1106,998.4798 Z M 1094,1007.362 1094,1019.362 1099,1019.362 1099,1012.362 1106,1012.362 1106,1007.362 Z" style="fill:url(#linearGradient19282)" />
+<rect y="1004.362" x="1094" height="1.999997" width="2" id="rect24511" style="fill:url(#linearGradient19282)" />
+<rect y="1004.362" x="1100" height="1.999997" width="2" id="rect24513" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24515" width="2" height="1.999997" x="1097" y="1004.362" />
+<rect style="fill:url(#linearGradient19282)" id="rect24517" width="2" height="1.999997" x="1091" y="1004.362" />
+<rect style="fill:url(#linearGradient19282)" id="rect24519" width="2" height="1.999997" x="1103" y="1004.362" />
+<rect y="1007.362" x="1091" height="1.999997" width="2" id="rect24521" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24523" width="2" height="1.999997" x="1091" y="1010.362" />
+<rect y="1013.362" x="1091" height="1.999997" width="2" id="rect24525" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24527" width="2" height="1.999997" x="1091" y="1016.362" />
</g>
<g id="stroke-join-round" inkscape:label="#join_round" transform="translate(0,4.153308e-4)">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect24312" width="24.00006" height="24.00001" x="1121" y="997.3621" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1123,1020.362 1123,1014.362 1123,1005.962 C 1123,1002.638 1126.476,999.3622 1129.8,999.3622 L 1144,999.3622 1144,1004.362 1132,1004.362 C 1128,1004.362 1128,1004.362 1128,1007.362 L 1128,1015.562 1128,1020.362 Z" id="path24330" inkscape:connector-curvature="0" sodipodi:nodetypes="ccssccssccc" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 1132,1008.362 1144,1008.362 1144,1013.362 1142,1013.362 1137,1013.362 1137,1020.362 1132,1020.362 Z" id="path24332" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24550" width="2" height="1.999997" x="1132" y="1005.362" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24552" width="2" height="1.999997" x="1138" y="1005.362" />
-<rect y="1005.362" x="1135" height="1.999997" width="2" id="rect24554" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="1005.362" x="1129" height="1.999997" width="2" id="rect24556" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="1005.362" x="1141" height="1.999997" width="2" id="rect24558" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24560" width="2" height="1.999997" x="1129" y="1008.362" />
-<rect y="1011.362" x="1129" height="1.999997" width="2" id="rect24562" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24564" width="2" height="1.999997" x="1129" y="1014.362" />
-<rect y="1017.362" x="1129" height="1.999997" width="2" id="rect24566" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
+<rect style="opacity:0.3;fill:none" id="rect24312" width="24.00006" height="24.00001" x="1121" y="997.3621" />
+<path style="fill:url(#linearGradient19282)" d="M 1123,1020.362 1123,1014.362 1123,1005.962 C 1123,1002.638 1126.476,999.3622 1129.8,999.3622 L 1144,999.3622 1144,1004.362 1132,1004.362 C 1128,1004.362 1128,1004.362 1128,1007.362 L 1128,1015.562 1128,1020.362 Z" id="path24330" inkscape:connector-curvature="0" sodipodi:nodetypes="ccssccssccc" />
+<path style="fill:url(#linearGradient19282)" d="M 1132,1008.362 1144,1008.362 1144,1013.362 1142,1013.362 1137,1013.362 1137,1020.362 1132,1020.362 Z" id="path24332" inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccc" />
+<rect style="fill:url(#linearGradient19282)" id="rect24550" width="2" height="1.999997" x="1132" y="1005.362" />
+<rect style="fill:url(#linearGradient19282)" id="rect24552" width="2" height="1.999997" x="1138" y="1005.362" />
+<rect y="1005.362" x="1135" height="1.999997" width="2" id="rect24554" style="fill:url(#linearGradient19282)" />
+<rect y="1005.362" x="1129" height="1.999997" width="2" id="rect24556" style="fill:url(#linearGradient19282)" />
+<rect y="1005.362" x="1141" height="1.999997" width="2" id="rect24558" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24560" width="2" height="1.999997" x="1129" y="1008.362" />
+<rect y="1011.362" x="1129" height="1.999997" width="2" id="rect24562" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24564" width="2" height="1.999997" x="1129" y="1014.362" />
+<rect y="1017.362" x="1129" height="1.999997" width="2" id="rect24566" style="fill:url(#linearGradient19282)" />
</g>
<g transform="translate(15,1.000415)" id="stroke-cap-butt" inkscape:label="#cap_butt">
-<rect y="996.3622" x="1146" height="24.00001" width="24" id="rect24629" style="opacity:0.3;fill:none;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24639" width="2" height="1.999997" x="1157" y="1004.362" />
-<rect y="1007.362" x="1157" height="1.999997" width="2" id="rect24643" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24645" width="2" height="1.999997" x="1157" y="1010.362" />
-<rect y="1013.362" x="1157" height="1.999997" width="2" id="rect24647" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24649" width="2" height="1.999997" x="1157" y="1016.362" />
-<rect y="1004.362" x="1150" height="14" width="5" id="rect24662" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24664" width="5" height="14" x="1161" y="1004.362" />
+<rect y="996.3622" x="1146" height="24.00001" width="24" id="rect24629" style="opacity:0.3;fill:none" />
+<rect style="fill:url(#linearGradient19282)" id="rect24639" width="2" height="1.999997" x="1157" y="1004.362" />
+<rect y="1007.362" x="1157" height="1.999997" width="2" id="rect24643" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24645" width="2" height="1.999997" x="1157" y="1010.362" />
+<rect y="1013.362" x="1157" height="1.999997" width="2" id="rect24647" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24649" width="2" height="1.999997" x="1157" y="1016.362" />
+<rect y="1004.362" x="1150" height="14" width="5" id="rect24662" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24664" width="5" height="14" x="1161" y="1004.362" />
</g>
<g transform="translate(15,1.000415)" id="stroke-cap-square" inkscape:label="#cap_square">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect24666" width="24" height="24.00001" x="1184" y="996.3622" />
-<rect y="1004.362" x="1195" height="1.999997" width="2" id="rect24668" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24670" width="2" height="1.999997" x="1195" y="1007.362" />
-<rect y="1010.362" x="1195" height="1.999997" width="2" id="rect24672" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24674" width="2" height="1.999997" x="1195" y="1013.362" />
-<rect y="1016.362" x="1195" height="1.999997" width="2" id="rect24676" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path inkscape:connector-curvature="0" id="rect24678" d="M 1188,999.3622 1188,1000.362 1188,1003.362 1188,1018.362 1193,1018.362 1193,1003.362 1199,1003.362 1199,1018.362 1204,1018.362 1204,1000.362 1204,999.3622 1188,999.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="g78849">
-<path inkscape:connector-curvature="0" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" d="M 78.1875,909.3622 C 77.5248,909.3622 77,909.9112 77,910.5809 L 77,920.1434 C 77,920.8132 77.5248,921.3622 78.1875,921.3622 L 87.8125,921.3622 C 88.4752,921.3622 89,920.8132 89,920.1434 L 89,910.5809 C 89,909.9112 88.4752,909.3622 87.8125,909.3622 L 78.1875,909.3622 Z M 82,912.3622 84,912.3622 84,914.3622 86,914.3622 86,916.3622 84,916.3622 84,918.3622 82,918.3622 82,916.3622 80,916.3622 80,914.3622 82,914.3622 82,912.3622 Z" id="rect11749-5-0-1-8" />
-<rect style="fill:none;stroke:none" id="rect3620-5-4" width="15.98182" height="16" x="75" y="907.3622" rx="0" ry="0" />
-</g>
-<g style="display:inline" transform="translate(-67,529.3622)" inkscape:label="zoom-out" id="g14642-3-0-2">
-<path inkscape:connector-curvature="0" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" d="M 203.1875,670 C 202.5248,670 202,670.549 202,671.2187 L 202,680.7812 C 202,681.451 202.5248,682 203.1875,682 L 212.8125,682 C 213.4752,682 214,681.451 214,680.7812 L 214,671.2187 C 214,670.549 213.4752,670 212.8125,670 L 203.1875,670 Z M 205,675 211,675 211,677 205,677 205,675 Z" transform="translate(-58,-270)" id="rect11749-5-0-1-8-7" />
-<rect style="fill:none;stroke:none" id="rect3620-5-4-5" width="15.98182" height="16" x="142" y="398" rx="0" ry="0" />
-</g>
-<g id="reset-default" inkscape:label="#g78883">
-<g inkscape:label="stock-reset" id="g30155" style="display:inline" transform="translate(-46.0002,548.3622)">
-<rect style="opacity:0.3;fill:none;stroke:none" id="rect30123" width="16" height="16" x="-120" y="182" transform="translate(241.0002,217)" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" id="path30125" transform="matrix(1.25,0,0,1.25,271.2502,167.5)" cx="-117" cy="196" r="2" />
-<path style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;marker:none;enable-background:accumulate" d="M 125.0233,409 121.0002,405 129.0002,405 Z" id="path30137" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" d="M 124.9065,401 C 124.4149,401.0463 123.9981,401.5062 124.0002,402 L 124.0002,406 C 123.9932,406.5283 124.4718,407.0142 125.0002,407.0142 125.5286,407.0142 126.0077,406.5283 126.0002,406 L 126.0002,403 134.0002,403 134.0002,412 130.0002,412 C 129.4719,411.993 128.986,412.4716 128.986,413 128.986,413.5284 129.4719,414.0075 130.0002,414 L 135.0002,414 C 135.5238,414 136.0002,413.5236 136.0002,413 L 136.0002,402 C 136.0002,401.4764 135.5238,401 135.0002,401 L 125.0002,401 C 124.969,400.999 124.9377,400.999 124.9065,401 Z" id="path30149" inkscape:connector-curvature="0" sodipodi:nodetypes="cccscccccscccccccc" />
-</g>
-</g>
-<g id="paint-swatch" inkscape:label="#g22275">
-<rect y="929.3632" x="1214" height="20" width="20" id="rect22266" style="fill:none;fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="rect22268" transform="translate(0,512.3622)" d="M 1215,418 1215,436 1233,436 1233,418 Z M 1216,419 1232,419 1232,435 1216,435 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="translate(0,512.3622)" y="420" x="1217" height="13.99997" width="13.99988" id="rect22273" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="snap" inkscape:label="#g26741" transform="translate(0,21)">
-<g id="g22410">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" id="rect22340" width="16" height="16" x="559" y="505.3621" />
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" id="rect22342" width="16" height="16" x="559" y="505.3627" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22373" width="3" height="3" x="561" y="505.3621" rx="7" ry="0" />
-<rect ry="0" rx="7" y="518.3621" x="561" height="3" width="3" id="rect22375" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 561,510.3622 559,512.3622 561,514.3622 559,516.3622 561,516.3622 563,514.3622 561,512.3622 563,510.3622 Z" id="path22386" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccc" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:3;marker:none;enable-background:new" d="M 565,505.3437 565,508.3437 566.5312,508.3437 C 569.6496,508.3437 572.0625,510.6544 572.0625,513.375 572.0625,516.0956 569.6496,518.375 566.5312,518.375 566.4138,518.375 566.3012,518.3504 566.1875,518.3438 L 566.1563,518.3438 566.1251,518.3438 564.9688,518.3438 564.9688,521.3438 566.0313,521.3438 566.125,521.3438 C 566.2675,521.3508 566.3909,521.375 566.5313,521.375 571.1549,521.375 575.0625,517.8419 575.0625,513.375 575.0625,508.908 571.1549,505.3437 566.5313,505.3437 L 565,505.3437 Z" id="path14123" inkscape:connector-curvature="0" />
-</g>
-</g>
-<g id="snap-bounding-box" inkscape:label="#g26750" transform="translate(0,21)">
-<rect y="505.3622" x="588.9688" height="16" width="16" id="rect22420" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 589.0625,521.4247 591,521.3418 591,517.3622 589,517.3622 C 589,518.2465 589.0625,520.5403 589.0625,521.4247 Z" id="path22436" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<rect y="511.3622" x="589" height="4" width="2" id="rect22455" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" y="-599" x="505.3622" height="4" width="2" id="rect22459" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22462" width="2" height="4" x="505.3622" y="-605" transform="rotate(90)" />
-<rect y="505.3622" x="589" height="4" width="4" id="rect22464" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccc" transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path22466" d="M 593,-3 593,4 600,-3 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="snap-bounding-box-edges" inkscape:label="#g26760" transform="translate(0,21)">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" id="rect22470" width="16" height="16" x="618.9688" y="505.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22474" width="2" height="9.999997" x="619" y="511.3622" />
-<rect y="505.3622" x="619" height="4" width="2" id="rect22476" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22478" width="2" height="10" x="505.3622" y="-635" transform="rotate(90)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22482" width="4" height="2" x="619" y="505.3622" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 631,508.3622 628,512.3622 634,512.3622 Z" id="path22484" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22486" d="M 622,517.3622 626,514.3622 626,520.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="snap-bounding-box-corners" inkscape:label="#g26773" transform="translate(0,21)">
-<rect transform="scale(-1)" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" id="rect22498" width="16" height="16" x="-665" y="-522.4247" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path22500" d="M 663.9062,506.3622 661.9687,506.4451 661.9687,510.4247 663.9687,510.4247 C 663.9687,509.5403 663.9062,507.2465 663.9062,506.3622 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
-<rect transform="scale(-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22502" width="2" height="4" x="-663.9688" y="-516.4247" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22506" width="2" height="4" x="-521.4247" y="654.9688" transform="rotate(-90)" />
-<rect transform="rotate(-90)" y="648.9688" x="-521.4247" height="4" width="2" id="rect22508" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 659.9687,517.4247 659.9687,510.4247 652.9687,517.4247 Z" id="path22512" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<rect transform="matrix(0.687668,0.7260253,-0.7260156,0.6876782,0,0)" y="-125.2675" x="831.2465" height="3.536811" width="3.536813" id="rect22515" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="snap-bounding-box-center" inkscape:label="#g26797" transform="translate(0,21)">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" id="rect22584" width="15.93774" height="15.93773" x="-724.9375" y="-522.4247" transform="scale(-1)" />
-<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path22586" d="M 724.8441,506.4247 722.9141,506.5073 722.9141,510.4714 724.9064,510.4714 C 724.9064,509.5905 724.8441,507.3056 724.8441,506.4247 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" />
-<rect y="-522.4247" x="-724.9064" height="3.984433" width="1.992218" id="rect22588" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(-1)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22590" width="1.992216" height="3.984436" x="-522.3624" y="714.9764" transform="rotate(-90)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22592" width="3.984436" height="1.992216" x="-724.9064" y="-522.4247" transform="scale(-1)" />
-<rect transform="rotate(-90)" y="714.9764" x="-508.4169" height="3.984436" width="1.992216" id="rect22594" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(-1)" y="-508.4169" x="-724.9375" height="1.992216" width="3.984436" id="rect22596" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22604" width="1.992218" height="9.961082" x="715.9725" y="-519.3741" transform="scale(1,-1)" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 709.0931,506.4247 711.0231,506.5073 711.0231,510.4714 709.0309,510.4714 C 709.0309,509.5905 709.0931,507.3056 709.0931,506.4247 Z" id="path22606" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22608" width="3.984436" height="1.992216" x="708.9998" y="-508.4169" transform="scale(1,-1)" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 708.9375,520.4325 709.0201,522.3624 712.9842,522.3624 712.9842,520.3702 C 712.1033,520.3702 709.8184,520.4324 708.9375,520.4324 Z" id="path22610" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22612" width="3.984433" height="1.992218" x="518.3469" y="-710.992" transform="rotate(90)" />
-<rect y="513.3975" x="711.9881" height="1.992216" width="9.961089" id="rect22614" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="512.4014" x="708.9998" height="3.984433" width="1.992218" id="rect22616" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="512.4014" x="722.9453" height="3.984433" width="1.992218" id="rect22618" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="snap-bounding-box-midpoints" inkscape:label="#g26782" transform="translate(0,21)">
-<rect transform="scale(-1)" y="-522.4247" x="-695" height="15.93774" width="16" id="rect22519" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 694.9062,506.4247 692.9687,506.5073 692.9687,510.4714 694.9687,510.4714 C 694.9687,509.5905 694.9062,507.3056 694.9062,506.4247 Z" id="path22521" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
-<rect transform="scale(-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22525" width="2" height="3.984435" x="-694.9688" y="-522.4247" />
-<rect transform="rotate(-90)" y="686" x="-522.3624" height="3" width="1.992218" id="rect22527" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(-1)" y="-522.4247" x="-694.9688" height="1.992218" width="4" id="rect22531" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22541" width="1.992218" height="3" x="-508.4169" y="686" transform="rotate(-90)" />
-<rect y="506.4247" x="691" height="1.992218" width="4" id="rect22626" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="rotate(90)" y="-688" x="513.3975" height="7" width="1.992218" id="rect22628" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22632" d="M 688,511.4052 688,517.3819 692,514.3935 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="512.4014" x="693" height="3.984432" width="2" id="rect22646" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="510.4091" x="681" height="7.96887" width="2" id="rect22650" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 685,518.378 679,518.378 682,522.3624 Z" id="path22652" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22654" d="M 685,510.4091 679,510.4091 682,506.4247 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g id="snap-nodes" inkscape:label="#g26814" transform="translate(0,21)">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.027985;marker:none;enable-background:accumulate" d="M 754.3125,522.3558 A 0.5140439,0.5121131 0 0 1 753.9062,521.7621 C 754.1396,520.166 753.8455,518.039 752.7812,516.3558 752.1487,515.3554 751.2505,514.5107 750,513.9808 L 750,512.8558 C 751.6552,513.4501 752.8607,514.5351 753.6562,515.7933 754.8829,517.7333 755.1742,520.0544 754.9062,521.8871 A 0.5140439,0.5121131 0 0 1 754.3125,522.3558 Z M 739.5937,522.2308 A 0.5240784,0.52211 0 0 1 739.0937,521.7933 C 738.796,519.9663 739.0407,517.644 740.2187,515.7308 741.0105,514.4449 742.258,513.3608 744,512.7933 L 744,513.8558 C 742.6531,514.3574 741.7272,515.2334 741.0937,516.2621 740.0803,517.908 739.864,520.0041 740.125,521.6058 A 0.5240784,0.52211 0 0 1 739.5937,522.2308 Z" id="path22658" inkscape:connector-curvature="0" />
-<rect transform="scale(1,-1)" y="-522.3558" x="739" height="16" width="16" id="rect22660" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<rect transform="scale(1,-1)" y="-514.3558" x="745" height="5" width="4" id="rect22662" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22664" width="2" height="1" x="750" y="-511.3558" />
-<rect transform="scale(1,-1)" y="-511.3558" x="742" height="1" width="2" id="rect22666" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<circle style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22668" transform="matrix(1,0,0,-1.010417,119.5,567.8975)" cx="633.5" cy="56.5" r="1.5" />
-<circle transform="matrix(1,0,0,-1.010417,107.5,567.9287)" id="path22670" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="633.5" cy="56.5" r="1.5" />
-</g>
-<g id="snap-nodes-path" inkscape:label="#g26823" transform="translate(0,21)">
-<path inkscape:connector-curvature="0" id="path22693" d="M 784.3125,522.3622 A 0.5140439,0.5121131 0 0 1 783.9062,521.7684 C 784.1396,520.1723 783.8455,518.0454 782.7812,516.3622 782.1487,515.3618 781.2505,514.517 780,513.9872 L 780,512.8622 C 781.6552,513.4565 782.8607,514.5415 783.6562,515.7997 784.8829,517.7396 785.1742,520.0608 784.9062,521.8934 A 0.5140439,0.5121131 0 0 1 784.3125,522.3622 Z M 769.5937,522.2372 A 0.5240784,0.52211 0 0 1 769.0937,521.7997 C 768.796,519.9726 769.0407,517.6503 770.2187,515.7372 771.0105,514.4512 772.258,513.3672 774,512.7997 L 774,513.8622 C 772.6531,514.3637 771.7272,515.2397 771.0937,516.2684 770.0803,517.9144 769.864,520.0105 770.125,521.6122 A 0.5240784,0.52211 0 0 1 769.5937,522.2372 Z" style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.027985;marker:none;enable-background:accumulate" />
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect22695" width="16" height="16" x="769" y="-522.3622" transform="scale(1,-1)" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22697" width="4" height="3.999928" x="775" y="-513.3622" transform="scale(1,-1)" />
-<rect y="-511.3622" x="780" height="1" width="2" id="rect22699" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" transform="scale(1,-1)" />
-<rect style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22701" width="2" height="1" x="772" y="-511.3622" transform="scale(1,-1)" />
-<circle transform="matrix(1,0,0,-1.010417,149.5,567.9039)" id="path22703" style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="633.5" cy="56.5" r="1.5" />
-<circle style="opacity:0.3;fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="path22705" transform="matrix(1,0,0,-1.010417,137.5,567.9351)" cx="633.5" cy="56.5" r="1.5" />
-</g>
-<g id="snap-nodes-smooth" inkscape:label="#g26832" transform="translate(0,21)">
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.027985;marker:none;enable-background:accumulate" d="M 844.3125,522.3622 A 0.5140439,0.5121131 0 0 1 843.9062,521.7684 C 844.1396,520.1723 843.8455,518.0454 842.7812,516.3622 842.1487,515.3618 841.2505,514.517 840,513.9872 L 840,512.8622 C 841.6552,513.4565 842.8607,514.5415 843.6562,515.7997 844.8829,517.7396 845.1742,520.0608 844.9062,521.8934 A 0.5140439,0.5121131 0 0 1 844.3125,522.3622 Z M 829.5937,522.2372 A 0.5240784,0.52211 0 0 1 829.0937,521.7997 C 828.796,519.9726 829.0407,517.6503 830.2187,515.7372 831.0105,514.4512 832.258,513.3672 834,512.7997 L 834,513.8622 C 832.6531,514.3637 831.7272,515.2397 831.0937,516.2684 830.0803,517.9144 829.864,520.0105 830.125,521.6122 A 0.5240784,0.52211 0 0 1 829.5937,522.2372 Z" id="path22717" inkscape:connector-curvature="0" />
-<rect transform="scale(1,-1)" y="-522.3622" x="829" height="16" width="16" id="rect22719" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" />
-<circle transform="matrix(0.8,0,0,0.8,167.8,511.9622)" id="path22731" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="836.5" cy="0.5" r="2.5" />
-</g>
-<g id="snap-nodes-midpoint" inkscape:label="#g26837" transform="translate(0,21)">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" id="rect22787" width="16" height="16" x="-875" y="-522.4247" transform="scale(-1)" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22801" width="2" height="4" x="513.3622" y="-865" transform="rotate(90)" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 865,511.3622 865,517.3622 869,514.3622 Z" id="path22803" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22807" width="2" height="8" x="861" y="510.3622" />
-<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22809" d="M 865,518.3622 859,518.3622 862,522.3622 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" d="M 865,510.3622 859,510.3622 862,506.3622 Z" id="path22811" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
-<rect transform="translate(0,512.3622)" y="-6" x="872" height="16" width="1" id="rect22813" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<circle transform="translate(0,512.3622)" id="path22815" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" cx="872.5" cy="1.5" r="2.5" />
-</g>
-<g id="snap-nodes-intersection" inkscape:label="#g26847" transform="translate(0,21)">
-<rect y="506.3622" x="889" height="16" width="16" id="rect22819" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" d="M 903.9062,506.861 A 0.50005,0.50005 0 0 0 903.6562,507.0173 L 889.6562,521.0173 A 0.50005,0.50005 0 1 0 890.3437,521.7048 L 904.3437,507.7048 A 0.50005,0.50005 0 0 0 903.9062,506.861 Z" id="path22821" inkscape:connector-curvature="0" />
-<path style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;stroke:none;stroke-width:1.0000001;marker:none;enable-background:accumulate" d="M 904.2695,513.3197 A 0.5000501,0.5000501 0 0 0 904.2325,513.3441 L 889.7138,514.4421 A 0.5000501,0.5000501 0 1 0 889.7698,515.4108 L 904.2885,514.3128 A 0.5000501,0.5000501 0 0 0 904.2694,513.3198 Z" id="path22823" inkscape:connector-curvature="0" />
-<circle style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.1428572;marker:none;enable-background:accumulate" id="path22825" transform="matrix(1.500009,0,0,1.499983,-233.2565,464.8628)" cx="753.5" cy="33" r="2" />
-</g>
-<g id="snap-nodes-center" inkscape:label="#g26853" transform="translate(0,21)">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" id="rect22833" width="16" height="16" x="-935" y="-522.3622" transform="scale(-1)" />
-<rect y="506.3622" x="927" height="15" width="1" id="rect22858" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="513.3622" x="920" height="1" width="15" id="rect22860" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<path id="rect22929" transform="translate(0,512.3622)" d="M 922,-4 922,0 926,0 926,-4 922,-4 Z M 929,-4 929,0 933,0 933,-4 929,-4 Z M 922,3 922,7 926,7 926,3 922,3 Z M 929,3 929,7 933,7 933,3 929,3 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g id="snap-nodes-rotation-center" inkscape:label="#g26859" transform="translate(0,21)">
-<rect transform="scale(-1)" y="-522.3622" x="-965" height="16" width="16" id="rect22921" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.1;marker:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22925" width="1" height="11" x="957" y="511.3622" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect22927" width="11" height="1" x="952" y="516.3622" />
-<path id="path18623-1" d="M 950,506.3622 950,511.3622 C 950.9848,511.3572 952.1151,511.3802 953,511.3622 L 955,511.3622 953.1875,509.5497 953.1875,509.5184 C 953.5583,508.7895 954.4428,508.2371 955.5625,508.2371 957.0554,508.2371 958.125,509.2418 958.125,510.2996 958.0359,510.8414 958.5134,511.4039 959.0625,511.4039 959.6116,511.4039 960.0891,510.8414 960,510.2996 960,508.0438 957.9356,506.3621 955.5625,506.3621 954.0226,506.3621 952.6127,507.061 951.8125,508.1746 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccscscscc" />
-<rect y="513.3622" x="959" height="1.999997" width="2" id="rect26714" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="518.3622" x="959" height="2" width="2" id="rect26716" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="518.3622" x="954" height="2" width="2" id="rect26718" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect y="513.3622" x="954" height="2" width="2" id="rect26720" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-</g>
-<g inkscape:label="#tool-measure" id="tool-measure" transform="translate(60.45763,-4.199219e-6)">
-<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.4532662;marker:none" id="rect13362" width="24" height="24" x="284.5471" y="898.3493" />
-<path inkscape:connector-curvature="0" id="path13364" d="M 290.6066,900.4247 290.6066,921.4206 302.5312,921.4206 302.5312,904.2997 C 302.5312,902.4205 301.4133,900.4247 298.8437,900.4247 Z M 292.6066,902.4247 298.7282,902.4247 C 300.0407,902.4247 300.5407,903.2354 300.5407,904.3622 L 300.5407,919.3934 292.6066,919.3934 Z" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.453;stroke-miterlimit:4;stroke-dasharray:none;marker:none;enable-background:accumulate" sodipodi:nodetypes="cccccccccccc" />
-<rect style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" id="rect13370" width="4.250011" height="1" x="292.1598" y="903.3622" rx="0.5" ry="0.5" />
-<rect ry="0.5" rx="0.5" y="911.3622" x="292.1598" height="1" width="4.250011" id="rect13372" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" />
-<rect ry="0.5" rx="0.5" y="917.3622" x="292.2223" height="1" width="2.187512" id="rect13376" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" />
-<rect style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" id="rect13378" width="2.187512" height="1" x="292.2223" y="915.3622" rx="0.5" ry="0.5" />
-<rect ry="0.5" rx="0.5" y="913.3622" x="292.2223" height="1" width="2.187512" id="rect13380" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" />
-<rect style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" id="rect13382" width="2.187512" height="1" x="292.2223" y="909.3622" rx="0.5" ry="0.5" />
-<rect ry="0.5" rx="0.5" y="907.3622" x="292.2223" height="1" width="2.187512" id="rect13384" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" />
-<rect style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" id="rect13386" width="2.187512" height="1" x="292.2223" y="905.3622" rx="0.5" ry="0.5" />
-</g>
-<g transform="matrix(0.6666667,0,0,0.6666667,184.9525,307.4185)" id="tool-measure-16px" inkscape:label="#tool-measure-16px">
-<rect y="898.4431" x="285.0783" height="24" width="24" id="rect13397" style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:0.4532662;marker:none" />
-<path sodipodi:nodetypes="cccccccccccc" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.453266;marker:none;enable-background:accumulate" d="M 289.5739,899.9155 289.5739,919.4563 304.5547,919.4563 304.5547,905.728 C 304.5547,902.9093 302.8777,899.9155 299.0234,899.9155 Z M 292.5739,902.9155 298.85,902.9155 C 300.8188,902.9155 301.5688,904.1317 301.5688,905.8218 L 301.5688,916.4155 292.5739,916.4155 Z" id="path13399" inkscape:connector-curvature="0" />
-<rect ry="0.75" rx="0.75" y="910.4155" x="291.9534" height="1.5" width="5.08479" id="rect13401" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" />
-<rect style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" id="rect13413" width="4.406278" height="1.5" x="291.1541" y="904.4155" rx="0.75" ry="0.75" />
-<rect ry="0.75" rx="0.75" y="907.4155" x="291.1541" height="1.5" width="4.406278" id="rect13465" style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" />
-<rect style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient19282);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.0698581;marker:none;enable-background:accumulate" id="rect13467" width="4.406278" height="1.5" x="291.1541" y="913.4155" rx="0.75" ry="0.75" />
-</g>
-<g id="g30033" inkscape:label="stroke-cap-round">
-<rect inkscape:label="#cap_round" y="997.3626" x="1237" height="24.00001" width="24" id="stroke-cap-round" style="opacity:0.3;fill:none;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24687" width="2" height="1.999997" x="1248" y="1005.363" />
-<rect y="1008.363" x="1248" height="1.999997" width="2" id="rect24689" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24691" width="2" height="1.999997" x="1248" y="1011.363" />
-<rect y="1014.363" x="1248" height="1.999997" width="2" id="rect24693" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" />
-<rect style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" id="rect24695" width="2" height="1.999997" x="1248" y="1017.363" />
-<path id="path24697" d="M 1249,998.3626 C 1244.568,998.3626 1241,1000.593 1241,1003.363 L 1241,1004.363 1241,1019.363 1246,1019.363 1246,1004.363 1252,1004.363 1252,1019.363 1257,1019.363 1257,1003.363 C 1257,1000.593 1253.432,998.3626 1249,998.3626 Z" style="fill:url(#linearGradient19282);fill-opacity:1;stroke:none" inkscape:connector-curvature="0" />
-</g>
-<g inkscape:label="symbols" id="symbols" transform="translate(413.4643,490.9391)">
-<path id="symbol-shield" d="M 273.25,343.9062 C 271.1245,343.9252 268.992,344.2677 266.8438,344.875 267.7697,347.3048 266.9098,351.2564 267.4375,354.4062 267.9571,357.5093 270.8571,358.5774 273.25,359.9062 276.113,358.5831 278.6862,357.007 279.0312,354.4062 279.4501,351.2502 278.5636,348.1525 279.5938,344.875 277.4956,344.1904 275.3755,343.887 273.25,343.9062 Z M 273.25,346.5312 C 274.0828,347.2009 274.8016,348.0174 275.2188,349.375 274.3007,350.0538 273.6941,351.2824 273.5312,352.5312 L 274.1562,352.5312 C 274.2142,352.2613 274.2771,351.9581 274.4062,351.6562 275.6008,348.8654 279.0401,351.4257 277.1875,352.8438 277.1315,351.5761 276.2285,351.1377 275.4375,352.3125 275.3885,352.3855 275.3515,352.4613 275.3125,352.5312 L 275.8438,352.5312 A 0.3927604,0.4063 0 0 1 275.8438,353.3438 L 275.0625,353.3438 C 275.0765,353.9144 275.5217,354.2812 275.9688,354.2812 275.4678,355.6145 274.0995,354.9846 274.0625,353.3438 L 273.5,353.3438 C 273.526,354.2887 273.8243,355.1739 274.4688,355.75 274.168,356.3319 273.959,357.0059 273.25,357.25 272.6943,357.0478 272.2518,356.4719 272.0312,355.75 272.6753,355.1531 272.9578,354.2728 272.9688,353.3438 L 272.375,353.3438 C 272.338,354.9846 270.9697,355.6145 270.4688,354.2812 270.9161,354.2812 271.361,353.9144 271.375,353.3438 L 270.5938,353.3438 A 0.3927604,0.4063 0 1 1 270.5938,352.5312 L 271.125,352.5312 C 271.086,352.4612 271.049,352.3855 271,352.3125 270.2092,351.1377 269.306,351.5761 269.25,352.8438 267.3974,351.4257 270.8368,348.8654 272.0312,351.6562 272.1605,351.9581 272.2233,352.2613 272.2812,352.5312 L 272.9062,352.5312 C 272.7232,351.3144 272.1017,350.1078 271.25,349.375 271.6037,348.2716 272.2275,347.2887 273.25,346.5312 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
-</g>
-<g inkscape:label="symbol-add" id="symbol-add" style="fill:url(#linearGradient19282)" transform="translate(309.2104,723.8157)">
-<path id="symbol-add-shield" d="M 330.0142,114.1199 C 332.7762,113.3389 335.5118,113.2397 338.2095,114.1199 337.5472,116.2268 338.1165,118.2251 337.848,120.2539 337.6262,121.9258 335.9766,122.9316 334.1361,123.7822 332.5977,122.928 330.7339,122.2487 330.3999,120.2539 330.0609,118.2291 330.6095,115.6819 330.0142,114.1199 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
-<path id="symbol-add-arrow0" d="M 322.2095,115.0143 322.2095,122.2643 327.6471,118.6394 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
-<path id="symbol-add-arrow1" d="M 324.7809,115.0143 324.7809,122.2643 330.2185,118.6394 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
-</g>
-<g inkscape:label="symbol-remove" id="symbol-remove" style="fill:url(#linearGradient19282)" transform="translate(326.56,723.4122)">
-<path id="symbol-remove-shield" d="M 330.0142,114.1199 C 332.7762,113.3389 335.5118,113.2397 338.2095,114.1199 337.5472,116.2268 338.1165,118.2251 337.848,120.2539 337.6262,121.9258 335.9766,122.9316 334.1361,123.7822 332.5977,122.928 330.7339,122.2487 330.3999,120.2539 330.0609,118.2291 330.6095,115.6819 330.0142,114.1199 Z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
-<path is="symbol-remove-arrow" d="M 340.1906,115.0143 340.1906,122.2643 345.6282,118.6394 Z" id="path3035" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
-</g>
-<g id="path-mode-bspline" transform="matrix(1.395066,-1.366399,1.366399,1.395066,-407.7139,1808.659)" inkscape:label="#bspline_mode">
-<path inkscape:connector-curvature="0" style="color:#000000;display:inline;visibility:visible;fill:none;stroke:#666666;stroke-width:1.0241938;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none" d="M 961.7806,55.38034 C 961.7806,55.38034 963.1588,53.88211 965.041,53.61976 966.9233,53.35741 968.6251,55.39989 968.6251,55.39989" id="path-mode-spiro-3-8-8" sodipodi:nodetypes="czc" inkscape:label="#spiro_splines_mode" />
-<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccc" id="path6177-8-2" d="M 960.716,54.82044 965.2198,50.24637 969.7936,54.72621" style="display:inline;fill:none;stroke:#646464;stroke-width:0.5120969;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+<rect style="opacity:0.3;fill:none" id="rect24666" width="24" height="24.00001" x="1184" y="996.3622" />
+<rect y="1004.362" x="1195" height="1.999997" width="2" id="rect24668" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24670" width="2" height="1.999997" x="1195" y="1007.362" />
+<rect y="1010.362" x="1195" height="1.999997" width="2" id="rect24672" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24674" width="2" height="1.999997" x="1195" y="1013.362" />
+<rect y="1016.362" x="1195" height="1.999997" width="2" id="rect24676" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="rect24678" d="M 1188,999.3622 1188,1000.362 1188,1003.362 1188,1018.362 1193,1018.362 1193,1003.362 1199,1003.362 1199,1018.362 1204,1018.362 1204,1000.362 1204,999.3622 1188,999.3622 Z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="stroke-cap-round" inkscape:label="#cap_round">
+<rect y="997.3626" x="1237" height="24.00001" width="24" id="rect48637" style="opacity:0.3;fill:none" />
+<rect style="fill:url(#linearGradient19282)" id="rect24687" width="2" height="1.999997" x="1248" y="1005.363" />
+<rect y="1008.363" x="1248" height="1.999997" width="2" id="rect24689" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24691" width="2" height="1.999997" x="1248" y="1011.363" />
+<rect y="1014.363" x="1248" height="1.999997" width="2" id="rect24693" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect24695" width="2" height="1.999997" x="1248" y="1017.363" />
+<path id="path24697" d="m 1249,998.3626 c -4.432,0 -8,2.2304 -8,5.0004 l 0,1 0,15 5,0 0,-15 6,0 0,15 5,0 0,-16 c 0,-2.77 -3.568,-5.0004 -8,-5.0004 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="paint-swatch">
+<rect y="929.3632" x="1214" height="20" width="20" id="rect22266" style="fill:none" />
+<path sodipodi:nodetypes="cccccccccc" inkscape:connector-curvature="0" id="rect22268" transform="translate(0,512.3622)" d="m 1215,418 0,18 18,0 0,-18 z m 1,1 16,0 0,16 -16,0 z" style="fill:url(#linearGradient19282)" />
+<rect transform="translate(0,512.3622)" y="420" x="1217" height="13.99997" width="13.99988" id="rect22273" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="snap" transform="translate(0,21)">
+<rect y="505.3621" x="559" height="16" width="16" id="rect22340" style="color:#000000;fill:none;stroke-width:0.1" />
+<rect y="505.3627" x="559" height="16" width="16" id="rect22342" style="color:#000000;fill:none;stroke-width:0.1" />
+<rect ry="0" rx="7" y="505.3621" x="561" height="3" width="3" id="rect22373" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22375" width="3" height="3" x="561" y="518.3621" rx="7" ry="0" />
+<path sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" id="path22386" d="m 561,510.3622 -2,2 2,2 -2,2 2,0 2,-2 -2,-2 2,-2 z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path14123" d="m 565,505.3437 0,3 1.5312,0 c 3.1184,0 5.5313,2.3107 5.5313,5.0313 0,2.7206 -2.4129,5 -5.5313,5 -0.1174,0 -0.23,-0.025 -0.3437,-0.031 l -0.031,0 -0.031,0 -1.1563,0 0,3 1.0625,0 0.094,0 c 0.1425,0.01 0.2659,0.031 0.4063,0.031 4.6236,0 8.5312,-3.5331 8.5312,-8 0,-4.467 -3.9076,-8.0313 -8.5312,-8.0313 l -1.5313,0 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:3" />
+</g>
+<g id="snap-bounding-box" transform="translate(0,21)">
+<rect y="505.3622" x="588.9688" height="16" width="16" id="rect22420" style="color:#000000;fill:none;stroke-width:0.1" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" d="m 589.0625,521.4247 1.9375,-0.083 0,-3.9796 -2,0 c 0,0.8843 0.062,3.1781 0.062,4.0625 z" id="path22436" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<rect y="511.3622" x="589" height="4" width="2" id="rect22455" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" y="-599" x="505.3622" height="4" width="2" id="rect22459" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22462" width="2" height="4" x="505.3622" y="-605" transform="rotate(90)" />
+<rect y="505.3622" x="589" height="4" width="4" id="rect22464" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccc" transform="translate(0,512.3622)" inkscape:connector-curvature="0" id="path22466" d="m 593,-3 0,7 7,-7 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="snap-bounding-box-edges" transform="translate(0,21)">
+<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect22470" width="16" height="16" x="618.9688" y="505.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect22474" width="2" height="9.999997" x="619" y="511.3622" />
+<rect y="505.3622" x="619" height="4" width="2" id="rect22476" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22478" width="2" height="10" x="505.3622" y="-635" transform="rotate(90)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22482" width="4" height="2" x="619" y="505.3622" />
+<path style="fill:url(#linearGradient19282)" d="m 631,508.3622 -3,4 6,0 z" id="path22484" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22486" d="m 622,517.3622 4,-3 0,6 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="snap-bounding-box-corners" transform="translate(0,21)">
+<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect22498" width="16" height="16" x="649" y="506.4247" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path22500" d="m 663.9062,506.3622 -1.9375,0.083 0,3.9796 2,0 c 0,-0.8844 -0.062,-3.1782 -0.062,-4.0625 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" />
+<rect transform="scale(-1)" style="fill:url(#linearGradient19282)" id="rect22502" width="2" height="4" x="-663.9688" y="-516.4247" />
+<rect style="fill:url(#linearGradient19282)" id="rect22506" width="2" height="4" x="-521.4247" y="654.9688" transform="rotate(-90)" />
+<rect transform="rotate(-90)" y="648.9688" x="-521.4247" height="4" width="2" id="rect22508" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 659.9687,517.4247 0,-7 -7,7 z" id="path22512" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<rect transform="matrix(0.687668,0.7260253,-0.7260156,0.6876782,0,0)" y="-125.2675" x="831.2465" height="3.536811" width="3.536813" id="rect22515" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="snap-bounding-box-center" transform="translate(0,21)">
+<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect22584" width="15.93774" height="15.93773" x="708.9998" y="506.4869" />
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path22586" d="m 724.8441,506.4247 -1.93,0.083 0,3.9641 1.9923,0 c 0,-0.8809 -0.062,-3.1658 -0.062,-4.0467 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" />
+<rect y="-522.4247" x="-724.9064" height="3.984433" width="1.992218" id="rect22588" style="fill:url(#linearGradient19282)" transform="scale(-1)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22590" width="1.992216" height="3.984436" x="-522.3624" y="714.9764" transform="rotate(-90)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22592" width="3.984436" height="1.992216" x="-724.9064" y="-522.4247" transform="scale(-1)" />
+<rect transform="rotate(-90)" y="714.9764" x="-508.4169" height="3.984436" width="1.992216" id="rect22594" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(-1)" y="-508.4169" x="-724.9375" height="1.992216" width="3.984436" id="rect22596" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22604" width="1.992218" height="9.961082" x="715.9725" y="-519.3741" transform="scale(1,-1)" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" d="m 709.0931,506.4247 1.93,0.083 0,3.9641 -1.9922,0 c 0,-0.8809 0.062,-3.1658 0.062,-4.0467 z" id="path22606" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<rect style="fill:url(#linearGradient19282)" id="rect22608" width="3.984436" height="1.992216" x="708.9998" y="-508.4169" transform="scale(1,-1)" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" d="m 708.9375,520.4325 0.083,1.9299 3.9641,0 0,-1.9922 c -0.8809,0 -3.1658,0.062 -4.0467,0.062 z" id="path22610" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<rect style="fill:url(#linearGradient19282)" id="rect22612" width="3.984433" height="1.992218" x="518.3469" y="-710.992" transform="rotate(90)" />
+<rect y="513.3975" x="711.9881" height="1.992216" width="9.961089" id="rect22614" style="fill:url(#linearGradient19282)" />
+<rect y="512.4014" x="708.9998" height="3.984433" width="1.992218" id="rect22616" style="fill:url(#linearGradient19282)" />
+<rect y="512.4014" x="722.9453" height="3.984433" width="1.992218" id="rect22618" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="snap-bounding-box-midpoints" transform="translate(0,21)">
+<rect y="506.4869" x="679" height="15.93774" width="16" id="rect22519" style="color:#000000;fill:none;stroke-width:0.1" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" d="m 694.9062,506.4247 -1.9375,0.083 0,3.9641 2,0 c 0,-0.8809 -0.062,-3.1658 -0.062,-4.0467 z" id="path22521" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+<rect transform="scale(-1)" style="fill:url(#linearGradient19282)" id="rect22525" width="2" height="3.984435" x="-694.9688" y="-522.4247" />
+<rect transform="rotate(-90)" y="686" x="-522.3624" height="3" width="1.992218" id="rect22527" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(-1)" y="-522.4247" x="-694.9688" height="1.992218" width="4" id="rect22531" style="fill:url(#linearGradient19282)" />
+<rect style="fill:url(#linearGradient19282)" id="rect22541" width="1.992218" height="3" x="-508.4169" y="686" transform="rotate(-90)" />
+<rect y="506.4247" x="691" height="1.992218" width="4" id="rect22626" style="fill:url(#linearGradient19282)" />
+<rect transform="rotate(90)" y="-688" x="513.3975" height="7" width="1.992218" id="rect22628" style="fill:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22632" d="m 688,511.4052 0,5.9767 4,-2.9884 z" style="fill:url(#linearGradient19282)" />
+<rect y="512.4014" x="693" height="3.984432" width="2" id="rect22646" style="fill:url(#linearGradient19282)" />
+<rect y="510.4091" x="681" height="7.96887" width="2" id="rect22650" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 685,518.378 -6,0 3,3.9844 z" id="path22652" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22654" d="m 685,510.4091 -6,0 3,-3.9844 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="snap-nodes" transform="translate(0,21)">
+<rect y="506.3558" x="739" height="16" width="16" id="rect22660" style="color:#000000;fill:none" />
+<path style="color:#000000;-inkscape-font-specification:Sans;opacity:0.3;fill:url(#linearGradient19282);stroke-width:1.027985" d="m 754.3125,522.3558 a 0.5140439,0.5121131 0 0 1 -0.4063,-0.5937 c 0.2334,-1.5961 -0.061,-3.7231 -1.125,-5.4063 -0.6325,-1.0004 -1.5307,-1.8451 -2.7812,-2.375 l 0,-1.125 c 1.6552,0.5943 2.8607,1.6793 3.6562,2.9375 1.2267,1.94 1.518,4.2611 1.25,6.0938 a 0.5140439,0.5121131 0 0 1 -0.5937,0.4687 z m -14.7188,-0.125 a 0.5240784,0.52211 0 0 1 -0.5,-0.4375 c -0.2977,-1.827 -0.053,-4.1493 1.125,-6.0625 0.7918,-1.2859 2.0393,-2.37 3.7813,-2.9375 l 0,1.0625 c -1.3469,0.5016 -2.2728,1.3776 -2.9063,2.4063 -1.0134,1.6459 -1.2297,3.742 -0.9687,5.3437 a 0.5240784,0.52211 0 0 1 -0.5313,0.625 z" id="path22658" inkscape:connector-curvature="0" />
+<rect transform="scale(1,-1)" y="-514.3558" x="745" height="5" width="4" id="rect22662" style="fill:url(#linearGradient19282)" />
+<rect transform="scale(1,-1)" style="fill:url(#linearGradient19282)" id="rect22664" width="2" height="1" x="750" y="-511.3558" />
+<rect transform="scale(1,-1)" y="-511.3558" x="742" height="1" width="2" id="rect22666" style="fill:url(#linearGradient19282)" />
+<circle style="fill:url(#linearGradient19282)" id="path22668" transform="matrix(1,0,0,-1.010417,119.5,567.8975)" cx="633.5" cy="56.5" r="1.5" />
+<circle transform="matrix(1,0,0,-1.010417,107.5,567.9287)" id="path22670" style="fill:url(#linearGradient19282)" cx="633.5" cy="56.5" r="1.5" />
+</g>
+<g id="snap-nodes-path" transform="translate(0,21)">
+<rect style="color:#000000;fill:none" id="rect22695" width="16" height="16" x="769" y="506.3622" />
+<path inkscape:connector-curvature="0" id="path22693" d="m 784.3125,522.3622 a 0.5140439,0.5121131 0 0 1 -0.4063,-0.5938 c 0.2334,-1.5961 -0.061,-3.723 -1.125,-5.4062 -0.6325,-1.0004 -1.5307,-1.8452 -2.7812,-2.375 l 0,-1.125 c 1.6552,0.5943 2.8607,1.6793 3.6562,2.9375 1.2267,1.9399 1.518,4.2611 1.25,6.0937 a 0.5140439,0.5121131 0 0 1 -0.5937,0.4688 z m -14.7188,-0.125 a 0.5240784,0.52211 0 0 1 -0.5,-0.4375 c -0.2977,-1.8271 -0.053,-4.1494 1.125,-6.0625 0.7918,-1.286 2.0393,-2.37 3.7813,-2.9375 l 0,1.0625 c -1.3469,0.5015 -2.2728,1.3775 -2.9063,2.4062 -1.0134,1.646 -1.2297,3.7421 -0.9687,5.3438 a 0.5240784,0.52211 0 0 1 -0.5313,0.625 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.027985" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect22697" width="4" height="3.999928" x="775" y="-513.3622" transform="scale(1,-1)" />
+<rect y="-511.3622" x="780" height="1" width="2" id="rect22699" style="opacity:0.3;fill:url(#linearGradient19282)" transform="scale(1,-1)" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" id="rect22701" width="2" height="1" x="772" y="-511.3622" transform="scale(1,-1)" />
+<circle transform="matrix(1,0,0,-1.010417,149.5,567.9039)" id="path22703" style="opacity:0.3;fill:url(#linearGradient19282)" cx="633.5" cy="56.5" r="1.5" />
+<circle style="opacity:0.3;fill:url(#linearGradient19282)" id="path22705" transform="matrix(1,0,0,-1.010417,137.5,567.9351)" cx="633.5" cy="56.5" r="1.5" />
+</g>
+<g id="snap-nodes-smooth" transform="translate(0,21)">
+<rect y="506.3622" x="829" height="16" width="16" id="rect22719" style="color:#000000;fill:none" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.027985" d="m 844.3125,522.3622 a 0.5140439,0.5121131 0 0 1 -0.4063,-0.5938 c 0.2334,-1.5961 -0.061,-3.723 -1.125,-5.4062 -0.6325,-1.0004 -1.5307,-1.8452 -2.7812,-2.375 l 0,-1.125 c 1.6552,0.5943 2.8607,1.6793 3.6562,2.9375 1.2267,1.9399 1.518,4.2611 1.25,6.0937 a 0.5140439,0.5121131 0 0 1 -0.5937,0.4688 z m -14.7188,-0.125 a 0.5240784,0.52211 0 0 1 -0.5,-0.4375 c -0.2977,-1.8271 -0.053,-4.1494 1.125,-6.0625 0.7918,-1.286 2.0393,-2.37 3.7813,-2.9375 l 0,1.0625 c -1.3469,0.5015 -2.2728,1.3775 -2.9063,2.4062 -1.0134,1.646 -1.2297,3.7421 -0.9687,5.3438 a 0.5240784,0.52211 0 0 1 -0.5313,0.625 z" id="path22717" inkscape:connector-curvature="0" />
+<circle transform="matrix(0.8,0,0,0.8,167.8,511.9622)" id="path22731" style="fill:url(#linearGradient19282)" cx="836.5" cy="0.5" r="2.5" />
+</g>
+<g id="snap-nodes-midpoint" transform="translate(0,21)">
+<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect22787" width="16" height="16" x="859" y="506.4247" />
+<rect style="fill:url(#linearGradient19282)" id="rect22801" width="2" height="4" x="513.3622" y="-865" transform="rotate(90)" />
+<path style="fill:url(#linearGradient19282)" d="m 865,511.3622 0,6 4,-3 z" id="path22803" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<rect style="fill:url(#linearGradient19282)" id="rect22807" width="2" height="8" x="861" y="510.3622" />
+<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path22809" d="m 865,518.3622 -6,0 3,4 z" style="fill:url(#linearGradient19282)" />
+<path style="fill:url(#linearGradient19282)" d="m 865,510.3622 -6,0 3,-4 z" id="path22811" inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" />
+<rect transform="translate(0,512.3622)" y="-6" x="872" height="16" width="1" id="rect22813" style="fill:url(#linearGradient19282)" />
+<circle transform="translate(0,512.3622)" id="path22815" style="fill:url(#linearGradient19282)" cx="872.5" cy="1.5" r="2.5" />
+</g>
+<g id="snap-nodes-intersection" transform="translate(0,21)">
+<rect y="506.3622" x="889" height="16" width="16" id="rect22819" style="color:#000000;fill:none;stroke-width:0.1" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282)" d="m 903.9062,506.861 a 0.50005,0.50005 0 0 0 -0.25,0.1563 l -14,14 a 0.50005,0.50005 0 1 0 0.6875,0.6875 l 14,-14 a 0.50005,0.50005 0 0 0 -0.4375,-0.8438 z" id="path22821" inkscape:connector-curvature="0" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:1.0000001" d="m 904.2695,513.3197 a 0.5000501,0.5000501 0 0 0 -0.037,0.024 l -14.5187,1.098 a 0.5000501,0.5000501 0 1 0 0.056,0.9687 l 14.5187,-1.098 a 0.5000501,0.5000501 0 0 0 -0.019,-0.993 z" id="path22823" inkscape:connector-curvature="0" />
+<circle style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.1428572" id="path22825" transform="matrix(1.500009,0,0,1.499983,-233.2565,464.8628)" cx="753.5" cy="33" r="2" />
+</g>
+<g id="snap-nodes-center" transform="translate(0,21)">
+<rect style="color:#000000;fill:none;stroke-width:0.1" id="rect22833" width="16" height="16" x="919" y="506.3622" />
+<rect y="506.3622" x="927" height="15" width="1" id="rect22858" style="fill:url(#linearGradient19282)" />
+<rect y="513.3622" x="920" height="1" width="15" id="rect22860" style="fill:url(#linearGradient19282)" />
+<path id="rect22929" transform="translate(0,512.3622)" d="m 922,-4 0,4 4,0 0,-4 -4,0 z m 7,0 0,4 4,0 0,-4 -4,0 z m -7,7 0,4 4,0 0,-4 -4,0 z m 7,0 0,4 4,0 0,-4 -4,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="snap-nodes-rotation-center" transform="translate(0,21)">
+<rect y="506.3622" x="949" height="16" width="16" id="rect22921" style="color:#000000;fill:none;stroke-width:0.1" />
+<rect style="fill:url(#linearGradient19282)" id="rect22925" width="1" height="11" x="957" y="511.3622" />
+<rect style="fill:url(#linearGradient19282)" id="rect22927" width="11" height="1" x="952" y="516.3622" />
+<path id="path18623-1" d="m 950,506.3622 0,5 c 0.9848,-0 2.1151,0.018 3,0 l 2,0 -1.8125,-1.8125 0,-0.031 c 0.3708,-0.7289 1.2553,-1.2813 2.375,-1.2813 1.4929,0 2.5625,1.0047 2.5625,2.0625 -0.089,0.5418 0.3884,1.1043 0.9375,1.1043 0.5491,0 1.0266,-0.5625 0.9375,-1.1043 0,-2.2558 -2.0644,-3.9375 -4.4375,-3.9375 -1.5399,0 -2.9498,0.6989 -3.75,1.8125 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccscscscc" />
+<rect y="513.3622" x="959" height="1.999997" width="2" id="rect26714" style="fill:url(#linearGradient19282)" />
+<rect y="518.3622" x="959" height="2" width="2" id="rect26716" style="fill:url(#linearGradient19282)" />
+<rect y="518.3622" x="954" height="2" width="2" id="rect26718" style="fill:url(#linearGradient19282)" />
+<rect y="513.3622" x="954" height="2" width="2" id="rect26720" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="snap-text-baseline" transform="translate(979,527.3622)">
+<rect style="fill:none" id="rect48147" width="16" height="16" x="0" y="0" />
+<rect style="fill:url(#linearGradient19282)" transform="rotate(45)" y="4.717515" x="8.960155" height="4" width="4" id="rect48149" />
+<path inkscape:connector-curvature="0" id="path48151" d="m 2,12.5 14,0" style="fill:none;stroke:url(#linearGradient19282);stroke-width:1px" />
+<path style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" id="path48153" d="m 12.45613,8.995981 -4.435364,0 L 7.320835,11 4.469525,11 8.543871,0 11.92566,0 16,11 13.1487,11 12.45613,8.995981 Z m -3.728064,-2.040854 3.013394,0 -1.50302,-4.376428 -1.510374,4.376428 z" />
+</g>
+<g id="snap-page" inkscape:label="#toggle_snap_page_border" transform="translate(30)">
+<rect transform="translate(0,512.3622)" y="15" x="979" height="16" width="16" id="rect16572" style="fill:none" />
+<path sodipodi:nodetypes="cccccccccccccccc" inkscape:connector-curvature="0" id="rect16574" transform="translate(0,512.3622)" d="m 981,16 0,14 12,0 0,-14 -3,0 -3,0 -3,0 z m 1,1 2.5,0 2.5,0 2,0 3,0 0,12 -10,0 z" style="fill:url(#linearGradient19282)" />
+</g>
+<g id="snap-grid-guide-intersections" inkscape:label="#toggle_snap_grid_guide_intersections" transform="translate(30)">
+<rect y="527.3622" x="1009" height="16" width="16" id="rect16604" style="color:#000000;fill:none;stroke-width:0.1" />
+<circle style="color:#000000;fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1.1428572" id="path16610" transform="matrix(1.062504,0,0,1.062496,212.9033,499.7998)" cx="753.5" cy="33" r="2" />
+<rect ry="0.5" transform="translate(0,512.3622)" y="22" x="1009" height="1" width="16" id="rect16616" style="fill:url(#linearGradient19282)" />
+<rect rx="0.5" style="fill:url(#linearGradient19282)" id="rect16618" width="16" height="1" x="527.3622" y="-1014" transform="rotate(90)" ry="0.5" />
+</g>
+<g inkscape:label="#tool-measure" id="tool-measure" transform="translate(61.45291,31.0129)">
+<rect style="color:#000000;fill:none;stroke-width:0.4532662" id="rect13362" width="24" height="24" x="284.5471" y="898.3493" />
+<path inkscape:connector-curvature="0" id="path13364" d="m 290.6066,900.4247 0,20.9959 11.9246,0 0,-17.1209 c 0,-1.8792 -1.1179,-3.875 -3.6875,-3.875 z m 2,2 6.1216,0 c 1.3125,0 1.8125,0.8107 1.8125,1.9375 l 0,15.0312 -7.9341,0 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.453" sodipodi:nodetypes="cccccccccccc" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" id="rect13370" width="4.250011" height="1" x="292.1598" y="903.3622" rx="0.5" ry="0.5" />
+<rect ry="0.5" rx="0.5" y="911.3622" x="292.1598" height="1" width="4.250011" id="rect13372" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" />
+<rect ry="0.5" rx="0.5" y="917.3622" x="292.2223" height="1" width="2.187512" id="rect13376" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" id="rect13378" width="2.187512" height="1" x="292.2223" y="915.3622" rx="0.5" ry="0.5" />
+<rect ry="0.5" rx="0.5" y="913.3622" x="292.2223" height="1" width="2.187512" id="rect13380" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" id="rect13382" width="2.187512" height="1" x="292.2223" y="909.3622" rx="0.5" ry="0.5" />
+<rect ry="0.5" rx="0.5" y="907.3622" x="292.2223" height="1" width="2.187512" id="rect13384" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" id="rect13386" width="2.187512" height="1" x="292.2223" y="905.3622" rx="0.5" ry="0.5" />
+</g>
+<g transform="matrix(0.6666667,0,0,0.6666667,188.9478,330.4001)" id="tool-measure-16px" inkscape:label="#tool-measure-16px">
+<rect y="898.4431" x="285.0783" height="24" width="24" id="rect13397" style="color:#000000;fill:none;stroke-width:0.4532662" />
+<path sodipodi:nodetypes="cccccccccccc" style="color:#000000;fill:url(#linearGradient19282);stroke-width:0.453266" d="m 289.5739,899.9155 0,19.5408 14.9808,0 0,-13.7283 c 0,-2.8187 -1.677,-5.8125 -5.5313,-5.8125 z m 3,3 6.2761,0 c 1.9688,0 2.7188,1.2162 2.7188,2.9063 l 0,10.5937 -8.9949,0 z" id="path13399" inkscape:connector-curvature="0" />
+<rect ry="0.75" rx="0.75" y="910.4155" x="291.9534" height="1.5" width="5.08479" id="rect13401" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" id="rect13413" width="4.406278" height="1.5" x="291.1541" y="904.4155" rx="0.75" ry="0.75" />
+<rect ry="0.75" rx="0.75" y="907.4155" x="291.1541" height="1.5" width="4.406278" id="rect13465" style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" />
+<rect style="color:#000000;fill:url(#linearGradient19282);stroke-width:1.0698581" id="rect13467" width="4.406278" height="1.5" x="291.1541" y="913.4155" rx="0.75" ry="0.75" />
</g>
<g id="on" transform="translate(454.5112,482.827)">
-<ellipse style="color:#000000;text-decoration:none;text-decoration-line:none;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#666666;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" id="ellipse10646" cx="18.48884" cy="207.5353" rx="6.611154" ry="6.515604" transform="translate(-1.031494e-7,-4.35791e-5)" />
-<path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" id="path10653" d="M 15.35239,207.5955 17.38434,209.4915 21.62529,205.579" style="color:#000000;text-decoration:none;text-decoration-line:none;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#666666;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<rect rx="0.4696699" y="199.5352" x="10.48884" height="16" width="16" id="rect23222-9" style="fill:none;stroke:none" ry="0" />
+<rect y="199.5352" x="10.48884" height="16" width="16" id="rect23222-9" style="fill:none" />
+<ellipse style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linejoin:round" id="ellipse10646" cx="18.48884" cy="207.5353" rx="6.611154" ry="6.515604" transform="translate(-1.031494e-7,-4.35791e-5)" />
+<path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" id="path10653" d="M 15.35239,207.5955 17.38434,209.4915 21.62529,205.579" style="color:#000000;fill:none;stroke:url(#linearGradient19282)" />
</g>
<g id="off" transform="translate(429.5112,500.3125)">
-<ellipse ry="6.515604" rx="6.611154" cy="190.0497" cx="18.48884" id="path10622" style="color:#000000;text-decoration:none;text-decoration-line:none;display:inline;overflow:visible;visibility:visible;fill:none;stroke:#666666;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<path inkscape:transform-center-y="3.571599" inkscape:transform-center-x="-5.253213" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path10677" d="M 15.90515,187.466 21.07254,192.6334" style="color:#000000;text-decoration:none;text-decoration-line:none;display:inline;overflow:visible;visibility:visible;fill:#666666;fill-opacity:1;stroke:#666666;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
-<path style="color:#000000;text-decoration:none;text-decoration-line:none;display:inline;overflow:visible;visibility:visible;fill:#666666;fill-opacity:1;fill-rule:evenodd;stroke:#666666;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" d="M 21.07254,187.466 15.90515,192.6334" id="path10688" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" inkscape:transform-center-x="3.571613" inkscape:transform-center-y="5.253199" />
-<rect rx="0.4696699" y="182.0497" x="10.48884" height="16" width="16" id="rect23222-8" style="fill:none;stroke:none" ry="0" />
+<rect y="182.0497" x="10.48884" height="16" width="16" id="rect23222-8" style="fill:none" />
+<ellipse ry="6.515604" rx="6.611154" cy="190.0497" cx="18.48884" id="path10622" style="color:#000000;fill:none;stroke:url(#linearGradient19282);stroke-linejoin:round" />
+<path inkscape:transform-center-y="3.571599" inkscape:transform-center-x="-5.253213" sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path10677" d="M 15.90515,187.466 21.07254,192.6334" style="color:#000000;fill:none;stroke:url(#linearGradient19282)" />
+<path style="color:#000000;fill:none;fill-rule:evenodd;stroke:url(#linearGradient19282)" d="M 21.07254,187.466 15.90515,192.6334" id="path10688" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" inkscape:transform-center-x="3.571613" inkscape:transform-center-y="5.253199" />
+</g>
+<g id="symbol-add" transform="translate(498,805.3622)">
+<title id="title48587">object-symbol</title>
+<g id="object-symbol">
+<rect style="fill:none" id="rect48591" width="16" height="16" x="0" y="0" />
+<circle style="opacity:0.3;fill:url(#linearGradient19282)" id="circle48593" cx="10" cy="10" r="4.5" />
+<circle r="4.5" cy="10" cx="10" id="circle48595" style="fill:none;stroke:url(#linearGradient19282)" />
+<path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" id="path48597" d="m 2,10 8,0 0,-8" style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient19282);stroke-width:2" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1px" inkscape:connector-curvature="0" id="path48599" d="M 7,3 13,3 10,0 Z" />
+</g>
+</g>
+<g id="symbol-remove" transform="translate(528,805.3622)">
+<title id="title48573">object-unsymbol</title>
+<g id="object-unsymbol">
+<rect style="fill:none" id="rect48577" width="16" height="16" x="0" y="0" />
+<circle r="4.5" cy="10" cx="10" id="circle48579" style="fill:none;stroke:url(#linearGradient19282);stroke-dasharray:1, 1" />
+<path sodipodi:nodetypes="ccc" inkscape:connector-curvature="0" id="path48581" d="m 2,10 8,0 0,-8" style="fill:none;fill-rule:evenodd;stroke:url(#linearGradient19282);stroke-width:2" />
+<path style="fill:url(#linearGradient19282);fill-rule:evenodd;stroke-width:1px" inkscape:connector-curvature="0" id="path48583" d="M 3,13 3,7 0,10 Z" />
+</g>
+</g>
+<g id="pack-less" transform="translate(558,805.3622)">
+<title id="title48551">pack-less</title>
+<rect style="fill:none" id="rect48553" width="16" height="16" x="0" y="0" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="1.5" y="1.5" width="5" height="5" id="rect48555" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="9.5" y="1.5" width="5" height="5" id="rect48557" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="1.5" y="9.5" width="5" height="5" id="rect48559" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="9.5" y="9.5" width="5" height="5" id="rect48561" />
+<rect id="rect48563" height="5" width="5" y="1.5" x="1.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48565" height="5" width="5" y="1.5" x="9.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48567" height="5" width="5" y="9.5" x="1.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48569" height="5" width="5" y="9.5" x="9.5" style="fill:none;stroke:url(#linearGradient19282)" />
+</g>
+<g id="pack-more" transform="translate(588,805.3622)">
+<title id="title48509">pack-more</title>
+<rect style="fill:none" id="rect48511" width="16" height="16" x="0" y="0" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="1.5" y="1.5" width="3" height="3" id="rect48513" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="6.5" y="1.5" width="3" height="3" id="rect48515" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="11.5" y="1.5" width="3" height="3" id="rect48517" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="1.5" y="6.5" width="3" height="3" id="rect48519" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="6.5" y="6.5" width="3" height="3" id="rect48521" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="11.5" y="6.5" width="3" height="3" id="rect48523" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="1.5" y="11.5" width="3" height="3" id="rect48525" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="6.5" y="11.5" width="3" height="3" id="rect48527" />
+<rect style="opacity:0.3;fill:url(#linearGradient19282)" x="11.5" y="11.5" width="3" height="3" id="rect48529" />
+<rect id="rect48531" height="3" width="3" y="1.5" x="1.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48533" height="3" width="3" y="1.5" x="6.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48535" height="3" width="3" y="1.5" x="11.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48537" height="3" width="3" y="6.5" x="1.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48539" height="3" width="3" y="6.5" x="6.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48541" height="3" width="3" y="6.5" x="11.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48543" height="3" width="3" y="11.5" x="1.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48545" height="3" width="3" y="11.5" x="6.5" style="fill:none;stroke:url(#linearGradient19282)" />
+<rect id="rect48547" height="3" width="3" y="11.5" x="11.5" style="fill:none;stroke:url(#linearGradient19282)" />
+</g>
+<g id="symbol-fit" transform="translate(618,805.3622)">
+<title id="title48495">symbol-fit</title>
+<rect style="fill:none" id="rect48497" width="16" height="16" x="0" y="0" />
+<rect y="0.5" x="0.5" height="15" width="15" id="rect48499" style="fill:none;stroke:url(#linearGradient19282)" />
+<path style="opacity:0.25;fill:url(#linearGradient19282)" id="path48501" sodipodi:type="arc" sodipodi:cx="0.5" sodipodi:cy="0.5" sodipodi:rx="9" sodipodi:ry="9" sodipodi:start="0" sodipodi:end="1.570796" d="m 9.5,0.5 a 9,9 0 0 1 -8.9999971,9 L 0.5,0.5 Z" />
+<path d="m 9.5,0.5 a 9,9 0 0 1 -8.9999971,9" sodipodi:open="true" sodipodi:end="1.570796" sodipodi:start="0" sodipodi:ry="9" sodipodi:rx="9" sodipodi:cy="0.5" sodipodi:cx="0.5" sodipodi:type="arc" id="path48503" style="fill:none;stroke:url(#linearGradient19282)" />
+<circle r="4.5" cy="8" cx="8" id="circle48505" style="fill:none;stroke:url(#linearGradient19282);stroke-dasharray:1, 1" />
+</g>
+<g id="symbol-smaller" transform="translate(648,805.3622)">
+<title id="title48483">symbol-smaller</title>
+<rect style="fill:none" id="rect48485" width="16" height="16" x="0" y="0" />
+<circle r="6.5" cy="8" cx="8" id="circle48487" style="fill:none;stroke:url(#linearGradient19282);stroke-dasharray:1, 1" />
+<circle style="fill:none;stroke:url(#linearGradient19282)" id="circle48489" cx="8" cy="8" r="4.5" />
+<circle r="4.5" cy="8" cx="8" id="circle48491" style="opacity:0.25;fill:url(#linearGradient19282)" />
+</g>
+<g id="symbol-bigger" transform="translate(678,805.3622)">
+<title id="title48471">symbol-bigger</title>
+<rect style="fill:none" id="rect48473" width="16" height="16" x="0" y="0" />
+<circle style="opacity:0.25;fill:url(#linearGradient19282)" id="circle48475" cx="8" cy="8" r="6.5" />
+<circle style="fill:none;stroke:url(#linearGradient19282);stroke-dasharray:1, 1" id="circle48477" cx="8" cy="8" r="4.5" />
+<circle r="6.5" cy="8" cx="8" id="circle48479" style="fill:none;stroke:url(#linearGradient19282)" />
+</g>
+<g id="mesh-gradient" transform="translate(346,898.3622)">
+<title id="title37036">mesh-gradient</title>
+<rect style="fill:none" id="rect37038" width="24" height="24" x="0" y="0" />
+<rect style="fill:url(#linearGradient19282)" id="rect37040" width="5" height="4.99995" x="1" y="1" />
+<rect style="fill:url(#linearGradient19282)" id="rect37042" width="5" height="5" x="18" y="1" />
+<rect style="fill:url(#linearGradient19282)" id="rect37044" width="5" height="5" x="1" y="18" />
+<rect style="fill:url(#linearGradient19282)" id="rect37046" width="5" height="5" x="18" y="18" />
+<g id="g37048" style="fill:url(#linearGradient19282)">
+<path inkscape:connector-curvature="0" d="m 8,2.5078 0,0.49219 1,0 0,-0.41797 C 8.68384,2.53642 8.34934,2.51242 8,2.50782 Z m 0,0.49219 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -0.7168,0 c 0.0743,0.35076 0.12424,0.68185 0.15821,1 l 0.55859,0 0,-1 z m 0,-1 0,-1 -1,0 0,0.88867 c 0.0109,0.0352 0.0285,0.0765 0.0391,0.11133 l 0.9609,0 z m -1,-1 L 4,3.3203 C 3.82995,3.3844 3.67729,3.42699 3.5,3.49999 c 0.073,0.17729 0.11563,0.32995 0.17969,0.5 l 0.32031,0 z m 1,0 1,0 0,-1 -1,0 0,1 z m 0,-1 0,-0.0391 c -0.0349,0.0105 -0.0761,0.0281 -0.11133,0.0391 l 0.11133,0 z m 1,0 1,0 0,-0.44141 c -0.31815,0.034 -0.64924,0.084 -1,0.15821 l 0,0.2832 z" id="path37050" />
+<path inkscape:connector-curvature="0" style="opacity:0.8" d="m 10,2.7871 0,0.21289 0.69727,0 C 10.47102,2.92129 10.23747,2.85194 10,2.7871 Z m 0,0.21289 -1,0 0,1 1,0 0,-1 z m 0,1 0,1 1,0 0,-1 -1,0 z m 1,0 1,0 0,-0.5 C 11.67036,3.36425 11.33758,3.23335 11,3.10741 l 0,0.89258 z m 1,0 0,1 1,0 0,-1 -1,0 z m 1,0 0.30273,0 C 13.20146,3.96479 13.09968,3.92979 13,3.89257 l 0,0.10742 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -0.89258,0 C 3.07022,13.09969 3.03522,13.20145 3,13.30272 l 0,0.69727 1,0 0,-1 z m -1,1 -0.21289,0 c -0.0869,0.3183 -0.1549,0.65196 -0.20508,1 l 0.41797,0 0,-1 z m 1,-2 0,-1 -0.10742,0 c -0.12594,0.33758 -0.25684,0.67036 -0.39258,1 l 0.5,0 z m 0,-1 1,0 0,-1 -0.78711,0 C 4.14809,10.23746 4.0787,10.47101 4,10.69726 l 0,0.30273 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 0,-1 0,-1 -0.50781,0 c -0.005,0.34934 -0.0286,0.68384 -0.0742,1 l 0.58201,0 z m 0,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,0 0,1 1,0 0,-1 -1,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z" id="path37052" />
+<path inkscape:connector-curvature="0" style="opacity:0.6" d="m 20,3.67968 c -0.30233,0.11389 -0.60787,0.23303 -0.88867,0.32031 l 0.88867,0 0,-0.32031 z m -1,0.35937 c -0.35417,0.10706 -0.67718,0.17581 -1,0.24414 l 0,0.7168 1,0 0,-0.96094 z m -1,0.96094 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,0.11133 c 0.0873,0.2808 0.20642,0.58634 0.32031,0.88867 l 0.67969,0 0,-1 z m -1,0 0,-1 -0.2832,0 c 0.0683,0.32282 0.13708,0.64583 0.24414,1 l 0.03906,0 z m 0,-1 1,0 0,-1 -1,0 0,1 z m 0,-1 0,-1 -0.49219,0 c -0.004,0.31616 0.0135,0.65025 0.0508,1 l 0.44139,0 z m 0,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-0.58203 C 14.65196,4.36776 14.3183,4.29979 14,4.21288 l 0,0.78711 z m 1,0 0,1 1,0 0,-1 -1,0 z m 1,0 1,0 0,-0.55859 c -0.34975,0.0373 -0.68384,0.0549 -1,0.0508 l 0,0.50779 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z" id="path37054" />
+<path inkscape:connector-curvature="0" style="opacity:0.4" d="m 20,3.99999 0,1 1,0 0,-0.11133 C 20.9127,4.60786 20.79358,4.30232 20.67969,3.99999 l -0.67969,0 z m 1,1 0,1 0.2832,0 c -0.0683,-0.32282 -0.13708,-0.64583 -0.24414,-1 l -0.0391,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m 0,1 0,1 0.49219,0 c 0.004,-0.31616 -0.0135,-0.65025 -0.0508,-1 l -0.44139,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,0.58203 c 0.34804,0.0502 0.6817,0.11817 1,0.20508 l 0,-0.78711 z m -1,0 0,-1 -1,0 0,1 1,0 z m -1,0 -1,0 0,0.55859 c 0.34975,-0.0373 0.68384,-0.0549 1,-0.0508 l 0,-0.50779 z m -1,0 0,-1 -1,0 0,1 1,0 z m -1,0 -1,0 0,0.96094 c 0.35417,-0.10706 0.67718,-0.17581 1,-0.24414 l 0,-0.7168 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 0,1 0,1 1,0 0,-1 -1,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -6,3 0,0.32031 c 0.30233,-0.11389 0.60787,-0.23303 0.88867,-0.32031 l -0.88867,0 z" id="path37056" />
+<path inkscape:connector-curvature="0" style="opacity:0.2" d="m 21,8.99999 0,0.91406 -0.7168,0 0,1 0.64063,0 c 0.21803,-0.59495 0.39455,-1.22322 0.49414,-1.91406 l -0.41797,0 z m -2,2 0,1 1,0 0,-1 -1,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m 0,1 0,1 0.78711,0 C 19.85191,13.76252 19.9213,13.52897 20,13.30272 l 0,-0.30273 -1,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m 0,1 0,1 0.50781,0 c 0.005,-0.34934 0.0286,-0.68384 0.0742,-1 l -0.58201,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -0.69727,0 c 0.22625,0.0787 0.4598,0.14805 0.69727,0.21289 l 0,-0.21289 z m 0,-1 0,-1 -1,0 0,1 1,0 z m -1,0 -1,0 0,0.5 c 0.32964,0.13574 0.66242,0.26664 1,0.39258 l 0,-0.89258 z m -1,0 0,-1 -1,0 0,1 1,0 z m -1,0 -0.30273,0 c 0.10127,0.0352 0.20305,0.0702 0.30273,0.10742 l 0,-0.10742 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 0,1 0,1 1,0 0,-1 -1,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m 5.2832,-6.08594 0,0.625 c 0.0836,-0.20883 0.16662,-0.41759 0.25196,-0.625 l -0.25196,0 z" id="path37058" />
+<path inkscape:connector-curvature="0" style="opacity:0.1" d="m 19,16.99999 0,1 0.7168,0 c -0.0743,-0.35076 -0.12424,-0.68185 -0.15821,-1 l -0.55859,0 z m 0,1 -1,0 0,1 1,0 0,-1 z m 0,1 0,1 1,0 0,-0.88867 c -0.0109,-0.0352 -0.0285,-0.0765 -0.0391,-0.11133 l -0.9609,0 z m 1,1 0,0.67969 c 0.17005,-0.0641 0.32271,-0.10669 0.5,-0.17969 -0.073,-0.17729 -0.11563,-0.32995 -0.17969,-0.5 l -0.32031,0 z m -1,0 -1,0 0,1 1,0 0,-1 z m 0,1 0,0.0391 c 0.0349,-0.0105 0.0761,-0.0281 0.11133,-0.0391 l -0.11133,0 z m -1,0 -1,0 0,0.44141 c 0.31815,-0.034 0.64924,-0.084 1,-0.15821 l 0,-0.2832 z m -1,0 0,-1 -1,0 0,1 1,0 z m -1,0 -1,0 0,0.41797 c 0.31616,0.0456 0.65066,0.0696 1,0.0742 l 0,-0.49217 z m 1,-1 1,0 0,-1 -1,0 0,1 z" id="path37060" />
+</g>
+<path style="fill:none;stroke-width:1px;stroke:url(#linearGradient19282)" d="M 3.5,3.5 C 12,4.000002e-8 12,7 20.5,3.5 24,12 17,12 20.5,20.5 12,24 12,17 3.5,20.5 0,12 7,12 3.5,3.5 Z" id="path37062" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccc" />
+</g>
+<g id="mesh-gradient-16px" transform="translate(379,898.3622)">
+<title id="title37006">mesh-gradient-16px</title>
+<rect y="0" x="0" height="16" width="16" id="rect37008" style="fill:none" />
+<rect id="rect37010" width="3" height="3" x="0" y="0" style="fill:url(#linearGradient19282)" />
+<rect id="rect37012" width="3" height="3" x="0" y="13" style="fill:url(#linearGradient19282)" />
+<rect id="rect37014" width="3" height="3" x="13" y="13" style="fill:url(#linearGradient19282)" />
+<rect id="rect37016" width="3" height="3" x="13" y="0" style="fill:url(#linearGradient19282)" />
+<g id="g37018">
+<path inkscape:connector-curvature="0" id="path37020" d="M 5,1.14648 5,2 6,2 6,1.23438 C 5.689483,1.17168 5.357679,1.13838 5,1.14648 Z M 5,2 4,2 4,3 5,3 5,2 Z M 4,3 3,3 3,4 4,4 4,3 Z M 3,4 2.740234,4 c 0.07882,0.36068 0.106218,0.68715 0.113282,1 L 3,5 3,4 Z M 3,3 3,2 2,2 C 2.17713,2.35426 2.317462,2.6851 2.435547,3 L 3,3 Z M 3,2 4,2 4,1.25977 C 3.688381,1.32787 3.35496,1.43134 3,1.56445 L 3,2 Z" style="fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path37022" d="M 7,1.54102 7,2 8,2 C 7.673494,1.83675 7.341976,1.68106 7,1.54102 Z M 8,2 8,3 9,3 9,2.45898 C 8.658024,2.31894 8.326506,2.16325 8,2 Z M 8,3 7,3 7,4 8,4 8,3 Z M 7,4 6,4 6,5 7,5 7,4 Z M 6,5 5,5 5,6 6,6 6,5 Z M 5,6 4,6 4,7 5,7 5,6 Z M 4,7 3,7 3,8 4,8 4,7 Z M 3,8 2,8 2,9 3,9 3,8 Z M 2,9 1.541016,9 C 1.411747,9.31565 1.305854,9.64582 1.234375,10 L 2,10 2,9 Z M 3,7 3,6 2.765625,6 C 2.694145,6.35418 2.588253,6.68435 2.458984,7 L 3,7 Z M 3,6 4,6 4,5 3,5 3,6 Z M 4,5 5,5 5,4 4,4 4,5 Z M 5,4 6,4 6,3 5,3 5,4 Z M 6,3 7,3 7,2 6,2 6,3 Z" style="opacity:0.8;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path37024" d="M 13,2.43555 C 12.64504,2.56866 12.31162,2.67214 12,2.74023 L 12,3 13,3 13,2.43555 Z M 12,3 l -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z M 10,5 9,5 9,6 10,6 10,5 Z M 9,6 8,6 8,7 9,7 9,6 Z M 8,7 7,7 7,8 8,8 8,7 Z M 7,8 6,8 6,9 7,9 7,8 Z M 6,9 5,9 5,10 6,10 6,9 Z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z M 2,13 1.564453,13 C 1.682538,13.3149 1.82287,13.64574 2,14 l 0,-1 z m 0,-1 0,-1 -0.853516,0 c 0.0071,0.31285 0.03446,0.63932 0.113282,1 L 2,12 Z m 0,-1 1,0 0,-1 -1,0 0,1 z M 3,10 4,10 4,9 3,9 3,10 Z M 4,9 5,9 5,8 4,8 4,9 Z M 5,8 6,8 6,7 5,7 5,8 Z M 6,7 7,7 7,6 6,6 6,7 Z M 7,6 8,6 8,5 7,5 7,6 Z M 8,5 9,5 9,4 8,4 8,5 Z M 9,4 10,4 10,3 9,3 9,4 Z m 1,-1 1,0 0,-0.14648 c -0.35768,0.008 -0.68948,-0.0252 -1,-0.0879 L 10,3 Z" style="opacity:0.6;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path37026" d="m 14,2 0,1 0.43555,0 C 14.31746,2.6851 14.17713,2.35426 14,2 Z m 0,1 -1,0 0,1 1,0 0,-1 z m 0,1 0,1 0.85352,0 C 14.84642,4.68715 14.81906,4.36068 14.74023,4 L 14,4 Z m 0,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,0.14648 c 0.357679,-0.008 0.689483,0.0252 1,0.0879 L 6,13 Z m -1,0 0,-1 -1,0 0,1 1,0 z m -1,0 -1,0 0,0.56445 C 3.35496,13.43134 3.688381,13.32786 4,13.25977 L 4,13 Z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z M 7,10 8,10 8,9 7,9 7,10 Z M 8,9 9,9 9,8 8,8 8,9 Z M 9,8 10,8 10,7 9,7 9,8 Z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z" style="opacity:0.4;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path37028" d="m 14,6 0,1 0.45898,0 C 14.58825,6.68435 14.69415,6.35418 14.76562,6 L 14,6 Z m 0,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m 0,1 0,1 0.23437,0 c 0.0715,-0.35418 0.17738,-0.68435 0.30665,-1 L 13,9 Z m 0,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 0,1 1,0 0,-1 z m -1,1 -1,0 c 0.326506,0.16325 0.658024,0.31894 1,0.45898 L 9,14 Z m -1,0 0,-1 -1,0 0,0.54102 C 7.341976,13.68106 7.673494,13.83675 8,14 Z m 0,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z m 1,-1 1,0 0,-1 -1,0 0,1 z" style="opacity:0.2;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path37030" d="m 13,11 0,1 0.25977,0 c -0.0788,-0.36068 -0.10622,-0.68715 -0.11329,-1 L 13,11 Z m 0,1 -1,0 0,1 1,0 0,-1 z m 0,1 0,1 1,0 C 13.82287,13.64574 13.68254,13.3149 13.56445,13 L 13,13 Z m 0,1 -1,0 0,0.74023 c 0.31162,-0.0681 0.64504,-0.17157 1,-0.30468 L 13,14 Z m -1,0 0,-1 -1,0 0,1 1,0 z m -1,0 -1,0 0,0.76562 c 0.31052,0.0627 0.64232,0.096 1,0.0879 L 11,14 Z" style="opacity:0.1;fill:url(#linearGradient19282)" />
+</g>
+<path sodipodi:nodetypes="ccccc" inkscape:connector-curvature="0" id="path37032" d="m 2,2 c 6,-3 6,3 12,0 3,6 -3,6 0,11.99999 -6,3 -6,-2.99999 -12,0 C -1,8 5,8 2,2 Z" style="fill:none;stroke-width:0.75px;stroke:url(#linearGradient19282)" />
+</g>
+<g id="paint-gradient-mesh" transform="translate(409,898.3622)" inkscape:label="#fill_mesh">
+<rect style="fill:none" id="rect36986" width="16" height="16" x="0" y="0" />
+<rect y="1" x="1" height="7" width="7" id="rect36988" style="opacity:0.5;fill:url(#linearGradient19282)" />
+<rect y="8" x="8" height="7" width="7" id="rect36990" style="opacity:0.5;fill:url(#linearGradient19282)" />
+<rect style="fill:none;stroke:url(#linearGradient19282)" id="rect36992" width="15" height="15" x="0.5" y="0.5" ry="1" />
+</g>
+<g id="paint-gradient-conical" transform="translate(439,898.3622)" inkscape:label="#fill_conical">
+<rect style="fill:none" id="rect36996" width="16" height="16" x="0" y="0" />
+<path d="M 0.5,7.999997 A 7.5,7.5 0 0 1 8,0.5 L 8,8 Z" sodipodi:end="4.712389" sodipodi:start="3.141593" sodipodi:ry="7.5" sodipodi:rx="7.5" sodipodi:cy="8" sodipodi:cx="8" sodipodi:type="arc" id="path36998" style="opacity:0.5;fill:url(#linearGradient19282)" />
+<path style="opacity:0.5;fill:url(#linearGradient19282)" id="path37000" sodipodi:type="arc" sodipodi:cx="8" sodipodi:cy="8" sodipodi:rx="7.5" sodipodi:ry="7.5" sodipodi:start="0" sodipodi:end="1.570796" d="M 15.5,8 A 7.5,7.5 0 0 1 8.000002,15.5 L 8,8 Z" />
+<circle r="7.5" cy="8" cx="8" id="circle37002" style="fill:none;stroke:url(#linearGradient19282)" />
+</g>
+<g id="boundingbox_top_left" transform="translate(738,743.3622)">
+<title id="title40670">boundingbox_top_left</title>
+<rect style="fill:none" id="rect40672" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" id="path40676" d="M 4,14 4,4 14,4 14,6 6,6 6,14 Z" />
+<circle cy="5" cx="5" id="circle40674" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" r="4.5" />
+</g>
+<g id="boundingbox_top" transform="translate(758,743.3622)">
+<title id="title40660">boundingbox_top</title>
+<rect style="fill:none" id="rect40662" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" d="M 0,4 16,4 16,6 0,6 Z" id="path40666" inkscape:connector-curvature="0" />
+<circle cy="5" cx="8" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" id="circle40664" r="4.5" />
+</g>
+<g id="boundingbox_top_right" transform="translate(778,743.3622)">
+<title id="title40648">boundingbox_top_right</title>
+<g transform="rotate(90,8,8)" id="g40650">
+<rect style="fill:none" id="rect40652" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" id="path40656" d="M 4,14 4,4 14,4 14,6 6,6 6,14 Z" />
+<circle r="4.5" id="circle40654" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" cx="5" cy="5" />
+</g>
+</g>
+<g id="boundingbox_left" transform="translate(738,763.3622)">
+<title id="title40636">boundingbox_left</title>
+<g transform="rotate(-90,8,8)" id="g40638">
+<rect style="fill:none" id="rect40640" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" d="M 0,4 16,4 16,6 0,6 Z" id="path40644" inkscape:connector-curvature="0" />
+<circle r="4.5" cy="5" cx="8" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" id="circle40642" />
+</g>
+</g>
+<g id="boundingbox_right" transform="translate(778,763.3622)">
+<title id="title40624">boundingbox_right</title>
+<g transform="rotate(90,8,8)" id="g40626">
+<rect style="fill:none" id="rect40628" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" d="M 0,4 16,4 16,6 0,6 Z" id="path40632" inkscape:connector-curvature="0" />
+<circle r="4.5" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" id="circle40630" cx="8" cy="5" />
+</g>
+</g>
+<g id="boundingbox_bottom_left" transform="translate(738,783.3622)">
+<title id="title40612">boundingbox_bottom_left</title>
+<g transform="rotate(-90,8,8)" id="g40614">
+<rect style="fill:none" id="rect40616" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" id="path40620" d="M 4,14 4,4 14,4 14,6 6,6 6,14 Z" />
+<circle r="4.5" id="circle40618" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" cx="5" cy="5" />
+</g>
+</g>
+<g id="boundingbox_bottom" transform="translate(758,783.3622)">
+<title id="title40600">boundingbox_bottom</title>
+<g transform="rotate(180,8,8)" id="g40602">
+<rect style="fill:none" id="rect40604" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" id="path40608" d="M 0,4 16,4 16,6 0,6 Z" />
+<circle r="4.5" id="circle40606" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" cx="8" cy="5" />
+</g>
+</g>
+<g id="boundingbox_bottom_right" transform="translate(778,783.3622)">
+<title id="title40588">boundingbox_bottom_right</title>
+<g transform="rotate(180,8,8)" id="g40590">
+<rect style="fill:none" id="rect40592" width="16" height="16" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" d="M 4,14 4,4 14,4 14,6 6,6 6,14 Z" id="path40596" inkscape:connector-curvature="0" />
+<circle r="4.5" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" id="circle40594" cx="5" cy="5" />
+</g>
+</g>
+<g id="boundingbox_center" transform="translate(758,763.3622)">
+<title id="title40580">boundingbox_center</title>
+<rect style="fill:none" id="rect40582" width="16" height="16" x="0" y="0" />
+<circle r="4.5" cy="8" cx="8" id="circle40584" style="fill-opacity:0.3;stroke-opacity:0.8;fill:url(#linearGradient19282);stroke:url(#linearGradient19282)" />
+</g>
+<g id="exchange-positions" transform="translate(1230,823.3622)">
+<title id="title40855">exchange-positions</title>
+<rect style="fill:none" id="rect40857" width="24" height="24" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" id="path40859" d="m 3.3125,16 0.031,7.125 1.4375,-1.625 0.7813,2.5 1.75,-0.8125 -1.3438,-2.2188 2.0313,0.031 -4.6875,-5 z" />
+<path style="fill:url(#linearGradient19282)" d="M 1244 314 L 1244 315 L 1247 315 A 1 1 0 0 1 1248 316 L 1248 317 L 1246 317 L 1248.5 320 L 1251 317 L 1249 317 L 1249 316 A 2 2 0 0 0 1247 314 L 1244 314 z " transform="translate(-1230,-311)" id="path40863" />
+<rect style="fill:url(#linearGradient19282)" ry="1" y="0" x="4" height="9" width="9" id="rect40865" />
+<rect style="fill:url(#linearGradient19282)" ry="1" y="10" x="14" height="9" width="9" id="rect40867" />
+<path id="path40889" d="m 13,16 0,-1 -3,0 A 1,1 0 0 1 9,14 l 0,-1 2,0 -2.5,-3 -2.5,3 2,0 0,1 a 2,2 0 0 0 2,2 l 3,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="exchange-positions-zorder" transform="translate(1262,823.3622)">
+<title id="title40837">exchange-positions-zorder</title>
+<rect style="fill:none" id="rect40839" width="24" height="24" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" d="m 2.5,16 -2,2 1.5,0 0,6 1,0 0,-6 1.5,0 -2,-2 z" id="path40841" inkscape:connector-curvature="0" />
+<path style="fill:url(#linearGradient19282)" d="m 5,16 0,6 -1.5,0 2,2 2,-2 -1.5,0 0,-6 -1,0 z" id="path40843" inkscape:connector-curvature="0" />
+<rect style="fill:url(#linearGradient19282)" ry="1" y="0" x="4" height="9" width="9" id="rect40849" />
+<rect style="fill:url(#linearGradient19282)" ry="1" y="10" x="14" height="9" width="9" id="rect40851" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 14,3 0,1 3,0 a 1,1 0 0 1 1,1 L 18,6 16,6 18.5,9 21,6 19,6 19,5 A 2,2 0 0 0 17,3 l -3,0 z" id="path40863-8" />
+<path id="path40889-5" d="m 13,16 0,-1 -3,0 A 1,1 0 0 1 9,14 l 0,-1 2,0 -2.5,-3 -2.5,3 2,0 0,1 a 2,2 0 0 0 2,2 l 3,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="exchange-positions-clockwise" transform="translate(1294.031,823.3622)">
+<title id="title40821">exchange-positions-clockwise</title>
+<rect style="fill:none" id="rect40823" width="24" height="24" x="0" y="0" />
+<path style="fill:url(#linearGradient19282)" inkscape:transform-center-y="-0.00045" inkscape:transform-center-x="0.0468" inkscape:connector-curvature="0" d="m 5.1875,23.9059 -1.0937,0.062 0.031,-1 0.8748,-0.031 z M 3.3428,22.8117 2.9365,23.718 1.9688,23.2185 2.5313,22.3747 Z m 3.2822,-0.562 0.6563,0.7812 -1.0295,0.5922 -0.375,-0.9375 z m -4.7505,-0.4372 -0.75,0.6562 -0.6559,-0.8748 0.8751,-0.5003 z m 6.8755,-0.9066 0,2.8438 -2.8437,-2.8438 z m -7.7812,-1.5002 0.094,0.9055 -0.9688,0.1563 -0.1251,-1.0928 z m 7.9687,0.6867 -1,-0.094 0.031,-0.9052 0.9689,-0.094 z M 8.7173,17.9354 7.7485,18.2167 7.3743,17.4997 8.1559,16.8749 Z M 6.5,15.4684 l 0.9055,0.6245 -0.625,0.75 -0.7492,-0.4682 z m -6.25,-0.2187 2.8438,2.8437 -2.8438,0 z m 3.25,0.9065 -0.844,0.375 -0.4688,-0.875 1,-0.4374 z M 5.4678,15.094 5.249,16.094 4.3745,16 4.2805,15.0312 Z" id="path40825" />
+<rect style="fill:url(#linearGradient19282)" ry="1" y="0" x="4" height="9" width="9" id="rect40831" />
+<rect style="fill:url(#linearGradient19282)" ry="1" y="10" x="14" height="9" width="9" id="rect40833" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 13.969,3 0,1 3,0 a 1,1 0 0 1 1,1 l 0,1 -2,0 2.5,3 2.5,-3 -2,0 0,-1 a 2,2 0 0 0 -2,-2 l -3,0 z" id="path40863-1" />
+<path id="path40889-9" d="m 12.969,16 0,-1 -3,0 a 1,1 0 0 1 -1,-1 l 0,-1 2,0 -2.5,-3 -2.5,3 2,0 0,1 a 2,2 0 0 0 2,2 l 3,0 z" style="fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g id="stock_icons">
+<g transform="translate(-270,23)" id="object-rotate-90-CW">
+<g transform="translate(223.9998,725.3622)" id="g15895" inkscape:label="stock-rotate-270">
+<rect transform="matrix(0,-1,-1,0,0,0)" style="fill:none" id="rect15886" width="16" height="16" x="-375" y="-77.0002" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282)" d="m 294.5,574 c -3.5899,0 -6.5,2.9102 -6.5,6.5 0,0.1711 0.018,0.3323 0.031,0.5 l -3.0312,0 4,4 4,-4 -2.9375,0 c -0.019,-0.1668 -0.062,-0.3282 -0.062,-0.5 0,-2.4853 2.0147,-4.5 4.5,-4.5 2.4853,0 4.5,2.0147 4.5,4.5 0,0.1718 -0.044,0.3332 -0.062,0.5 l 2.0312,0 c 0.013,-0.1677 0.031,-0.3289 0.031,-0.5 0,-3.5898 -2.9101,-6.5 -6.5,-6.5 z" transform="translate(-223.9998,-213)" id="path15888-3" />
+</g>
+</g>
+<g transform="translate(-282,23)" id="object-rotate-90-CCW">
+<g inkscape:label="stock-rotate-90" id="g15900" transform="matrix(-1,0,0,1,394.0002,725.3622)">
+<rect y="-77.0002" x="-375" height="16" width="16" id="rect15902" style="fill:none" transform="matrix(0,-1,-1,0,0,0)" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282)" d="m 323.5,574 c -3.5899,0 -6.5,2.9102 -6.5,6.5 0,0.1711 0.018,0.3323 0.031,0.5 l 2.0313,0 c -0.019,-0.1668 -0.062,-0.3282 -0.062,-0.5 0,-2.4853 2.0147,-4.5 4.5,-4.5 2.4853,0 4.5,2.0147 4.5,4.5 0,0.1718 -0.044,0.3332 -0.062,0.5 l -2.9375,0 4,4 4,-4 -3.0313,0 c 0.013,-0.1677 0.031,-0.3289 0.031,-0.5 0,-3.5898 -2.9101,-6.5 -6.5,-6.5 z" transform="matrix(-1,0,0,1,394.0002,-213)" id="path15904-4" />
+</g>
+</g>
+<g transform="translate(-302,23)" id="object-flip-ver">
+<g id="g6273" inkscape:label="stock-flip-vertical" transform="translate(275.9998,705.3622)">
+<rect style="fill:none" id="rect6216" width="16" height="16" x="379" y="-117.0002" transform="rotate(90)" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m 110.0002,381 -2,0 c -0.01,3.9896 -0.027,8.0105 0.01,12 l 2,0 c -0.1031,-3.9883 -0.02,-8.0095 -0.01,-12 z" id="path6220" inkscape:connector-curvature="0" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m 109.0233,394 -4.0231,-4 8,0 z" id="path6222" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path6271" d="m 109.0233,380 -4.0231,4 8,0 z" style="color:#000000;fill:url(#linearGradient19282)" />
+</g>
+</g>
+<g transform="translate(-292,23)" id="object-flip-hor">
+<g transform="translate(265.9998,705.3622)" id="g11674" inkscape:label="stock-flip-horizontal">
+<rect transform="scale(-1)" y="-395" x="-97.0002" height="16" width="16" id="rect6281" style="fill:none" />
+<path inkscape:connector-curvature="0" id="path6283" d="m 95.0002,388 0,-2 c -3.98964,-0.01 -8.01048,-0.026 -12.00001,0.01 l 0,2 c 3.9883,-0.1031 8.00953,-0.02 12.00001,-0.01 z" style="color:#000000;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path6285" d="M 82.00019,387.0231 86.0002,383 l 0,8 z" style="color:#000000;fill:url(#linearGradient19282)" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="M 96.0002,387.0231 92.00019,383 l 0,8 z" id="path6287" inkscape:connector-curvature="0" />
+</g>
+</g>
+<g transform="translate(-270,20.00014)" id="edit-undo">
+<rect style="fill:none" id="rect10176" width="16" height="16" x="285" y="1107.362" />
+<path inkscape:connector-curvature="0" id="path15820" d="m 286,1113.362 4,4 0,-8 z" style="color:#000000;fill:url(#linearGradient19282)" />
+<path style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2" d="m 290,1112.362 0,2 5.5,0 c 0.8403,0 1.5,0.66 1.5,1.5 l 0,0.5 0,0.5 c 0,0.841 -0.6597,1.5 -1.5,1.5 l -0.5,0 0,2 0.5,0 c 1.9212,0 3.5,-1.579 3.5,-3.5 l 0,-0.5 0,-0.5 c 0,-1.921 -1.5788,-3.5 -3.5,-3.5 l -5.5,0 z" id="path7283" inkscape:connector-curvature="0" />
+</g>
+<g transform="translate(-282,20.00014)" id="edit-redo">
+<rect y="1107.362" x="317" height="16" width="16" id="rect37650" style="fill:none" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m 332,1113.362 -4,4 0,-8 z" id="path37652" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path37654" d="m 328,1112.362 0,2 -5.5,0 c -0.8403,0 -1.5,0.66 -1.5,1.5 l 0,0.5 0,0.5 c 0,0.841 0.6597,1.5 1.5,1.5 l 0.5,0 0,2 -0.5,0 c -1.9212,0 -3.5,-1.579 -3.5,-3.5 l 0,-0.5 0,-0.5 c 0,-1.921 1.5788,-3.5 3.5,-3.5 l 5.5,0 z" style="color:#000000;-inkscape-font-specification:Sans;fill:url(#linearGradient19282);stroke-width:2" />
+</g>
+<g transform="translate(-20,220)" inkscape:label="zoom-in" id="g78849">
+<rect y="907.3622" x="75" height="16" width="15.98182" style="fill:none" id="rect9316" />
+<path d="m 78.1875,909.3622 c -0.6627,0 -1.1875,0.549 -1.1875,1.2187 l 0,9.5625 c 0,0.6698 0.5248,1.2188 1.1875,1.2188 l 9.625,0 c 0.6627,0 1.1875,-0.549 1.1875,-1.2188 l 0,-9.5625 c 0,-0.6697 -0.5248,-1.2187 -1.1875,-1.2187 l -9.625,0 z m 3.8125,3 2,0 0,2 2,0 0,2 -2,0 0,2 -2,0 0,-2 -2,0 0,-2 2,0 0,-2 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:2" inkscape:connector-curvature="0" id="path9318" />
+</g>
+<g inkscape:label="zoom-out" transform="translate(-67,729.3622)" id="g9320">
+<rect y="398" x="142" height="16" width="15.98182" style="fill:none" id="rect9322" />
+<path transform="translate(-58,-270)" d="M 203.1875,670 C 202.5248,670 202,670.549 202,671.2187 l 0,9.5625 c 0,0.6698 0.5248,1.2188 1.1875,1.2188 l 9.625,0 c 0.6627,0 1.1875,-0.549 1.1875,-1.2188 l 0,-9.5625 C 214,670.549 213.4752,670 212.8125,670 l -9.625,0 z m 1.8125,5 6,0 0,2 -6,0 0,-2 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:2" inkscape:connector-curvature="0" id="path9324" />
+</g>
+<g transform="translate(20,180)" id="reset-default">
+<g transform="translate(-46.0002,548.3622)" id="g30155" inkscape:label="stock-reset">
+<rect transform="translate(241.0002,217)" y="182" x="-120" height="16" width="16" id="rect30123" style="opacity:0.3;fill:none" />
+<circle r="2" cy="196" cx="-117" transform="matrix(1.25,0,0,1.25,271.2502,167.5)" id="path30125" style="color:#000000;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path30137" d="m 125.0233,409 -4.0231,-4 8,0 z" style="color:#000000;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" id="path30149" d="m 124.9065,401 c -0.4916,0.046 -0.9084,0.5062 -0.9063,1 l 0,4 c -0.01,0.5283 0.4716,1.0142 1,1.0142 0.5284,0 1.0075,-0.4859 1,-1.0142 l 0,-3 8,0 0,9 -4,0 c -0.5283,-0.01 -1.0142,0.4716 -1.0142,1 0,0.5284 0.4859,1.0075 1.0142,1 l 5,0 c 0.5236,0 1,-0.4764 1,-1 l 0,-11 c 0,-0.5236 -0.4764,-1 -1,-1 l -10,0 c -0.031,-10e-4 -0.062,-10e-4 -0.094,0 z" style="color:#000000;fill:url(#linearGradient19282);stroke-width:2" />
+</g>
+</g>
+<g transform="translate(-294,16.00014)" id="document-save">
+<rect width="16" height="16" x="349" y="1131.362" style="color:#bebebe;fill:none" id="rect9333" />
+<rect style="color:#000000;fill:url(#linearGradient19282)" id="rect11650" width="2" height="4.999998" x="356" y="1131.362" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m 357,1140.362 -4.0231,-4 8,0 z" id="path11635" inkscape:connector-curvature="0" />
+<path inkscape:connector-curvature="0" id="path55558" d="m 353.0007,1139.362 0,1 -1.5818,2.173 c -0.1871,0.358 -0.7437,0.494 -1.0966,0.267 -0.353,-0.226 -0.3216,-0.44 -0.3216,-0.44 l 1.6981,-2.685 c 0.079,-0.111 0.16,-0.315 0.3019,-0.315 l 1,10e-4 z" style="color:#000000;fill:url(#linearGradient19282)" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m 361,1139.362 0,1 1.5817,2.173 c 0.1872,0.358 0.7438,0.494 1.0967,0.267 0.3529,-0.226 0.3216,-0.44 0.3216,-0.44 l -1.6981,-2.685 c -0.079,-0.111 -0.16,-0.315 -0.3019,-0.315 l -1,10e-4 z" inkscape:connector-curvature="0" id="path46358" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m 350,1142.362 0,5 14,0 0,-5 z m 4.4114,1.438 c 0.024,-10e-4 0.049,-10e-4 0.072,0 0.3395,-0.06 0.5217,0.266 0.5157,0.562 l 0,0 4,0 0,0 c 0,-0.264 0.1293,-0.569 0.4375,-0.569 0.3082,0 0.5876,0.243 0.5833,0.507 l 0,0.06 c 0,0.545 -0.3846,1 -1.0208,1 l -4,0 c -0.6362,0 -0.9896,-0.455 -0.9896,-1 l 0,-0.06 c -0.013,-0.217 0.1601,-0.433 0.401,-0.5 z" inkscape:connector-curvature="0" id="path12455" />
+</g>
+<g id="edit-copy" transform="translate(100,1167.362)">
+<rect style="opacity:0.3;fill:none" id="rect28728" width="16" height="16" x="-5" y="-20" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m -5,-20 0,11 4,0 0,-6 7,0 0,-5 z" inkscape:connector-curvature="0" id="path46363" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m 0,-14 0,10 11,0 0,-10 z" inkscape:connector-curvature="0" id="path46365" />
+</g>
+<g transform="translate(-242,16)" id="document-print">
+<g transform="translate(269,733.3622)" id="g10817" inkscape:label="printer">
+<rect y="398" x="48" height="16" width="16" id="rect10821" style="color:#bebebe;opacity:0.5146443;fill:none;stroke-width:3" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282)" d="m 50,402 c -0.5,0 -1,0.5 -1,1 l 0,4 c 0,0.5 0.5,1 1,1 l 1,0 0,-2 10,0 0,2 1,0 c 0.5,0 1,-0.5 1,-1 l 0,-4 c 0,-0.5 -0.5,-1 -1,-1 l -12,0 z" id="path3520" />
+<path inkscape:connector-curvature="0" id="path4804" d="m 52,399 0,2 8,0 0,-2 -8,0 z" style="color:#000000;fill:url(#linearGradient19282)" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282)" d="m 52,407 0,5 8,0 0,-5 z" id="path4806" />
+</g>
+</g>
+<g transform="translate(-250.0021,16)" id="document-open">
+<g transform="translate(24.0019,734.3622)" id="g14298" inkscape:label="folder-open">
+<rect style="color:#bebebe;fill:none;stroke-width:2" id="rect12206" width="16" height="16" x="261.0002" y="397" />
+<path inkscape:connector-curvature="0" id="path12212" d="m 261.572,398 c -0.2878,0 -0.5288,0.242 -0.5288,0.5312 l 0,12.9363 c 0,0.2984 0.2315,0.5312 0.5288,0.5312 l 13.7485,0 c 0.2972,0 0.5288,-0.2327 0.5288,-0.5312 l 1.1509,-5.9369 c 0,-0.2891 -0.241,-0.5312 -0.5288,-0.5312 l -11.4156,0 -1.0265,4.4995 c 0,0.277 -0.222,0.5 -0.4977,0.5 -0.2757,0 -0.4963,-0.223 -0.4977,-0.5 L 263.0002,403 c 2.4928,0 8.3465,0 12,0 0,0 0.2366,-2 -0.4806,-2 l -7.5215,0 0,-2.4686 c 0,-0.2891 -0.241,-0.5312 -0.5288,-0.5312 l -2.4712,-2e-4 -1.9285,0 z" style="color:#000000;fill:url(#linearGradient19282)" />
+</g>
+</g>
+<g transform="translate(-270,16.00014)" id="document-new">
+<rect style="fill:none" id="rect14038-2" width="16" height="16" x="285" y="1131.362" rx="0" />
+<path style="color:#000000;fill:url(#linearGradient19282);stroke-width:2" d="m 299.9786,1137.342 c -0.3449,0.262 -1.4839,-0.94 -1.9127,-0.942 -0.4363,0 -1.512,1.187 -1.867,0.927 -0.3489,-0.257 0.4396,-1.652 0.3088,-2.072 -0.1331,-0.427 -1.4881,-1.127 -1.3566,-1.554 0.1293,-0.421 1.5859,-0.07 1.9339,-0.323 0.354,-0.262 0.5446,-1.874 0.9809,-1.878 0.4288,0 0.5882,1.602 0.9341,1.862 0.3519,0.265 1.9018,-0.05 2.0399,0.379 0.1358,0.419 -1.2995,1.07 -1.4337,1.489 -0.1365,0.426 0.7234,1.846 0.3724,2.112 z" id="path8980" inkscape:connector-curvature="0" />
+<path style="color:#000000;fill:url(#linearGradient19282);stroke-width:2" d="m 285.8125,1134.362 c -0.4584,0.09 -0.8207,0.534 -0.8125,1 l 0,11 c 0,0.524 0.4764,1 1,1 l 10,0 c 0.5236,0 1,-0.476 1,-1 l 0,-7.437 c 0.01,-0.264 -0.098,-0.529 -0.2813,-0.719 l -3.5625,-3.563 c -0.1897,-0.183 -0.4547,-0.287 -0.7187,-0.281 l -6.4375,0 c -0.031,0 -0.062,0 -0.094,0 -0.031,0 -0.062,0 -0.094,0 z m 1.1875,2 5,0 0,3 3,0 0,6 -8,0 z" id="path1234-4" inkscape:connector-curvature="0" />
+</g>
+<g transform="translate(-326,15.00014)" id="edit-cut">
+<rect style="fill:none" id="gtk-edit" width="16" height="16" x="441" y="1132.362" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282)" d="m 444.3591,1132.362 c -1.0384,0.472 -1.3774,1.498 -0.7778,2.315 l 4.3289,6.201 -1.7101,2.016 1.3848,1.776 1.5766,-2.116 1.5461,2.116 1.3721,-1.701 -1.6668,-2.091 4.3289,-6.201 c 0.5995,-0.817 0.2606,-1.843 -0.7779,-2.315 l -4.8024,6.813 -4.8024,-6.813 z" id="path12477" />
+<path style="color:#000000;fill:url(#linearGradient19282)" d="m 453.5,1141.362 c -1.933,0 -3.5,1.567 -3.5,3.5 0,1.933 1.567,3.5 3.5,3.5 1.933,0 3.5,-1.567 3.5,-3.5 0,-1.933 -1.567,-3.5 -3.5,-3.5 z m 0,2 c 0.8284,0 1.5,0.672 1.5,1.5 0,0.829 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.671 -1.5,-1.5 0,-0.828 0.6716,-1.5 1.5,-1.5 z" id="path61250" inkscape:connector-curvature="0" />
+<path id="path61253" d="m 444.5,1141.362 c -1.933,0 -3.5,1.567 -3.5,3.5 0,1.933 1.567,3.5 3.5,3.5 1.933,0 3.5,-1.567 3.5,-3.5 0,-1.933 -1.567,-3.5 -3.5,-3.5 z m 0,2 c 0.8284,0 1.5,0.672 1.5,1.5 0,0.829 -0.6716,1.5 -1.5,1.5 -0.8284,0 -1.5,-0.671 -1.5,-1.5 0,-0.828 0.6716,-1.5 1.5,-1.5 z" style="color:#000000;fill:url(#linearGradient19282)" inkscape:connector-curvature="0" />
+</g>
+<g transform="translate(-336,15.00014)" id="edit-paste">
+<rect style="fill:none" id="gtk-paste" width="16" height="16" x="471" y="1132.362" rx="0" />
+<rect style="color:#000000;fill:url(#linearGradient19282)" id="rect6874-8" width="6" height="3" x="475" y="1133.362" ry="0.5303301" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282)" d="m 474,1137.362 0,9 6,0 2,-2 0,-7 z" id="path6973-4" />
+<path inkscape:connector-curvature="0" style="color:#000000;fill:url(#linearGradient19282)" d="M 471.5312,622 C 471.2375,622 471,622.2374 471,622.5312 l 0,4.4688 0,8.4687 c 0,0.2939 0.2375,0.5313 0.5312,0.5313 l 12.9375,0 c 0.2938,0 0.5194,-0.2378 0.5313,-0.5313 l 0,-8.4687 0,-4.4688 C 485,622.2374 484.7625,622 484.4687,622 l -2.4687,0 0,1 1.4687,0 c 0.2938,0 0.5313,0.2374 0.5313,0.5312 l 0,3.4688 0,7.4687 c 0,0.2939 -0.2375,0.5313 -0.5313,0.5313 l -10.9375,0 C 472.2375,635 472,634.7626 472,634.4687 l 0,-7.4687 0,-3.4688 C 472,623.2374 472.2375,623 472.5312,623 l 1.4688,0 0,-1 -2.4688,0 z" transform="translate(0,512.3622)" id="path6977-3" />
+</g>
+<g transform="translate(135,1107.362)" id="preferences-system">
+<title id="title43146">preferences-system</title>
+<rect width="16" height="16" x="0" y="0" style="fill:none" id="gtk-preferences" />
+<path inkscape:connector-curvature="0" d="m 3.549515,0.0908209 c -0.399396,0 -0.786509,0.0919 -1.143474,0.21635 L 4.291229,2.192361 c 0.387409,0.3874 0.387409,1.00329 0,1.39071 l -0.710808,0.71081 c -0.387409,0.3874 -1.003305,0.3874 -1.390714,0 L 0.304519,2.408691 c -0.12446,0.35695 -0.216334,0.74407 -0.216334,1.14347 0,1.91164 1.549691,3.46132 3.46133,3.46132 0.399396,0 0.786511,-0.0919 1.143476,-0.21633 l 1.17438,1.17438 a 2.472626,2.472626 0 0 1 0.0618,0 L 7.999793,5.900921 6.794509,4.695631 c 0.124458,-0.35695 0.216332,-0.74407 0.216332,-1.14347 0,-1.91164 -1.549689,-3.4613401 -3.46133,-3.4613401 z M 10.10132,8.002441 8.030701,10.07305 a 2.472626,2.472626 0 0 1 0.03091,0.0927 l 1.143474,1.14347 c -0.124458,0.357 -0.216332,0.74412 -0.216332,1.14352 0,1.91164 1.549687,3.46134 3.461327,3.46134 0.43354,0 0.85375,-0.1017 1.23619,-0.24724 l -2.0088,-2.00881 c -0.38741,-0.38742 -0.38741,-1.0342 0,-1.42162 l 0.6799,-0.6799 c 0.1937,-0.19371 0.45801,-0.30906 0.71081,-0.30906 0.25279,0 0.5171,0.11535 0.71081,0.30906 l 1.947,1.94699 c 0.10486,-0.33054 0.18542,-0.6855 0.18542,-1.05076 0,-1.91164 -1.54969,-3.461319 -3.46133,-3.461319 -0.39939,0 -0.78651,0.0919 -1.14347,0.21633 l -1.20529,-1.2053 z" style="fill:url(#linearGradient19282)" id="path43150" />
+<path inkscape:connector-curvature="0" d="m 13.8603,0 -1.5427,1.401689 c -0.45159,0.42201 -0.5293,1.15218 -0.26635,1.71144 l -5.889178,6.01323 c -0.01036,-2.5e-5 -0.02072,5.8e-5 -0.03108,2.5e-4 C 5.871357,8.996235 5.579305,8.944505 5.290686,8.977769 4.960503,9.024071 4.655346,9.17964 4.423915,9.419649 l -3.94684,4.008991 c -1.402175,1.41988 0.731968,3.52095 2.129781,2.09677 L 6.553695,11.51642 C 7.023352,11.06306 7.143746,10.35703 6.850873,9.773649 L 12.7403,3.791489 c 0.55791,0.2491 1.27345,0.1474 1.70708,-0.29305 l 1.41742,-1.56504 z" style="fill:url(#linearGradient19282)" id="path43152" />
+</g>
+<g transform="translate(115,1127.362)" id="document-revert">
+<title id="title43138">document-revert</title>
+<rect style="fill:none" x="0" height="16" width="16" y="0" id="rect43140" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 2.937498,0.9631152 c -0.6325,0.0456 -1.02766,0.7217098 -0.9375,1.3146498 l 0.0312,12.770875 c 0.057,0.62588 0.69233,1.02817 1.28125,0.93903 l 9.750002,-0.0312 c 0.62425,-0.057 1.02639,-0.69287 0.9375,-1.28334 l -0.0312,-9.797265 c -0.0941,-0.59933 -0.66512,-0.91524 -1.03125,-1.34595 l -2.375,-2.37889 C 10.07204,0.8473953 9.451728,1.005185 8.906248,0.9632152 Z m 4.0625,3.0049098 1,0 0,1.00164 c 0,0.25731 -0.12983,0.52932 -0.3125,0.71993 l -1.28125,1.28334 3.125,0 c 1.921842,0 3.500002,1.58211 3.500002,3.505735 0,1.10215 -0.51808,2.08192 -1.32206,2.71773 l -1.1452,-1.63392 C 10.8361,11.29103 11,10.90858 11,10.47867 11,9.636335 10.4708,8.976215 9.531248,8.976215 l -3.125,0 1.28125,1.283345 c 0.18267,0.1906 0.3125,0.46262 0.3125,0.71993 l 0,1.00164 -1,0 c -0.30945,0 -0.55232,-0.0905 -0.75,-0.28171 l -3.65625,-3.724845 3.65625,-3.72484 c 0.19768,-0.19131 0.44055,-0.28171 0.75,-0.28171 z" id="path43142" />
+</g>
+<g transform="translate(135,1127.362)" id="document-revert-rtl">
+<title id="title43130">document-revert-rtl</title>
+<rect width="16" height="16" x="0" style="fill:none" y="0" id="rect43132" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="M 2.9375,0.9754391 C 2.305,1.021014 1.998535,1.690335 2,2.290087 L 2.0312,15.06096 c 0.0015,0.62847 0.685626,0.94094 1.28125,0.93903 l 9.75,-0.0312 c 0.62684,-0.002 0.9394,-0.68622 0.9375,-1.28335 L 13.96875,4.888134 C 13.87465,4.288804 13.30363,3.972897 12.9375,3.542184 L 10.5625,1.163296 C 10.07204,0.8596699 9.45173,1.017458 8.90625,0.9754892 l -5.96875,0 z M 8,3.980349 l 1,0 c 0.30945,0 0.55232,0.09035 0.75,0.281711 L 13.40625,7.986897 9.75,11.71173 C 9.55232,11.9029 9.30945,11.99344 9,11.99344 l -1,0 0,-1.00163 C 8,10.7345 8.12983,10.46248 8.3125,10.27188 l 1.28125,-1.283347 -3.125,0 C 5.5292,8.988534 5,9.648662 5,10.49099 c 0,0.42991 0.16539,0.82409 0.4375,1.09554 l -1.15625,1.62766 c -0.80398,-0.63581 -1.3125,-1.62105 -1.3125,-2.7232 0,-1.923625 1.57816,-3.50573 3.5,-3.50573 l 3.125,0 L 8.3125,5.701913 C 8.12983,5.511301 8,5.239297 8,4.981986 Z" id="path43134" />
+</g>
+<g transform="translate(155,1107.362)" id="go-up">
+<title id="title47627">go-up</title>
+<rect y="0" x="0" height="16" width="16" style="fill:none" id="gtk-go-up" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="M 8,4.5625 2.28125,10.2812 C 2.08538,10.4771 2,10.7444 2,11 l 0,1 1,0 c 0.25562,0 0.52288,-0.085 0.71875,-0.2813 L 8,7.4375 12.28125,11.7187 C 12.47712,11.9146 12.74438,12 13,12 l 1,0 0,-1 c 0,-0.2556 -0.0854,-0.5229 -0.28125,-0.7188 z" id="path47631" />
+</g>
+<g transform="translate(155,1127.362)" id="go-down">
+<title id="title47619">go-down</title>
+<rect width="16" height="16" x="0" y="0" style="fill:none" id="gtk-go-down" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="M 8,11.4375 2.281252,5.71875 C 2.085382,5.52288 2,5.25562 2,5 L 2,4 3,4 C 3.25562,4 3.52288,4.0854 3.71875,4.28125 L 8,8.5625 12.28125,4.28125 C 12.47712,4.08538 12.74438,4 13,4 l 1,0 0,1 c 0,0.25562 -0.0854,0.52288 -0.28125,0.71875 z" id="path47623" />
+</g>
+<g transform="translate(155,1147.362)" id="edit-delete">
+<title id="title34114">edit-delete</title>
+<rect width="16" height="16" x="0" y="0" style="fill:none" id="gtk-remove" />
+<path inkscape:connector-curvature="0" d="M 8,1.03125 C 4.14673,1.03125 1.03125,4.14672 1.03125,8 c 0,3.85327 3.11548,6.96875 6.96875,6.96875 3.85327,0 6.96875,-3.11548 6.96875,-6.96875 C 14.96875,4.14672 11.85327,1.03125 8,1.03125 Z M 5,5 6,5 c 0.01037,0 0.02079,0 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 L 8,6.59375 9.3125,5.3125 C 9.578125,5.082 9.759172,5.007 10,5 l 1,0 0,1 c 0,0.28647 -0.0343,0.55065 -0.25,0.75 l -1.28125,1.28125 1.25,1.25 C 10.90694,9.46942 11,9.7347 11,10 l 0,1 -1,0 C 9.734699,10.99999 9.469414,10.9069 9.28125,10.71875 L 8,9.4375 6.71875,10.71875 C 6.530586,10.90694 6.26529,11 6,11 L 5,11 5,10 C 5,9.73471 5.09306,9.46942 5.28125,9.28125 L 6.5625,8.03125 5.28125,6.75 C 5.070508,6.55537 4.97809,6.28075 5,6 L 5,5 Z" style="fill:url(#linearGradient19282)" id="path34118" />
+</g>
+<g transform="translate(95,1107.362)" id="format-indent-more">
+<title id="title43170">format-indent-more</title>
+<rect y="0" x="0" height="16" width="16" style="fill:none" id="indent" />
+<rect id="gtk-indent" style="fill:none" width="16" height="16" x="0" y="0" />
+<rect y="3" x="8" height="2" width="5" style="fill:url(#linearGradient19282)" id="rect43174" />
+<rect y="7" x="8" height="2" width="6" style="fill:url(#linearGradient19282)" id="rect43176" />
+<rect y="11" x="2" height="2" width="7" style="fill:url(#linearGradient19282)" id="rect43178" />
+<path inkscape:connector-curvature="0" d="M 2,3 2,4 C 2,4.25689 2.12983,4.52846 2.3125,4.71875 L 3.593552,6 2.312302,7.28125 C 2.129632,7.47154 2,7.74311 2,8 L 2,9 3,9 C 3.30945,9 3.55232,8.9097 3.75,8.71875 L 6.406052,6 3.749802,3.28125 C 3.552122,3.0903 3.309252,3 3,3 L 2,3 Z" style="fill:url(#linearGradient19282)" id="path43180" />
+</g>
+<g transform="translate(115,1107.362)" id="format-indent-less">
+<title id="title43156">format-indent-less</title>
+<rect width="16" height="16" x="0" y="0" style="fill:none" id="unindent" />
+<rect id="gtk-unindent" style="fill:none" y="0" x="0" height="16" width="16" />
+<rect style="fill:url(#linearGradient19282)" width="5" height="2" x="2" y="3" id="rect43160" />
+<rect style="fill:url(#linearGradient19282)" width="6" height="2" x="2" y="7" id="rect43162" />
+<rect style="fill:url(#linearGradient19282)" width="7" height="2" x="7" y="11" id="rect43164" />
+<path inkscape:connector-curvature="0" style="fill:url(#linearGradient19282)" d="m 14,3 0,1 c 0,0.25689 -0.12983,0.52846 -0.3125,0.71875 L 12.40645,6 13.6877,7.28125 C 13.87037,7.47154 14.0002,7.74311 14.0002,8 l 0,1 -1,0 C 12.69075,9 12.44788,8.9097 12.2502,8.71875 L 9.593948,6 12.2502,3.28125 C 12.44788,3.0903 12.69075,3 13,3 l 1,0 z" id="path43166" />
+</g>
</g>
<g inkscape:label="#interactive_simplify" id="interactive_simplify" transform="translate(66.03444,182.8403)">
<rect style="color:#000000;display:inline;fill:none;stroke:none;stroke-width:1;marker:none" id="rect17937" width="24" height="24" x="284.9688" y="527.3309" />
diff --git a/share/keys/CMakeLists.txt b/share/keys/CMakeLists.txt
new file mode 100644
index 000000000..e968007dc
--- /dev/null
+++ b/share/keys/CMakeLists.txt
@@ -0,0 +1,2 @@
+file(GLOB _FILES "*.xml")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/keys)
diff --git a/share/markers/CMakeLists.txt b/share/markers/CMakeLists.txt
new file mode 100644
index 000000000..410df1cf4
--- /dev/null
+++ b/share/markers/CMakeLists.txt
@@ -0,0 +1,2 @@
+file(GLOB _FILES "*.svg")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/markers)
diff --git a/share/palettes/CMakeLists.txt b/share/palettes/CMakeLists.txt
new file mode 100644
index 000000000..77b4b2a37
--- /dev/null
+++ b/share/palettes/CMakeLists.txt
@@ -0,0 +1,13 @@
+set(I18N_FILES "inkscape.gpl" "svg.gpl" "Tango-Palette.gpl")
+
+add_custom_command(
+ OUTPUT palettes.h
+ COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py ${I18N_FILES} > ${CMAKE_CURRENT_BINARY_DIR}/palettes.h
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py ${I18N_FILES}
+)
+add_custom_target(palettes.h ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/palettes.h)
+
+file(GLOB _FILES "*.gpl")
+
+install(FILES ${_FILES} "README" ${CMAKE_CURRENT_BINARY_DIR}/palettes.h DESTINATION ${SHARE_INSTALL}/inkscape/palettes)
diff --git a/share/patterns/CMakeLists.txt b/share/patterns/CMakeLists.txt
new file mode 100644
index 000000000..98415b225
--- /dev/null
+++ b/share/patterns/CMakeLists.txt
@@ -0,0 +1,10 @@
+add_custom_command(
+ OUTPUT patterns.svg.h
+ COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py ${CMAKE_CURRENT_SOURCE_DIR}/patterns.svg > ${CMAKE_CURRENT_BINARY_DIR}/patterns.svg.h
+ MAIN_DEPENDENCY ${CMAKE_CURRENT_SOURCE_DIR}/patterns.svg
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py
+)
+add_custom_target(patterns.svg.h ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/patterns.svg.h)
+
+install(FILES ${CMAKE_CURRENT_BINARY_DIR}/patterns.svg.h DESTINATION ${SHARE_INSTALL}/inkscape/patterns)
+install(FILES "patterns.svg" "README" DESTINATION ${SHARE_INSTALL}/inkscape/patterns) \ No newline at end of file
diff --git a/share/screens/CMakeLists.txt b/share/screens/CMakeLists.txt
new file mode 100644
index 000000000..b8b848708
--- /dev/null
+++ b/share/screens/CMakeLists.txt
@@ -0,0 +1,2 @@
+file(GLOB _FILES "README" "*.svg")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/screens)
diff --git a/share/symbols/CMakeLists.txt b/share/symbols/CMakeLists.txt
new file mode 100644
index 000000000..ef44c89e4
--- /dev/null
+++ b/share/symbols/CMakeLists.txt
@@ -0,0 +1,11 @@
+file(GLOB _FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.svg")
+
+add_custom_command(
+ OUTPUT symbols.h
+ COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py ${_FILES} > ${CMAKE_CURRENT_BINARY_DIR}/symbols.h
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py ${_FILES}
+)
+add_custom_target(symbols.h ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/symbols.h)
+
+install(FILES ${_FILES} "README" ${CMAKE_CURRENT_BINARY_DIR}/symbols.h DESTINATION ${SHARE_INSTALL}/inkscape/symbols)
diff --git a/share/templates/CMakeLists.txt b/share/templates/CMakeLists.txt
new file mode 100644
index 000000000..eee5b4458
--- /dev/null
+++ b/share/templates/CMakeLists.txt
@@ -0,0 +1,11 @@
+file(GLOB _FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "*.svg")
+
+add_custom_command(
+ OUTPUT templates.h
+ COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py ${_FILES} > ${CMAKE_CURRENT_BINARY_DIR}/templates.h
+ WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+ DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/i18n.py ${_FILES}
+)
+add_custom_target(templates.h ALL DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/templates.h)
+
+install(FILES ${_FILES} "README" ${CMAKE_CURRENT_BINARY_DIR}/templates.h DESTINATION ${SHARE_INSTALL}/inkscape/templates)
diff --git a/share/tutorials/CMakeLists.txt b/share/tutorials/CMakeLists.txt
new file mode 100644
index 000000000..f8491bf32
--- /dev/null
+++ b/share/tutorials/CMakeLists.txt
@@ -0,0 +1,2 @@
+file(GLOB _FILES "README" "*.svg" "*.jpg" "*.png")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/tutorials)
diff --git a/share/ui/CMakeLists.txt b/share/ui/CMakeLists.txt
new file mode 100644
index 000000000..89b9f9b0f
--- /dev/null
+++ b/share/ui/CMakeLists.txt
@@ -0,0 +1,3 @@
+file(GLOB _FILES "*.xml" "*.rc")
+install(FILES ${_FILES} DESTINATION ${SHARE_INSTALL}/inkscape/ui)
+