diff --git a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
index b323d42fe5f5bdc261dcc1daa06cbea3fbd618a5..e4beef1b8a2f66fdb1d73ec19ca61914f6f523ef 100644
--- a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
+++ b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
@@ -6,7 +6,7 @@ c = Component()
 c.addSubcomponent("boat", "BoatBase", inherit=True, prefix=None)
 c.inheritAllInterfaces("boat")
 
-c.addParameter("length", 228, paramType="length")
+c.addParameter("length", 169, paramType="length")
 c.addParameter("width", 90, paramType="length")
 c.addParameter("depth", 70, paramType="length")
 
@@ -19,7 +19,23 @@ c.addConstraint(("boat", "boat.depth"), "depth")
 c.addSubcomponent("servostackbattery", "ServoStackBatteryMount")
 c.inheritAllInterfaces("servostackbattery")
 
-c.addConnection(("boat", "portedge"), ("servostackbattery", "lTopSplit")) #both face the same direction
-c.addConnection(("boat", "staredge"), ("servostackbattery", "rTopSplit"))
+c.addSubcomponent("portsplit", "SplitEdge")
+c.inheritAllInterfaces("portsplit")
+c.addConstConstraint(("portsplit", "toplength"), (169,))
+c.addConstConstraint(("portsplit", "botlength"), (61, 108))
+
+c.addSubcomponent("starsplit", "SplitEdge")
+c.inheritAllInterfaces("starsplit")
+c.addConstConstraint(("starsplit", "toplength"), (169,))
+c.addConstConstraint(("starsplit", "botlength"), (108, 61))
+
+c.addConnection(("portsplit", "topedge0"), ("boat", "portedge")) #both face the same direction
+c.addConnection(("portsplit", "botedge1"), ("servostackbattery", "lservostackbatterysplit"))
+
+c.addConnection(("starsplit", "topedge0"), ("boat", "staredge")) #both face the same direction
+c.addConnection(("starsplit", "botedge0"), ("servostackbattery", "rservostackbatterysplit"))
+#
+# c.addConnection(("boat", "portedge"), ("servostackbattery", "lservostackbatterysplit")) #both face the same direction
+# c.addConnection(("boat", "staredge"), ("servostackbattery", "lservostackbatterysplit"))
 
 c.toLibrary("BoatWithServoStackBattery")
diff --git a/rocolib/builders/boat/mounts/BatteryStackHolderBuilder.py b/rocolib/builders/boat/mounts/BatteryHolderBuilder.py
similarity index 97%
rename from rocolib/builders/boat/mounts/BatteryStackHolderBuilder.py
rename to rocolib/builders/boat/mounts/BatteryHolderBuilder.py
index 3bbd56d4bffdce0b4737f90365224de40eff2947..a16f8561d31bff666c143dfdd7ca8acd2bf47367 100644
--- a/rocolib/builders/boat/mounts/BatteryStackHolderBuilder.py
+++ b/rocolib/builders/boat/mounts/BatteryHolderBuilder.py
@@ -25,4 +25,4 @@ c.addConnection(("bottom", "l"), ("holder", "botedge1"), tabWidth=5, angle=90)
 c.addConnection(("bottom", "r"), ("holder", "botedge3"),tabWidth=5, angle=90)
 c.addConnection(("bottom", "b"), ("holder", "botedge2"), tabWidth=5, angle=90)
 
-c.toLibrary("BatteryStackHolder")
+c.toLibrary("BatteryHolder")
diff --git a/rocolib/builders/boat/mounts/BatteryStackMountBuilder.py b/rocolib/builders/boat/mounts/BatteryMountBuilder.py
similarity index 95%
rename from rocolib/builders/boat/mounts/BatteryStackMountBuilder.py
rename to rocolib/builders/boat/mounts/BatteryMountBuilder.py
index 98db012bfc74d8d2d24363890555f62f29c75d48..7807ceb831ffbc2201a6d509c73dbbca8a504e51 100644
--- a/rocolib/builders/boat/mounts/BatteryStackMountBuilder.py
+++ b/rocolib/builders/boat/mounts/BatteryMountBuilder.py
@@ -8,7 +8,7 @@ c = Component()
 c.addParameter("boatwidth", 90, paramType="length")
 c.addParameter("boatdepth", 70, paramType="length")
 
-c.addParameter("batterylength", 60, paramType="length")
+c.addParameter("batterylength", 61, paramType="length")
 c.addParameter("batterywidth", 17, paramType="length")
 c.addParameter("batterydepth", 9, paramType="length")
 
@@ -40,4 +40,4 @@ c.addConnection(("holder", "face3"),
 c.inheritInterface("leftArmInterface", ("larm", "r"))
 c.inheritInterface("rightArmInterface", ("rarm", "r"))
 
-c.toLibrary("BatteryStackMount")
+c.toLibrary("BatteryMount")
diff --git a/rocolib/builders/boat/mounts/ServoStackBatteryMountBuilder.py b/rocolib/builders/boat/mounts/ServoStackBatteryMountBuilder.py
index 5271b1262208b3d8f7f63f6bcabf7232de72c2fc..73ec99673dbb57892d5530fcb33e13e5b43b27f1 100644
--- a/rocolib/builders/boat/mounts/ServoStackBatteryMountBuilder.py
+++ b/rocolib/builders/boat/mounts/ServoStackBatteryMountBuilder.py
@@ -3,29 +3,29 @@ from rocolib.api.Function import Function
 
 c = Component()
 
-c.addSubcomponent("servosandstack", "ServoMountAndStack", inherit=("lServoMount.depth", "lServoMount.width", "stack.length"), prefix=None)
+c.addSubcomponent("servosandstack", "ServoStackMount", inherit=("lServoMount.depth", "lServoMount.width", "stack.length"), prefix=None)
 c.inheritAllInterfaces("servosandstack")
 
-c.addSubcomponent("batterystackmount", "BatteryStackMount", inherit="batterylength")
-c.inheritAllInterfaces("batterystackmount")
+c.addSubcomponent("batterymount", "BatteryMount")
+c.inheritAllInterfaces("batterymount")
 
 c.addSubcomponent("lfullsplit", "SplitEdge", inherit=True)
 c.inheritAllInterfaces("lfullsplit")
-c.addConstraint(("lfullsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length", "batterystackmount.batterylength"), "(x[0]*2+x[1]*2+10*2+x[2]+x[3],)")
-c.addConstraint(("lfullsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length", "batterystackmount.batterylength"), "(x[0]*2+x[1]*2+10*2+x[2], x[3])")
-#
-c.addConnection(("lfullsplit", "botedge1"), ("batterystackmount", "rightArmInterface"), tabWidth=10)
-c.addConnection(("lfullsplit", "botedge0"), ("servosandstack", "lmountandservosplit"))
+c.addConstraint(("lfullsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]*2+x[1]*2+10*2+x[2],)")
+c.addConstraint(("lfullsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]*2+x[1]*2+10*2, x[2])")
+
+c.addConnection(("lfullsplit", "topedge0"), ("servosandstack", "lservostacksplit"))
+c.addConnection(("batterymount", "rightArmInterface"), ("lfullsplit", "botedge1"), tabWidth=10) #first interface gets the tab, second interface gets the slot
 
 c.addSubcomponent("rfullsplit", "SplitEdge", inherit=True)
 c.inheritAllInterfaces("rfullsplit")
-c.addConstraint(("rfullsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length", "batterystackmount.batterylength"), "(x[0]*2+x[1]*2+10*2+x[2]+x[3],)")
-c.addConstraint(("rfullsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length", "batterystackmount.batterylength"), "(x[3], x[0]*2+x[1]*2+10*2+x[2])") 
-#
-c.addConnection(("rfullsplit", "botedge0"), ("batterystackmount", "leftArmInterface"))
-c.addConnection(("rfullsplit", "botedge1"), ("servosandstack", "rmountandservosplit"))
-
-c.inheritInterface("lTopSplit", ("lfullsplit", "topedge0"))
-c.inheritInterface("rTopSplit", ("rfullsplit", "topedge0"))
+c.addConstraint(("rfullsplit", "toplength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[0]*2+x[1]*2+10*2+x[2],)")
+c.addConstraint(("rfullsplit", "botlength"), ("lServoMount.depth", "lServoMount.width", "stack.length"), "(x[2], x[0]*2+x[1]*2+10*2)")
+
+c.addConnection(("rfullsplit", "topedge0"), ("servosandstack", "rservostacksplit"))
+c.addConnection(("batterymount", "leftArmInterface"), ("rfullsplit", "botedge0"), tabWidth=10)
+
+c.inheritInterface("lservostackbatterysplit", ("lfullsplit", "botedge0")) #everything besides the battery + stack section of the split
+c.inheritInterface("rservostackbatterysplit", ("rfullsplit", "botedge1"))
 
 c.toLibrary("ServoStackBatteryMount")
diff --git a/rocolib/builders/boat/mounts/ServoMountAndStackBuilder.py b/rocolib/builders/boat/mounts/ServoStackMountBuilder.py
similarity index 89%
rename from rocolib/builders/boat/mounts/ServoMountAndStackBuilder.py
rename to rocolib/builders/boat/mounts/ServoStackMountBuilder.py
index 779645d985d6b0041d5fa12a87d2e9098e449fdf..5cd25c519fe3d6baec8a9cda8ba09aa8c525a34d 100644
--- a/rocolib/builders/boat/mounts/ServoMountAndStackBuilder.py
+++ b/rocolib/builders/boat/mounts/ServoStackMountBuilder.py
@@ -24,7 +24,7 @@ c.addConstraint(("starsplit", "botlength"), ("lServoMount.depth", "lServoMount.w
 c.addConnection(("doubleServoMount", "rServoInterface"), ("starsplit", "botedge1"))
 c.addConnection(("espStack", "rightArmInterface"), ("starsplit", "botedge3"), tabWidth=10)
 
-c.inheritInterface("lmountandservosplit", ("portsplit","topedge0"))
-c.inheritInterface("rmountandservosplit", ("starsplit","topedge0"))
+c.inheritInterface("lservostacksplit", ("portsplit","topedge0"))
+c.inheritInterface("rservostacksplit", ("starsplit","topedge0"))
 
-c.toLibrary("ServoMountAndStack")
+c.toLibrary("ServoStackMount")
diff --git a/rocolib/builders/boat/mounts/SideServoMountBuilder.py b/rocolib/builders/boat/mounts/SideServoMountBuilder.py
index 402d12208ba3b30aeabcb3b1bec8afc973949ca1..fc59391357c084afdf406dc769f16c64d494d358 100644
--- a/rocolib/builders/boat/mounts/SideServoMountBuilder.py
+++ b/rocolib/builders/boat/mounts/SideServoMountBuilder.py
@@ -4,38 +4,33 @@ from rocolib.api.Function import Function
 c = Component()
 
 c.addParameter("servo", "fs90r", paramType="dimension")
-# c.addParameter("flip", False, valueType="bool")
-# c.addParameter("center", True, valueType="bool")
-# c.addParameter("shift", 0, paramType="length")
-# XXX TODO: Define type: tuple of two numbers
+c.addParameter("dxServo", 23, parameterType="length") #the little servo cutout
+c.addParameter("dyServo", 12, parameterType="length")
 c.addParameter("offset", optional=True, overrides=("flip", "center", "shift"))
 
 c.addParameter("length", 34, paramType="length")
 c.addParameter("width", 20, paramType="length")
 c.addParameter("depth", 24, paramType="length")
 
+c.addParameter("wiresDx", 4, parameterType="length") #the little servo cutout
+c.addParameter("wiresDy", 9, parameterType="length") #the little servo cutout
+c.addParameter("dxServoArm", 4, parameterType="length") #the little servo cutout
+c.addParameter("dyServoArm", 12, parameterType="length")
+
 c.addSubcomponent("beam", "SimpleRectBeam", prefix=None)
 c.addSubcomponent("mount", "Cutout")
 
 c.addSubcomponent("servoArm0", "Cutout")
 c.addSubcomponent("servoArm1", "Cutout")
 
-c.addParameter("dxServoArm", 4, parameterType="length") #the little servo cutout
-c.addParameter("dyServoArm", 12, parameterType="length")
-
 c.addConstraint(("servoArm0", "dx"), "dxServoArm")
 c.addConstraint(("servoArm0", "dy"), "dyServoArm")
 c.addConstraint(("servoArm1", "dx"), "dxServoArm")
 c.addConstraint(("servoArm1", "dy"), "dyServoArm")
 
 c.addSubcomponent("wires", "Cutout")
-c.addParameter("wiresDx", 4, parameterType="length") #the little servo cutout
-c.addParameter("wiresDy", 9, parameterType="length") #the little servo cutout
 c.addConstraint(("wires", "dx"), "wiresDx")
 c.addConstraint(("wires", "dy"), "wiresDy")
-
-c.addParameter("dxServo", 23, parameterType="length") #the little servo cutout
-c.addParameter("dyServo", 12, parameterType="length")
 #
 c.addConstraint(("mount", "dx"), "dxServo")
 c.addConstraint(("mount", "dy"), "dyServo")
diff --git a/rocolib/library/BatteryHolder.yaml b/rocolib/library/BatteryHolder.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..5682939d728337d8b8bfce9c399eba8a8d8acebe
--- /dev/null
+++ b/rocolib/library/BatteryHolder.yaml
@@ -0,0 +1,214 @@
+connections:
+  connection0:
+  - - bottom
+    - t
+  - - holder
+    - botedge0
+  - angle: 90
+  connection1:
+  - - bottom
+    - l
+  - - holder
+    - botedge1
+  - angle: 90
+    tabWidth: 5
+  connection2:
+  - - bottom
+    - r
+  - - holder
+    - botedge3
+  - angle: 90
+    tabWidth: 5
+  connection3:
+  - - bottom
+    - b
+  - - holder
+    - botedge2
+  - angle: 90
+    tabWidth: 5
+interfaces: {}
+parameters:
+  _dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  _dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  _dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  _q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  _q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  _q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  _q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  addTabs:
+    defaultValue: true
+    spec:
+      valueType: bool
+  batterydepth:
+    defaultValue: 9
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  batterylength:
+    defaultValue: 60
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  batterywidth:
+    defaultValue: 17
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  bottom._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  bottom._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  bottom._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  bottom._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  bottom._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  bottom._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  bottom._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  depth:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  length:
+    defaultValue: 100
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  numBatteries:
+    defaultValue: 3
+    spec:
+      maxValue: 10
+      minValue: 1
+      valueType: int
+  width:
+    defaultValue: 20
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/mounts/BatteryHolderBuilder.py
+subcomponents:
+  bottom:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: bottom._dx
+      _dy:
+        parameter: bottom._dy
+      _dz:
+        parameter: bottom._dz
+      _q_a:
+        parameter: bottom._q_a
+      _q_i:
+        parameter: bottom._q_i
+      _q_j:
+        parameter: bottom._q_j
+      _q_k:
+        parameter: bottom._q_k
+      l:
+        function: x[0] * x[1]
+        parameter: &id001
+        - numBatteries
+        - batterydepth
+      w:
+        parameter: batterywidth
+  holder:
+    classname: SimpleRectBeam
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: _dx
+      _dy:
+        parameter: _dy
+      _dz:
+        parameter: _dz
+      _q_a:
+        parameter: _q_a
+      _q_i:
+        parameter: _q_i
+      _q_j:
+        parameter: _q_j
+      _q_k:
+        parameter: _q_k
+      addTabs:
+        parameter: addTabs
+      depth:
+        parameter: batterywidth
+      length:
+        parameter: batterylength
+      width:
+        function: x[0] * x[1]
+        parameter: *id001
diff --git a/rocolib/library/BatteryMount.yaml b/rocolib/library/BatteryMount.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..c15f6e6af72a813a7e3ed4e9ffc2fbf827243fdd
--- /dev/null
+++ b/rocolib/library/BatteryMount.yaml
@@ -0,0 +1,306 @@
+connections:
+  connection0:
+  - - larm
+    - l
+  - - holder
+    - topedge3
+  - angle: -45
+  connection1:
+  - - rarm
+    - l
+  - - holder
+    - botedge3
+  - angle: -45
+  connection2:
+  - - holder
+    - face3
+  - - terminals
+    - decoration
+  - mode: hole
+    offset:
+      function: (-30, 0)
+      parameter: batterylength
+interfaces:
+  leftArmInterface:
+    interface: r
+    subcomponent: larm
+  rightArmInterface:
+    interface: r
+    subcomponent: rarm
+parameters:
+  _dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  _dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  _dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  _q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  _q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  _q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  _q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  addTabs:
+    defaultValue: true
+    spec:
+      valueType: bool
+  batterydepth:
+    defaultValue: 9
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  batterylength:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  batterywidth:
+    defaultValue: 17
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boatdepth:
+    defaultValue: 70
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  boatwidth:
+    defaultValue: 90
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  depth:
+    defaultValue: 50
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  larm._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  larm._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  larm._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  larm._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  larm._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  larm._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  larm._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  length:
+    defaultValue: 100
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  numBatteries:
+    defaultValue: 3
+    spec:
+      maxValue: 10
+      minValue: 1
+      valueType: int
+  rarm._dx:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  rarm._dy:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  rarm._dz:
+    defaultValue: 0
+    spec:
+      minValue: null
+      units: mm
+      valueType: (float, int)
+  rarm._q_a:
+    defaultValue: 1
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  rarm._q_i:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  rarm._q_j:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  rarm._q_k:
+    defaultValue: 0
+    spec:
+      maxValue: 1
+      minValue: -1
+      valueType: (int, float)
+  width:
+    defaultValue: 20
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/mounts/BatteryMountBuilder.py
+subcomponents:
+  holder:
+    classname: SimpleRectBeam
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: _dx
+      _dy:
+        parameter: _dy
+      _dz:
+        parameter: _dz
+      _q_a:
+        parameter: _q_a
+      _q_i:
+        parameter: _q_i
+      _q_j:
+        parameter: _q_j
+      _q_k:
+        parameter: _q_k
+      addTabs:
+        parameter: addTabs
+      depth:
+        parameter: batterylength
+      length:
+        function: x[1] * x[0]
+        parameter:
+        - numBatteries
+        - batterydepth
+      width:
+        parameter: batterywidth
+  larm:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: larm._dx
+      _dy:
+        parameter: larm._dy
+      _dz:
+        parameter: larm._dz
+      _q_a:
+        parameter: larm._q_a
+      _q_i:
+        parameter: larm._q_i
+      _q_j:
+        parameter: larm._q_j
+      _q_k:
+        parameter: larm._q_k
+      l:
+        function: ((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) **
+          0.5
+        parameter: &id001
+        - numBatteries
+        - boatwidth
+        - boatdepth
+        - batterywidth
+        - batterydepth
+      w:
+        parameter: batterylength
+  rarm:
+    classname: Rectangle
+    kwargs: {}
+    parameters:
+      _dx:
+        parameter: rarm._dx
+      _dy:
+        parameter: rarm._dy
+      _dz:
+        parameter: rarm._dz
+      _q_a:
+        parameter: rarm._q_a
+      _q_i:
+        parameter: rarm._q_i
+      _q_j:
+        parameter: rarm._q_j
+      _q_k:
+        parameter: rarm._q_k
+      l:
+        function: ((0.5 * x[1] - 0.5 * (x[4] * x[0])) ** 2 + (x[2] - x[3]) ** 2) **
+          0.5
+        parameter: *id001
+      w:
+        parameter: batterylength
+  terminals:
+    classname: Cutout
+    kwargs: {}
+    parameters:
+      dx: 6
+      dy:
+        function: x * 6
+        parameter: numBatteries
diff --git a/rocolib/library/BoatWithServoStackBattery.yaml b/rocolib/library/BoatWithServoStackBattery.yaml
index d1b5d46b7b7c967c0e361de49ad43f1c5c056085..56535de55fa611629e5e969909c379071d33119a 100644
--- a/rocolib/library/BoatWithServoStackBattery.yaml
+++ b/rocolib/library/BoatWithServoStackBattery.yaml
@@ -1,15 +1,27 @@
 connections:
   connection0:
+  - - portsplit
+    - topedge0
   - - boat
     - portedge
-  - - servostackbattery
-    - lTopSplit
   - {}
   connection1:
+  - - portsplit
+    - botedge1
+  - - servostackbattery
+    - lservostackbatterysplit
+  - {}
+  connection2:
+  - - starsplit
+    - topedge0
   - - boat
     - staredge
+  - {}
+  connection3:
+  - - starsplit
+    - botedge0
   - - servostackbattery
-    - rTopSplit
+    - rservostackbatterysplit
   - {}
 interfaces:
   boat.portedge:
@@ -18,14 +30,611 @@ interfaces:
   boat.staredge:
     interface: staredge
     subcomponent: boat
-  servostackbattery.batterystackmount.leftArmInterface:
-    interface: batterystackmount.leftArmInterface
-    subcomponent: servostackbattery
-  servostackbattery.batterystackmount.rightArmInterface:
-    interface: batterystackmount.rightArmInterface
-    subcomponent: servostackbattery
-  servostackbattery.lTopSplit:
-    interface: lTopSplit
+  portsplit.botedge0:
+    interface: botedge0
+    subcomponent: portsplit
+  portsplit.botedge1:
+    interface: botedge1
+    subcomponent: portsplit
+  portsplit.botedge10:
+    interface: botedge10
+    subcomponent: portsplit
+  portsplit.botedge11:
+    interface: botedge11
+    subcomponent: portsplit
+  portsplit.botedge12:
+    interface: botedge12
+    subcomponent: portsplit
+  portsplit.botedge13:
+    interface: botedge13
+    subcomponent: portsplit
+  portsplit.botedge14:
+    interface: botedge14
+    subcomponent: portsplit
+  portsplit.botedge15:
+    interface: botedge15
+    subcomponent: portsplit
+  portsplit.botedge16:
+    interface: botedge16
+    subcomponent: portsplit
+  portsplit.botedge17:
+    interface: botedge17
+    subcomponent: portsplit
+  portsplit.botedge18:
+    interface: botedge18
+    subcomponent: portsplit
+  portsplit.botedge19:
+    interface: botedge19
+    subcomponent: portsplit
+  portsplit.botedge2:
+    interface: botedge2
+    subcomponent: portsplit
+  portsplit.botedge20:
+    interface: botedge20
+    subcomponent: portsplit
+  portsplit.botedge21:
+    interface: botedge21
+    subcomponent: portsplit
+  portsplit.botedge22:
+    interface: botedge22
+    subcomponent: portsplit
+  portsplit.botedge23:
+    interface: botedge23
+    subcomponent: portsplit
+  portsplit.botedge24:
+    interface: botedge24
+    subcomponent: portsplit
+  portsplit.botedge25:
+    interface: botedge25
+    subcomponent: portsplit
+  portsplit.botedge26:
+    interface: botedge26
+    subcomponent: portsplit
+  portsplit.botedge27:
+    interface: botedge27
+    subcomponent: portsplit
+  portsplit.botedge28:
+    interface: botedge28
+    subcomponent: portsplit
+  portsplit.botedge29:
+    interface: botedge29
+    subcomponent: portsplit
+  portsplit.botedge3:
+    interface: botedge3
+    subcomponent: portsplit
+  portsplit.botedge30:
+    interface: botedge30
+    subcomponent: portsplit
+  portsplit.botedge31:
+    interface: botedge31
+    subcomponent: portsplit
+  portsplit.botedge32:
+    interface: botedge32
+    subcomponent: portsplit
+  portsplit.botedge33:
+    interface: botedge33
+    subcomponent: portsplit
+  portsplit.botedge34:
+    interface: botedge34
+    subcomponent: portsplit
+  portsplit.botedge35:
+    interface: botedge35
+    subcomponent: portsplit
+  portsplit.botedge36:
+    interface: botedge36
+    subcomponent: portsplit
+  portsplit.botedge37:
+    interface: botedge37
+    subcomponent: portsplit
+  portsplit.botedge38:
+    interface: botedge38
+    subcomponent: portsplit
+  portsplit.botedge39:
+    interface: botedge39
+    subcomponent: portsplit
+  portsplit.botedge4:
+    interface: botedge4
+    subcomponent: portsplit
+  portsplit.botedge40:
+    interface: botedge40
+    subcomponent: portsplit
+  portsplit.botedge41:
+    interface: botedge41
+    subcomponent: portsplit
+  portsplit.botedge42:
+    interface: botedge42
+    subcomponent: portsplit
+  portsplit.botedge43:
+    interface: botedge43
+    subcomponent: portsplit
+  portsplit.botedge44:
+    interface: botedge44
+    subcomponent: portsplit
+  portsplit.botedge45:
+    interface: botedge45
+    subcomponent: portsplit
+  portsplit.botedge46:
+    interface: botedge46
+    subcomponent: portsplit
+  portsplit.botedge47:
+    interface: botedge47
+    subcomponent: portsplit
+  portsplit.botedge48:
+    interface: botedge48
+    subcomponent: portsplit
+  portsplit.botedge49:
+    interface: botedge49
+    subcomponent: portsplit
+  portsplit.botedge5:
+    interface: botedge5
+    subcomponent: portsplit
+  portsplit.botedge50:
+    interface: botedge50
+    subcomponent: portsplit
+  portsplit.botedge51:
+    interface: botedge51
+    subcomponent: portsplit
+  portsplit.botedge52:
+    interface: botedge52
+    subcomponent: portsplit
+  portsplit.botedge53:
+    interface: botedge53
+    subcomponent: portsplit
+  portsplit.botedge54:
+    interface: botedge54
+    subcomponent: portsplit
+  portsplit.botedge55:
+    interface: botedge55
+    subcomponent: portsplit
+  portsplit.botedge56:
+    interface: botedge56
+    subcomponent: portsplit
+  portsplit.botedge57:
+    interface: botedge57
+    subcomponent: portsplit
+  portsplit.botedge58:
+    interface: botedge58
+    subcomponent: portsplit
+  portsplit.botedge59:
+    interface: botedge59
+    subcomponent: portsplit
+  portsplit.botedge6:
+    interface: botedge6
+    subcomponent: portsplit
+  portsplit.botedge60:
+    interface: botedge60
+    subcomponent: portsplit
+  portsplit.botedge61:
+    interface: botedge61
+    subcomponent: portsplit
+  portsplit.botedge62:
+    interface: botedge62
+    subcomponent: portsplit
+  portsplit.botedge63:
+    interface: botedge63
+    subcomponent: portsplit
+  portsplit.botedge64:
+    interface: botedge64
+    subcomponent: portsplit
+  portsplit.botedge65:
+    interface: botedge65
+    subcomponent: portsplit
+  portsplit.botedge66:
+    interface: botedge66
+    subcomponent: portsplit
+  portsplit.botedge67:
+    interface: botedge67
+    subcomponent: portsplit
+  portsplit.botedge68:
+    interface: botedge68
+    subcomponent: portsplit
+  portsplit.botedge69:
+    interface: botedge69
+    subcomponent: portsplit
+  portsplit.botedge7:
+    interface: botedge7
+    subcomponent: portsplit
+  portsplit.botedge70:
+    interface: botedge70
+    subcomponent: portsplit
+  portsplit.botedge71:
+    interface: botedge71
+    subcomponent: portsplit
+  portsplit.botedge72:
+    interface: botedge72
+    subcomponent: portsplit
+  portsplit.botedge73:
+    interface: botedge73
+    subcomponent: portsplit
+  portsplit.botedge74:
+    interface: botedge74
+    subcomponent: portsplit
+  portsplit.botedge75:
+    interface: botedge75
+    subcomponent: portsplit
+  portsplit.botedge76:
+    interface: botedge76
+    subcomponent: portsplit
+  portsplit.botedge77:
+    interface: botedge77
+    subcomponent: portsplit
+  portsplit.botedge78:
+    interface: botedge78
+    subcomponent: portsplit
+  portsplit.botedge79:
+    interface: botedge79
+    subcomponent: portsplit
+  portsplit.botedge8:
+    interface: botedge8
+    subcomponent: portsplit
+  portsplit.botedge80:
+    interface: botedge80
+    subcomponent: portsplit
+  portsplit.botedge81:
+    interface: botedge81
+    subcomponent: portsplit
+  portsplit.botedge82:
+    interface: botedge82
+    subcomponent: portsplit
+  portsplit.botedge83:
+    interface: botedge83
+    subcomponent: portsplit
+  portsplit.botedge84:
+    interface: botedge84
+    subcomponent: portsplit
+  portsplit.botedge85:
+    interface: botedge85
+    subcomponent: portsplit
+  portsplit.botedge86:
+    interface: botedge86
+    subcomponent: portsplit
+  portsplit.botedge87:
+    interface: botedge87
+    subcomponent: portsplit
+  portsplit.botedge88:
+    interface: botedge88
+    subcomponent: portsplit
+  portsplit.botedge89:
+    interface: botedge89
+    subcomponent: portsplit
+  portsplit.botedge9:
+    interface: botedge9
+    subcomponent: portsplit
+  portsplit.botedge90:
+    interface: botedge90
+    subcomponent: portsplit
+  portsplit.botedge91:
+    interface: botedge91
+    subcomponent: portsplit
+  portsplit.botedge92:
+    interface: botedge92
+    subcomponent: portsplit
+  portsplit.botedge93:
+    interface: botedge93
+    subcomponent: portsplit
+  portsplit.botedge94:
+    interface: botedge94
+    subcomponent: portsplit
+  portsplit.botedge95:
+    interface: botedge95
+    subcomponent: portsplit
+  portsplit.botedge96:
+    interface: botedge96
+    subcomponent: portsplit
+  portsplit.botedge97:
+    interface: botedge97
+    subcomponent: portsplit
+  portsplit.botedge98:
+    interface: botedge98
+    subcomponent: portsplit
+  portsplit.botedge99:
+    interface: botedge99
+    subcomponent: portsplit
+  portsplit.topedge0:
+    interface: topedge0
+    subcomponent: portsplit
+  portsplit.topedge1:
+    interface: topedge1
+    subcomponent: portsplit
+  portsplit.topedge10:
+    interface: topedge10
+    subcomponent: portsplit
+  portsplit.topedge11:
+    interface: topedge11
+    subcomponent: portsplit
+  portsplit.topedge12:
+    interface: topedge12
+    subcomponent: portsplit
+  portsplit.topedge13:
+    interface: topedge13
+    subcomponent: portsplit
+  portsplit.topedge14:
+    interface: topedge14
+    subcomponent: portsplit
+  portsplit.topedge15:
+    interface: topedge15
+    subcomponent: portsplit
+  portsplit.topedge16:
+    interface: topedge16
+    subcomponent: portsplit
+  portsplit.topedge17:
+    interface: topedge17
+    subcomponent: portsplit
+  portsplit.topedge18:
+    interface: topedge18
+    subcomponent: portsplit
+  portsplit.topedge19:
+    interface: topedge19
+    subcomponent: portsplit
+  portsplit.topedge2:
+    interface: topedge2
+    subcomponent: portsplit
+  portsplit.topedge20:
+    interface: topedge20
+    subcomponent: portsplit
+  portsplit.topedge21:
+    interface: topedge21
+    subcomponent: portsplit
+  portsplit.topedge22:
+    interface: topedge22
+    subcomponent: portsplit
+  portsplit.topedge23:
+    interface: topedge23
+    subcomponent: portsplit
+  portsplit.topedge24:
+    interface: topedge24
+    subcomponent: portsplit
+  portsplit.topedge25:
+    interface: topedge25
+    subcomponent: portsplit
+  portsplit.topedge26:
+    interface: topedge26
+    subcomponent: portsplit
+  portsplit.topedge27:
+    interface: topedge27
+    subcomponent: portsplit
+  portsplit.topedge28:
+    interface: topedge28
+    subcomponent: portsplit
+  portsplit.topedge29:
+    interface: topedge29
+    subcomponent: portsplit
+  portsplit.topedge3:
+    interface: topedge3
+    subcomponent: portsplit
+  portsplit.topedge30:
+    interface: topedge30
+    subcomponent: portsplit
+  portsplit.topedge31:
+    interface: topedge31
+    subcomponent: portsplit
+  portsplit.topedge32:
+    interface: topedge32
+    subcomponent: portsplit
+  portsplit.topedge33:
+    interface: topedge33
+    subcomponent: portsplit
+  portsplit.topedge34:
+    interface: topedge34
+    subcomponent: portsplit
+  portsplit.topedge35:
+    interface: topedge35
+    subcomponent: portsplit
+  portsplit.topedge36:
+    interface: topedge36
+    subcomponent: portsplit
+  portsplit.topedge37:
+    interface: topedge37
+    subcomponent: portsplit
+  portsplit.topedge38:
+    interface: topedge38
+    subcomponent: portsplit
+  portsplit.topedge39:
+    interface: topedge39
+    subcomponent: portsplit
+  portsplit.topedge4:
+    interface: topedge4
+    subcomponent: portsplit
+  portsplit.topedge40:
+    interface: topedge40
+    subcomponent: portsplit
+  portsplit.topedge41:
+    interface: topedge41
+    subcomponent: portsplit
+  portsplit.topedge42:
+    interface: topedge42
+    subcomponent: portsplit
+  portsplit.topedge43:
+    interface: topedge43
+    subcomponent: portsplit
+  portsplit.topedge44:
+    interface: topedge44
+    subcomponent: portsplit
+  portsplit.topedge45:
+    interface: topedge45
+    subcomponent: portsplit
+  portsplit.topedge46:
+    interface: topedge46
+    subcomponent: portsplit
+  portsplit.topedge47:
+    interface: topedge47
+    subcomponent: portsplit
+  portsplit.topedge48:
+    interface: topedge48
+    subcomponent: portsplit
+  portsplit.topedge49:
+    interface: topedge49
+    subcomponent: portsplit
+  portsplit.topedge5:
+    interface: topedge5
+    subcomponent: portsplit
+  portsplit.topedge50:
+    interface: topedge50
+    subcomponent: portsplit
+  portsplit.topedge51:
+    interface: topedge51
+    subcomponent: portsplit
+  portsplit.topedge52:
+    interface: topedge52
+    subcomponent: portsplit
+  portsplit.topedge53:
+    interface: topedge53
+    subcomponent: portsplit
+  portsplit.topedge54:
+    interface: topedge54
+    subcomponent: portsplit
+  portsplit.topedge55:
+    interface: topedge55
+    subcomponent: portsplit
+  portsplit.topedge56:
+    interface: topedge56
+    subcomponent: portsplit
+  portsplit.topedge57:
+    interface: topedge57
+    subcomponent: portsplit
+  portsplit.topedge58:
+    interface: topedge58
+    subcomponent: portsplit
+  portsplit.topedge59:
+    interface: topedge59
+    subcomponent: portsplit
+  portsplit.topedge6:
+    interface: topedge6
+    subcomponent: portsplit
+  portsplit.topedge60:
+    interface: topedge60
+    subcomponent: portsplit
+  portsplit.topedge61:
+    interface: topedge61
+    subcomponent: portsplit
+  portsplit.topedge62:
+    interface: topedge62
+    subcomponent: portsplit
+  portsplit.topedge63:
+    interface: topedge63
+    subcomponent: portsplit
+  portsplit.topedge64:
+    interface: topedge64
+    subcomponent: portsplit
+  portsplit.topedge65:
+    interface: topedge65
+    subcomponent: portsplit
+  portsplit.topedge66:
+    interface: topedge66
+    subcomponent: portsplit
+  portsplit.topedge67:
+    interface: topedge67
+    subcomponent: portsplit
+  portsplit.topedge68:
+    interface: topedge68
+    subcomponent: portsplit
+  portsplit.topedge69:
+    interface: topedge69
+    subcomponent: portsplit
+  portsplit.topedge7:
+    interface: topedge7
+    subcomponent: portsplit
+  portsplit.topedge70:
+    interface: topedge70
+    subcomponent: portsplit
+  portsplit.topedge71:
+    interface: topedge71
+    subcomponent: portsplit
+  portsplit.topedge72:
+    interface: topedge72
+    subcomponent: portsplit
+  portsplit.topedge73:
+    interface: topedge73
+    subcomponent: portsplit
+  portsplit.topedge74:
+    interface: topedge74
+    subcomponent: portsplit
+  portsplit.topedge75:
+    interface: topedge75
+    subcomponent: portsplit
+  portsplit.topedge76:
+    interface: topedge76
+    subcomponent: portsplit
+  portsplit.topedge77:
+    interface: topedge77
+    subcomponent: portsplit
+  portsplit.topedge78:
+    interface: topedge78
+    subcomponent: portsplit
+  portsplit.topedge79:
+    interface: topedge79
+    subcomponent: portsplit
+  portsplit.topedge8:
+    interface: topedge8
+    subcomponent: portsplit
+  portsplit.topedge80:
+    interface: topedge80
+    subcomponent: portsplit
+  portsplit.topedge81:
+    interface: topedge81
+    subcomponent: portsplit
+  portsplit.topedge82:
+    interface: topedge82
+    subcomponent: portsplit
+  portsplit.topedge83:
+    interface: topedge83
+    subcomponent: portsplit
+  portsplit.topedge84:
+    interface: topedge84
+    subcomponent: portsplit
+  portsplit.topedge85:
+    interface: topedge85
+    subcomponent: portsplit
+  portsplit.topedge86:
+    interface: topedge86
+    subcomponent: portsplit
+  portsplit.topedge87:
+    interface: topedge87
+    subcomponent: portsplit
+  portsplit.topedge88:
+    interface: topedge88
+    subcomponent: portsplit
+  portsplit.topedge89:
+    interface: topedge89
+    subcomponent: portsplit
+  portsplit.topedge9:
+    interface: topedge9
+    subcomponent: portsplit
+  portsplit.topedge90:
+    interface: topedge90
+    subcomponent: portsplit
+  portsplit.topedge91:
+    interface: topedge91
+    subcomponent: portsplit
+  portsplit.topedge92:
+    interface: topedge92
+    subcomponent: portsplit
+  portsplit.topedge93:
+    interface: topedge93
+    subcomponent: portsplit
+  portsplit.topedge94:
+    interface: topedge94
+    subcomponent: portsplit
+  portsplit.topedge95:
+    interface: topedge95
+    subcomponent: portsplit
+  portsplit.topedge96:
+    interface: topedge96
+    subcomponent: portsplit
+  portsplit.topedge97:
+    interface: topedge97
+    subcomponent: portsplit
+  portsplit.topedge98:
+    interface: topedge98
+    subcomponent: portsplit
+  portsplit.topedge99:
+    interface: topedge99
+    subcomponent: portsplit
+  servostackbattery.batterymount.leftArmInterface:
+    interface: batterymount.leftArmInterface
+    subcomponent: servostackbattery
+  servostackbattery.batterymount.rightArmInterface:
+    interface: batterymount.rightArmInterface
     subcomponent: servostackbattery
   servostackbattery.lfullsplit.botedge0:
     interface: lfullsplit.botedge0
@@ -627,8 +1236,8 @@ interfaces:
   servostackbattery.lfullsplit.topedge99:
     interface: lfullsplit.topedge99
     subcomponent: servostackbattery
-  servostackbattery.rTopSplit:
-    interface: rTopSplit
+  servostackbattery.lservostackbatterysplit:
+    interface: lservostackbatterysplit
     subcomponent: servostackbattery
   servostackbattery.rfullsplit.botedge0:
     interface: rfullsplit.botedge0
@@ -1230,6 +1839,9 @@ interfaces:
   servostackbattery.rfullsplit.topedge99:
     interface: rfullsplit.topedge99
     subcomponent: servostackbattery
+  servostackbattery.rservostackbatterysplit:
+    interface: rservostackbatterysplit
+    subcomponent: servostackbattery
   servostackbattery.servosandstack.doubleServoMount.lServoInterface:
     interface: servosandstack.doubleServoMount.lServoInterface
     subcomponent: servostackbattery
@@ -1248,8 +1860,14 @@ interfaces:
   servostackbattery.servosandstack.doubleServoMount.rServoMount.rightInterface:
     interface: servosandstack.doubleServoMount.rServoMount.rightInterface
     subcomponent: servostackbattery
-  servostackbattery.servosandstack.lmountandservosplit:
-    interface: servosandstack.lmountandservosplit
+  servostackbattery.servosandstack.espStack.leftArmInterface:
+    interface: servosandstack.espStack.leftArmInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.espStack.rightArmInterface:
+    interface: servosandstack.espStack.rightArmInterface
+    subcomponent: servostackbattery
+  servostackbattery.servosandstack.lservostacksplit:
+    interface: servosandstack.lservostacksplit
     subcomponent: servostackbattery
   servostackbattery.servosandstack.portsplit.botedge0:
     interface: servosandstack.portsplit.botedge0
@@ -1851,8 +2469,8 @@ interfaces:
   servostackbattery.servosandstack.portsplit.topedge99:
     interface: servosandstack.portsplit.topedge99
     subcomponent: servostackbattery
-  servostackbattery.servosandstack.rmountandservosplit:
-    interface: servosandstack.rmountandservosplit
+  servostackbattery.servosandstack.rservostacksplit:
+    interface: servosandstack.rservostacksplit
     subcomponent: servostackbattery
   servostackbattery.servosandstack.starsplit.botedge0:
     interface: servosandstack.starsplit.botedge0
@@ -2454,6 +3072,606 @@ interfaces:
   servostackbattery.servosandstack.starsplit.topedge99:
     interface: servosandstack.starsplit.topedge99
     subcomponent: servostackbattery
+  starsplit.botedge0:
+    interface: botedge0
+    subcomponent: starsplit
+  starsplit.botedge1:
+    interface: botedge1
+    subcomponent: starsplit
+  starsplit.botedge10:
+    interface: botedge10
+    subcomponent: starsplit
+  starsplit.botedge11:
+    interface: botedge11
+    subcomponent: starsplit
+  starsplit.botedge12:
+    interface: botedge12
+    subcomponent: starsplit
+  starsplit.botedge13:
+    interface: botedge13
+    subcomponent: starsplit
+  starsplit.botedge14:
+    interface: botedge14
+    subcomponent: starsplit
+  starsplit.botedge15:
+    interface: botedge15
+    subcomponent: starsplit
+  starsplit.botedge16:
+    interface: botedge16
+    subcomponent: starsplit
+  starsplit.botedge17:
+    interface: botedge17
+    subcomponent: starsplit
+  starsplit.botedge18:
+    interface: botedge18
+    subcomponent: starsplit
+  starsplit.botedge19:
+    interface: botedge19
+    subcomponent: starsplit
+  starsplit.botedge2:
+    interface: botedge2
+    subcomponent: starsplit
+  starsplit.botedge20:
+    interface: botedge20
+    subcomponent: starsplit
+  starsplit.botedge21:
+    interface: botedge21
+    subcomponent: starsplit
+  starsplit.botedge22:
+    interface: botedge22
+    subcomponent: starsplit
+  starsplit.botedge23:
+    interface: botedge23
+    subcomponent: starsplit
+  starsplit.botedge24:
+    interface: botedge24
+    subcomponent: starsplit
+  starsplit.botedge25:
+    interface: botedge25
+    subcomponent: starsplit
+  starsplit.botedge26:
+    interface: botedge26
+    subcomponent: starsplit
+  starsplit.botedge27:
+    interface: botedge27
+    subcomponent: starsplit
+  starsplit.botedge28:
+    interface: botedge28
+    subcomponent: starsplit
+  starsplit.botedge29:
+    interface: botedge29
+    subcomponent: starsplit
+  starsplit.botedge3:
+    interface: botedge3
+    subcomponent: starsplit
+  starsplit.botedge30:
+    interface: botedge30
+    subcomponent: starsplit
+  starsplit.botedge31:
+    interface: botedge31
+    subcomponent: starsplit
+  starsplit.botedge32:
+    interface: botedge32
+    subcomponent: starsplit
+  starsplit.botedge33:
+    interface: botedge33
+    subcomponent: starsplit
+  starsplit.botedge34:
+    interface: botedge34
+    subcomponent: starsplit
+  starsplit.botedge35:
+    interface: botedge35
+    subcomponent: starsplit
+  starsplit.botedge36:
+    interface: botedge36
+    subcomponent: starsplit
+  starsplit.botedge37:
+    interface: botedge37
+    subcomponent: starsplit
+  starsplit.botedge38:
+    interface: botedge38
+    subcomponent: starsplit
+  starsplit.botedge39:
+    interface: botedge39
+    subcomponent: starsplit
+  starsplit.botedge4:
+    interface: botedge4
+    subcomponent: starsplit
+  starsplit.botedge40:
+    interface: botedge40
+    subcomponent: starsplit
+  starsplit.botedge41:
+    interface: botedge41
+    subcomponent: starsplit
+  starsplit.botedge42:
+    interface: botedge42
+    subcomponent: starsplit
+  starsplit.botedge43:
+    interface: botedge43
+    subcomponent: starsplit
+  starsplit.botedge44:
+    interface: botedge44
+    subcomponent: starsplit
+  starsplit.botedge45:
+    interface: botedge45
+    subcomponent: starsplit
+  starsplit.botedge46:
+    interface: botedge46
+    subcomponent: starsplit
+  starsplit.botedge47:
+    interface: botedge47
+    subcomponent: starsplit
+  starsplit.botedge48:
+    interface: botedge48
+    subcomponent: starsplit
+  starsplit.botedge49:
+    interface: botedge49
+    subcomponent: starsplit
+  starsplit.botedge5:
+    interface: botedge5
+    subcomponent: starsplit
+  starsplit.botedge50:
+    interface: botedge50
+    subcomponent: starsplit
+  starsplit.botedge51:
+    interface: botedge51
+    subcomponent: starsplit
+  starsplit.botedge52:
+    interface: botedge52
+    subcomponent: starsplit
+  starsplit.botedge53:
+    interface: botedge53
+    subcomponent: starsplit
+  starsplit.botedge54:
+    interface: botedge54
+    subcomponent: starsplit
+  starsplit.botedge55:
+    interface: botedge55
+    subcomponent: starsplit
+  starsplit.botedge56:
+    interface: botedge56
+    subcomponent: starsplit
+  starsplit.botedge57:
+    interface: botedge57
+    subcomponent: starsplit
+  starsplit.botedge58:
+    interface: botedge58
+    subcomponent: starsplit
+  starsplit.botedge59:
+    interface: botedge59
+    subcomponent: starsplit
+  starsplit.botedge6:
+    interface: botedge6
+    subcomponent: starsplit
+  starsplit.botedge60:
+    interface: botedge60
+    subcomponent: starsplit
+  starsplit.botedge61:
+    interface: botedge61
+    subcomponent: starsplit
+  starsplit.botedge62:
+    interface: botedge62
+    subcomponent: starsplit
+  starsplit.botedge63:
+    interface: botedge63
+    subcomponent: starsplit
+  starsplit.botedge64:
+    interface: botedge64
+    subcomponent: starsplit
+  starsplit.botedge65:
+    interface: botedge65
+    subcomponent: starsplit
+  starsplit.botedge66:
+    interface: botedge66
+    subcomponent: starsplit
+  starsplit.botedge67:
+    interface: botedge67
+    subcomponent: starsplit
+  starsplit.botedge68:
+    interface: botedge68
+    subcomponent: starsplit
+  starsplit.botedge69:
+    interface: botedge69
+    subcomponent: starsplit
+  starsplit.botedge7:
+    interface: botedge7
+    subcomponent: starsplit
+  starsplit.botedge70:
+    interface: botedge70
+    subcomponent: starsplit
+  starsplit.botedge71:
+    interface: botedge71
+    subcomponent: starsplit
+  starsplit.botedge72:
+    interface: botedge72
+    subcomponent: starsplit
+  starsplit.botedge73:
+    interface: botedge73
+    subcomponent: starsplit
+  starsplit.botedge74:
+    interface: botedge74
+    subcomponent: starsplit
+  starsplit.botedge75:
+    interface: botedge75
+    subcomponent: starsplit
+  starsplit.botedge76:
+    interface: botedge76
+    subcomponent: starsplit
+  starsplit.botedge77:
+    interface: botedge77
+    subcomponent: starsplit
+  starsplit.botedge78:
+    interface: botedge78
+    subcomponent: starsplit
+  starsplit.botedge79:
+    interface: botedge79
+    subcomponent: starsplit
+  starsplit.botedge8:
+    interface: botedge8
+    subcomponent: starsplit
+  starsplit.botedge80:
+    interface: botedge80
+    subcomponent: starsplit
+  starsplit.botedge81:
+    interface: botedge81
+    subcomponent: starsplit
+  starsplit.botedge82:
+    interface: botedge82
+    subcomponent: starsplit
+  starsplit.botedge83:
+    interface: botedge83
+    subcomponent: starsplit
+  starsplit.botedge84:
+    interface: botedge84
+    subcomponent: starsplit
+  starsplit.botedge85:
+    interface: botedge85
+    subcomponent: starsplit
+  starsplit.botedge86:
+    interface: botedge86
+    subcomponent: starsplit
+  starsplit.botedge87:
+    interface: botedge87
+    subcomponent: starsplit
+  starsplit.botedge88:
+    interface: botedge88
+    subcomponent: starsplit
+  starsplit.botedge89:
+    interface: botedge89
+    subcomponent: starsplit
+  starsplit.botedge9:
+    interface: botedge9
+    subcomponent: starsplit
+  starsplit.botedge90:
+    interface: botedge90
+    subcomponent: starsplit
+  starsplit.botedge91:
+    interface: botedge91
+    subcomponent: starsplit
+  starsplit.botedge92:
+    interface: botedge92
+    subcomponent: starsplit
+  starsplit.botedge93:
+    interface: botedge93
+    subcomponent: starsplit
+  starsplit.botedge94:
+    interface: botedge94
+    subcomponent: starsplit
+  starsplit.botedge95:
+    interface: botedge95
+    subcomponent: starsplit
+  starsplit.botedge96:
+    interface: botedge96
+    subcomponent: starsplit
+  starsplit.botedge97:
+    interface: botedge97
+    subcomponent: starsplit
+  starsplit.botedge98:
+    interface: botedge98
+    subcomponent: starsplit
+  starsplit.botedge99:
+    interface: botedge99
+    subcomponent: starsplit
+  starsplit.topedge0:
+    interface: topedge0
+    subcomponent: starsplit
+  starsplit.topedge1:
+    interface: topedge1
+    subcomponent: starsplit
+  starsplit.topedge10:
+    interface: topedge10
+    subcomponent: starsplit
+  starsplit.topedge11:
+    interface: topedge11
+    subcomponent: starsplit
+  starsplit.topedge12:
+    interface: topedge12
+    subcomponent: starsplit
+  starsplit.topedge13:
+    interface: topedge13
+    subcomponent: starsplit
+  starsplit.topedge14:
+    interface: topedge14
+    subcomponent: starsplit
+  starsplit.topedge15:
+    interface: topedge15
+    subcomponent: starsplit
+  starsplit.topedge16:
+    interface: topedge16
+    subcomponent: starsplit
+  starsplit.topedge17:
+    interface: topedge17
+    subcomponent: starsplit
+  starsplit.topedge18:
+    interface: topedge18
+    subcomponent: starsplit
+  starsplit.topedge19:
+    interface: topedge19
+    subcomponent: starsplit
+  starsplit.topedge2:
+    interface: topedge2
+    subcomponent: starsplit
+  starsplit.topedge20:
+    interface: topedge20
+    subcomponent: starsplit
+  starsplit.topedge21:
+    interface: topedge21
+    subcomponent: starsplit
+  starsplit.topedge22:
+    interface: topedge22
+    subcomponent: starsplit
+  starsplit.topedge23:
+    interface: topedge23
+    subcomponent: starsplit
+  starsplit.topedge24:
+    interface: topedge24
+    subcomponent: starsplit
+  starsplit.topedge25:
+    interface: topedge25
+    subcomponent: starsplit
+  starsplit.topedge26:
+    interface: topedge26
+    subcomponent: starsplit
+  starsplit.topedge27:
+    interface: topedge27
+    subcomponent: starsplit
+  starsplit.topedge28:
+    interface: topedge28
+    subcomponent: starsplit
+  starsplit.topedge29:
+    interface: topedge29
+    subcomponent: starsplit
+  starsplit.topedge3:
+    interface: topedge3
+    subcomponent: starsplit
+  starsplit.topedge30:
+    interface: topedge30
+    subcomponent: starsplit
+  starsplit.topedge31:
+    interface: topedge31
+    subcomponent: starsplit
+  starsplit.topedge32:
+    interface: topedge32
+    subcomponent: starsplit
+  starsplit.topedge33:
+    interface: topedge33
+    subcomponent: starsplit
+  starsplit.topedge34:
+    interface: topedge34
+    subcomponent: starsplit
+  starsplit.topedge35:
+    interface: topedge35
+    subcomponent: starsplit
+  starsplit.topedge36:
+    interface: topedge36
+    subcomponent: starsplit
+  starsplit.topedge37:
+    interface: topedge37
+    subcomponent: starsplit
+  starsplit.topedge38:
+    interface: topedge38
+    subcomponent: starsplit
+  starsplit.topedge39:
+    interface: topedge39
+    subcomponent: starsplit
+  starsplit.topedge4:
+    interface: topedge4
+    subcomponent: starsplit
+  starsplit.topedge40:
+    interface: topedge40
+    subcomponent: starsplit
+  starsplit.topedge41:
+    interface: topedge41
+    subcomponent: starsplit
+  starsplit.topedge42:
+    interface: topedge42
+    subcomponent: starsplit
+  starsplit.topedge43:
+    interface: topedge43
+    subcomponent: starsplit
+  starsplit.topedge44:
+    interface: topedge44
+    subcomponent: starsplit
+  starsplit.topedge45:
+    interface: topedge45
+    subcomponent: starsplit
+  starsplit.topedge46:
+    interface: topedge46
+    subcomponent: starsplit
+  starsplit.topedge47:
+    interface: topedge47
+    subcomponent: starsplit
+  starsplit.topedge48:
+    interface: topedge48
+    subcomponent: starsplit
+  starsplit.topedge49:
+    interface: topedge49
+    subcomponent: starsplit
+  starsplit.topedge5:
+    interface: topedge5
+    subcomponent: starsplit
+  starsplit.topedge50:
+    interface: topedge50
+    subcomponent: starsplit
+  starsplit.topedge51:
+    interface: topedge51
+    subcomponent: starsplit
+  starsplit.topedge52:
+    interface: topedge52
+    subcomponent: starsplit
+  starsplit.topedge53:
+    interface: topedge53
+    subcomponent: starsplit
+  starsplit.topedge54:
+    interface: topedge54
+    subcomponent: starsplit
+  starsplit.topedge55:
+    interface: topedge55
+    subcomponent: starsplit
+  starsplit.topedge56:
+    interface: topedge56
+    subcomponent: starsplit
+  starsplit.topedge57:
+    interface: topedge57
+    subcomponent: starsplit
+  starsplit.topedge58:
+    interface: topedge58
+    subcomponent: starsplit
+  starsplit.topedge59:
+    interface: topedge59
+    subcomponent: starsplit
+  starsplit.topedge6:
+    interface: topedge6
+    subcomponent: starsplit
+  starsplit.topedge60:
+    interface: topedge60
+    subcomponent: starsplit
+  starsplit.topedge61:
+    interface: topedge61
+    subcomponent: starsplit
+  starsplit.topedge62:
+    interface: topedge62
+    subcomponent: starsplit
+  starsplit.topedge63:
+    interface: topedge63
+    subcomponent: starsplit
+  starsplit.topedge64:
+    interface: topedge64
+    subcomponent: starsplit
+  starsplit.topedge65:
+    interface: topedge65
+    subcomponent: starsplit
+  starsplit.topedge66:
+    interface: topedge66
+    subcomponent: starsplit
+  starsplit.topedge67:
+    interface: topedge67
+    subcomponent: starsplit
+  starsplit.topedge68:
+    interface: topedge68
+    subcomponent: starsplit
+  starsplit.topedge69:
+    interface: topedge69
+    subcomponent: starsplit
+  starsplit.topedge7:
+    interface: topedge7
+    subcomponent: starsplit
+  starsplit.topedge70:
+    interface: topedge70
+    subcomponent: starsplit
+  starsplit.topedge71:
+    interface: topedge71
+    subcomponent: starsplit
+  starsplit.topedge72:
+    interface: topedge72
+    subcomponent: starsplit
+  starsplit.topedge73:
+    interface: topedge73
+    subcomponent: starsplit
+  starsplit.topedge74:
+    interface: topedge74
+    subcomponent: starsplit
+  starsplit.topedge75:
+    interface: topedge75
+    subcomponent: starsplit
+  starsplit.topedge76:
+    interface: topedge76
+    subcomponent: starsplit
+  starsplit.topedge77:
+    interface: topedge77
+    subcomponent: starsplit
+  starsplit.topedge78:
+    interface: topedge78
+    subcomponent: starsplit
+  starsplit.topedge79:
+    interface: topedge79
+    subcomponent: starsplit
+  starsplit.topedge8:
+    interface: topedge8
+    subcomponent: starsplit
+  starsplit.topedge80:
+    interface: topedge80
+    subcomponent: starsplit
+  starsplit.topedge81:
+    interface: topedge81
+    subcomponent: starsplit
+  starsplit.topedge82:
+    interface: topedge82
+    subcomponent: starsplit
+  starsplit.topedge83:
+    interface: topedge83
+    subcomponent: starsplit
+  starsplit.topedge84:
+    interface: topedge84
+    subcomponent: starsplit
+  starsplit.topedge85:
+    interface: topedge85
+    subcomponent: starsplit
+  starsplit.topedge86:
+    interface: topedge86
+    subcomponent: starsplit
+  starsplit.topedge87:
+    interface: topedge87
+    subcomponent: starsplit
+  starsplit.topedge88:
+    interface: topedge88
+    subcomponent: starsplit
+  starsplit.topedge89:
+    interface: topedge89
+    subcomponent: starsplit
+  starsplit.topedge9:
+    interface: topedge9
+    subcomponent: starsplit
+  starsplit.topedge90:
+    interface: topedge90
+    subcomponent: starsplit
+  starsplit.topedge91:
+    interface: topedge91
+    subcomponent: starsplit
+  starsplit.topedge92:
+    interface: topedge92
+    subcomponent: starsplit
+  starsplit.topedge93:
+    interface: topedge93
+    subcomponent: starsplit
+  starsplit.topedge94:
+    interface: topedge94
+    subcomponent: starsplit
+  starsplit.topedge95:
+    interface: topedge95
+    subcomponent: starsplit
+  starsplit.topedge96:
+    interface: topedge96
+    subcomponent: starsplit
+  starsplit.topedge97:
+    interface: topedge97
+    subcomponent: starsplit
+  starsplit.topedge98:
+    interface: topedge98
+    subcomponent: starsplit
+  starsplit.topedge99:
+    interface: topedge99
+    subcomponent: starsplit
 parameters:
   boat.bow.point:
     defaultValue: 50
@@ -2498,7 +3716,7 @@ parameters:
       units: mm
       valueType: (float, int)
   length:
-    defaultValue: 228
+    defaultValue: 169
     spec:
       minValue: 0
       units: mm
@@ -2531,7 +3749,24 @@ subcomponents:
         parameter: boat.bow.point
       stern.point:
         parameter: boat.stern.point
+  portsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+      - 61
+      - 108
+      toplength: &id001
+      - 169
   servostackbattery:
     classname: ServoStackBatteryMount
     kwargs: {}
     parameters: {}
+  starsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+      - 108
+      - 61
+      toplength: *id001
diff --git a/rocolib/library/ServoStackBatteryMount.yaml b/rocolib/library/ServoStackBatteryMount.yaml
index 1959e5b8030eb484a1581206ec765d57b98952d5..c65cccc21d7c218c4058c843497180e4af747d9c 100644
--- a/rocolib/library/ServoStackBatteryMount.yaml
+++ b/rocolib/library/ServoStackBatteryMount.yaml
@@ -1,38 +1,35 @@
 connections:
   connection0:
   - - lfullsplit
-    - botedge1
-  - - batterystackmount
-    - rightArmInterface
-  - tabWidth: 10
-  connection1:
-  - - lfullsplit
-    - botedge0
+    - topedge0
   - - servosandstack
-    - lmountandservosplit
+    - lservostacksplit
   - {}
+  connection1:
+  - - batterymount
+    - rightArmInterface
+  - - lfullsplit
+    - botedge1
+  - tabWidth: 10
   connection2:
   - - rfullsplit
-    - botedge0
-  - - batterystackmount
-    - leftArmInterface
+    - topedge0
+  - - servosandstack
+    - rservostacksplit
   - {}
   connection3:
+  - - batterymount
+    - leftArmInterface
   - - rfullsplit
-    - botedge1
-  - - servosandstack
-    - rmountandservosplit
-  - {}
+    - botedge0
+  - tabWidth: 10
 interfaces:
-  batterystackmount.leftArmInterface:
+  batterymount.leftArmInterface:
     interface: leftArmInterface
-    subcomponent: batterystackmount
-  batterystackmount.rightArmInterface:
+    subcomponent: batterymount
+  batterymount.rightArmInterface:
     interface: rightArmInterface
-    subcomponent: batterystackmount
-  lTopSplit:
-    interface: topedge0
-    subcomponent: lfullsplit
+    subcomponent: batterymount
   lfullsplit.botedge0:
     interface: botedge0
     subcomponent: lfullsplit
@@ -633,9 +630,9 @@ interfaces:
   lfullsplit.topedge99:
     interface: topedge99
     subcomponent: lfullsplit
-  rTopSplit:
-    interface: topedge0
-    subcomponent: rfullsplit
+  lservostackbatterysplit:
+    interface: botedge0
+    subcomponent: lfullsplit
   rfullsplit.botedge0:
     interface: botedge0
     subcomponent: rfullsplit
@@ -1236,6 +1233,9 @@ interfaces:
   rfullsplit.topedge99:
     interface: topedge99
     subcomponent: rfullsplit
+  rservostackbatterysplit:
+    interface: botedge1
+    subcomponent: rfullsplit
   servosandstack.doubleServoMount.lServoInterface:
     interface: doubleServoMount.lServoInterface
     subcomponent: servosandstack
@@ -1260,8 +1260,8 @@ interfaces:
   servosandstack.espStack.rightArmInterface:
     interface: espStack.rightArmInterface
     subcomponent: servosandstack
-  servosandstack.lmountandservosplit:
-    interface: lmountandservosplit
+  servosandstack.lservostacksplit:
+    interface: lservostacksplit
     subcomponent: servosandstack
   servosandstack.portsplit.botedge0:
     interface: portsplit.botedge0
@@ -1863,8 +1863,8 @@ interfaces:
   servosandstack.portsplit.topedge99:
     interface: portsplit.topedge99
     subcomponent: servosandstack
-  servosandstack.rmountandservosplit:
-    interface: rmountandservosplit
+  servosandstack.rservostacksplit:
+    interface: rservostacksplit
     subcomponent: servosandstack
   servosandstack.starsplit.botedge0:
     interface: starsplit.botedge0
@@ -2467,18 +2467,6 @@ interfaces:
     interface: starsplit.topedge99
     subcomponent: servosandstack
 parameters:
-  batterystackmount.batterylength:
-    defaultValue: 60
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
-  batterystackmount.length:
-    defaultValue: 100
-    spec:
-      minValue: 0
-      units: mm
-      valueType: (float, int)
   lServoMount.depth:
     defaultValue: 24
     spec:
@@ -2589,14 +2577,10 @@ parameters:
       valueType: (float, int)
 source: ../builders/boat/mounts/ServoStackBatteryMountBuilder.py
 subcomponents:
-  batterystackmount:
-    classname: BatteryStackMount
+  batterymount:
+    classname: BatteryMount
     kwargs: {}
-    parameters:
-      batterylength:
-        parameter: batterystackmount.batterylength
-      length:
-        parameter: batterystackmount.length
+    parameters: {}
   lfullsplit:
     classname: SplitEdge
     kwargs: {}
@@ -2616,14 +2600,13 @@ subcomponents:
       _q_k:
         parameter: lfullsplit._q_k
       botlength:
-        function: (x[0]*2+x[1]*2+10*2+x[2], x[3])
+        function: (x[0]*2+x[1]*2+10*2, x[2])
         parameter: &id001
         - lServoMount.depth
         - lServoMount.width
         - stack.length
-        - batterystackmount.batterylength
       toplength:
-        function: (x[0]*2+x[1]*2+10*2+x[2]+x[3],)
+        function: (x[0]*2+x[1]*2+10*2+x[2],)
         parameter: *id001
       width:
         parameter: lfullsplit.width
@@ -2646,15 +2629,15 @@ subcomponents:
       _q_k:
         parameter: rfullsplit._q_k
       botlength:
-        function: (x[3], x[0]*2+x[1]*2+10*2+x[2])
+        function: (x[2], x[0]*2+x[1]*2+10*2)
         parameter: *id001
       toplength:
-        function: (x[0]*2+x[1]*2+10*2+x[2]+x[3],)
+        function: (x[0]*2+x[1]*2+10*2+x[2],)
         parameter: *id001
       width:
         parameter: rfullsplit.width
   servosandstack:
-    classname: ServoMountAndStack
+    classname: ServoStackMount
     kwargs: {}
     parameters:
       lServoMount.depth:
diff --git a/rocolib/library/ServoStackMount.yaml b/rocolib/library/ServoStackMount.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..8ecd52b9fe75ef1dd82f2c4a38e6ec597276cd44
--- /dev/null
+++ b/rocolib/library/ServoStackMount.yaml
@@ -0,0 +1,1314 @@
+connections:
+  connection0:
+  - - doubleServoMount
+    - lServoInterface
+  - - portsplit
+    - botedge2
+  - {}
+  connection1:
+  - - espStack
+    - leftArmInterface
+  - - portsplit
+    - botedge0
+  - {}
+  connection2:
+  - - doubleServoMount
+    - rServoInterface
+  - - starsplit
+    - botedge1
+  - {}
+  connection3:
+  - - espStack
+    - rightArmInterface
+  - - starsplit
+    - botedge3
+  - tabWidth: 10
+interfaces:
+  doubleServoMount.lServoInterface:
+    interface: lServoInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.lServoMount.leftInterface:
+    interface: lServoMount.leftInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.lServoMount.rightInterface:
+    interface: lServoMount.rightInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.rServoInterface:
+    interface: rServoInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.rServoMount.leftInterface:
+    interface: rServoMount.leftInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.rServoMount.rightInterface:
+    interface: rServoMount.rightInterface
+    subcomponent: doubleServoMount
+  espStack.leftArmInterface:
+    interface: leftArmInterface
+    subcomponent: espStack
+  espStack.rightArmInterface:
+    interface: rightArmInterface
+    subcomponent: espStack
+  lservostacksplit:
+    interface: topedge0
+    subcomponent: portsplit
+  portsplit.botedge0:
+    interface: botedge0
+    subcomponent: portsplit
+  portsplit.botedge1:
+    interface: botedge1
+    subcomponent: portsplit
+  portsplit.botedge10:
+    interface: botedge10
+    subcomponent: portsplit
+  portsplit.botedge11:
+    interface: botedge11
+    subcomponent: portsplit
+  portsplit.botedge12:
+    interface: botedge12
+    subcomponent: portsplit
+  portsplit.botedge13:
+    interface: botedge13
+    subcomponent: portsplit
+  portsplit.botedge14:
+    interface: botedge14
+    subcomponent: portsplit
+  portsplit.botedge15:
+    interface: botedge15
+    subcomponent: portsplit
+  portsplit.botedge16:
+    interface: botedge16
+    subcomponent: portsplit
+  portsplit.botedge17:
+    interface: botedge17
+    subcomponent: portsplit
+  portsplit.botedge18:
+    interface: botedge18
+    subcomponent: portsplit
+  portsplit.botedge19:
+    interface: botedge19
+    subcomponent: portsplit
+  portsplit.botedge2:
+    interface: botedge2
+    subcomponent: portsplit
+  portsplit.botedge20:
+    interface: botedge20
+    subcomponent: portsplit
+  portsplit.botedge21:
+    interface: botedge21
+    subcomponent: portsplit
+  portsplit.botedge22:
+    interface: botedge22
+    subcomponent: portsplit
+  portsplit.botedge23:
+    interface: botedge23
+    subcomponent: portsplit
+  portsplit.botedge24:
+    interface: botedge24
+    subcomponent: portsplit
+  portsplit.botedge25:
+    interface: botedge25
+    subcomponent: portsplit
+  portsplit.botedge26:
+    interface: botedge26
+    subcomponent: portsplit
+  portsplit.botedge27:
+    interface: botedge27
+    subcomponent: portsplit
+  portsplit.botedge28:
+    interface: botedge28
+    subcomponent: portsplit
+  portsplit.botedge29:
+    interface: botedge29
+    subcomponent: portsplit
+  portsplit.botedge3:
+    interface: botedge3
+    subcomponent: portsplit
+  portsplit.botedge30:
+    interface: botedge30
+    subcomponent: portsplit
+  portsplit.botedge31:
+    interface: botedge31
+    subcomponent: portsplit
+  portsplit.botedge32:
+    interface: botedge32
+    subcomponent: portsplit
+  portsplit.botedge33:
+    interface: botedge33
+    subcomponent: portsplit
+  portsplit.botedge34:
+    interface: botedge34
+    subcomponent: portsplit
+  portsplit.botedge35:
+    interface: botedge35
+    subcomponent: portsplit
+  portsplit.botedge36:
+    interface: botedge36
+    subcomponent: portsplit
+  portsplit.botedge37:
+    interface: botedge37
+    subcomponent: portsplit
+  portsplit.botedge38:
+    interface: botedge38
+    subcomponent: portsplit
+  portsplit.botedge39:
+    interface: botedge39
+    subcomponent: portsplit
+  portsplit.botedge4:
+    interface: botedge4
+    subcomponent: portsplit
+  portsplit.botedge40:
+    interface: botedge40
+    subcomponent: portsplit
+  portsplit.botedge41:
+    interface: botedge41
+    subcomponent: portsplit
+  portsplit.botedge42:
+    interface: botedge42
+    subcomponent: portsplit
+  portsplit.botedge43:
+    interface: botedge43
+    subcomponent: portsplit
+  portsplit.botedge44:
+    interface: botedge44
+    subcomponent: portsplit
+  portsplit.botedge45:
+    interface: botedge45
+    subcomponent: portsplit
+  portsplit.botedge46:
+    interface: botedge46
+    subcomponent: portsplit
+  portsplit.botedge47:
+    interface: botedge47
+    subcomponent: portsplit
+  portsplit.botedge48:
+    interface: botedge48
+    subcomponent: portsplit
+  portsplit.botedge49:
+    interface: botedge49
+    subcomponent: portsplit
+  portsplit.botedge5:
+    interface: botedge5
+    subcomponent: portsplit
+  portsplit.botedge50:
+    interface: botedge50
+    subcomponent: portsplit
+  portsplit.botedge51:
+    interface: botedge51
+    subcomponent: portsplit
+  portsplit.botedge52:
+    interface: botedge52
+    subcomponent: portsplit
+  portsplit.botedge53:
+    interface: botedge53
+    subcomponent: portsplit
+  portsplit.botedge54:
+    interface: botedge54
+    subcomponent: portsplit
+  portsplit.botedge55:
+    interface: botedge55
+    subcomponent: portsplit
+  portsplit.botedge56:
+    interface: botedge56
+    subcomponent: portsplit
+  portsplit.botedge57:
+    interface: botedge57
+    subcomponent: portsplit
+  portsplit.botedge58:
+    interface: botedge58
+    subcomponent: portsplit
+  portsplit.botedge59:
+    interface: botedge59
+    subcomponent: portsplit
+  portsplit.botedge6:
+    interface: botedge6
+    subcomponent: portsplit
+  portsplit.botedge60:
+    interface: botedge60
+    subcomponent: portsplit
+  portsplit.botedge61:
+    interface: botedge61
+    subcomponent: portsplit
+  portsplit.botedge62:
+    interface: botedge62
+    subcomponent: portsplit
+  portsplit.botedge63:
+    interface: botedge63
+    subcomponent: portsplit
+  portsplit.botedge64:
+    interface: botedge64
+    subcomponent: portsplit
+  portsplit.botedge65:
+    interface: botedge65
+    subcomponent: portsplit
+  portsplit.botedge66:
+    interface: botedge66
+    subcomponent: portsplit
+  portsplit.botedge67:
+    interface: botedge67
+    subcomponent: portsplit
+  portsplit.botedge68:
+    interface: botedge68
+    subcomponent: portsplit
+  portsplit.botedge69:
+    interface: botedge69
+    subcomponent: portsplit
+  portsplit.botedge7:
+    interface: botedge7
+    subcomponent: portsplit
+  portsplit.botedge70:
+    interface: botedge70
+    subcomponent: portsplit
+  portsplit.botedge71:
+    interface: botedge71
+    subcomponent: portsplit
+  portsplit.botedge72:
+    interface: botedge72
+    subcomponent: portsplit
+  portsplit.botedge73:
+    interface: botedge73
+    subcomponent: portsplit
+  portsplit.botedge74:
+    interface: botedge74
+    subcomponent: portsplit
+  portsplit.botedge75:
+    interface: botedge75
+    subcomponent: portsplit
+  portsplit.botedge76:
+    interface: botedge76
+    subcomponent: portsplit
+  portsplit.botedge77:
+    interface: botedge77
+    subcomponent: portsplit
+  portsplit.botedge78:
+    interface: botedge78
+    subcomponent: portsplit
+  portsplit.botedge79:
+    interface: botedge79
+    subcomponent: portsplit
+  portsplit.botedge8:
+    interface: botedge8
+    subcomponent: portsplit
+  portsplit.botedge80:
+    interface: botedge80
+    subcomponent: portsplit
+  portsplit.botedge81:
+    interface: botedge81
+    subcomponent: portsplit
+  portsplit.botedge82:
+    interface: botedge82
+    subcomponent: portsplit
+  portsplit.botedge83:
+    interface: botedge83
+    subcomponent: portsplit
+  portsplit.botedge84:
+    interface: botedge84
+    subcomponent: portsplit
+  portsplit.botedge85:
+    interface: botedge85
+    subcomponent: portsplit
+  portsplit.botedge86:
+    interface: botedge86
+    subcomponent: portsplit
+  portsplit.botedge87:
+    interface: botedge87
+    subcomponent: portsplit
+  portsplit.botedge88:
+    interface: botedge88
+    subcomponent: portsplit
+  portsplit.botedge89:
+    interface: botedge89
+    subcomponent: portsplit
+  portsplit.botedge9:
+    interface: botedge9
+    subcomponent: portsplit
+  portsplit.botedge90:
+    interface: botedge90
+    subcomponent: portsplit
+  portsplit.botedge91:
+    interface: botedge91
+    subcomponent: portsplit
+  portsplit.botedge92:
+    interface: botedge92
+    subcomponent: portsplit
+  portsplit.botedge93:
+    interface: botedge93
+    subcomponent: portsplit
+  portsplit.botedge94:
+    interface: botedge94
+    subcomponent: portsplit
+  portsplit.botedge95:
+    interface: botedge95
+    subcomponent: portsplit
+  portsplit.botedge96:
+    interface: botedge96
+    subcomponent: portsplit
+  portsplit.botedge97:
+    interface: botedge97
+    subcomponent: portsplit
+  portsplit.botedge98:
+    interface: botedge98
+    subcomponent: portsplit
+  portsplit.botedge99:
+    interface: botedge99
+    subcomponent: portsplit
+  portsplit.topedge0:
+    interface: topedge0
+    subcomponent: portsplit
+  portsplit.topedge1:
+    interface: topedge1
+    subcomponent: portsplit
+  portsplit.topedge10:
+    interface: topedge10
+    subcomponent: portsplit
+  portsplit.topedge11:
+    interface: topedge11
+    subcomponent: portsplit
+  portsplit.topedge12:
+    interface: topedge12
+    subcomponent: portsplit
+  portsplit.topedge13:
+    interface: topedge13
+    subcomponent: portsplit
+  portsplit.topedge14:
+    interface: topedge14
+    subcomponent: portsplit
+  portsplit.topedge15:
+    interface: topedge15
+    subcomponent: portsplit
+  portsplit.topedge16:
+    interface: topedge16
+    subcomponent: portsplit
+  portsplit.topedge17:
+    interface: topedge17
+    subcomponent: portsplit
+  portsplit.topedge18:
+    interface: topedge18
+    subcomponent: portsplit
+  portsplit.topedge19:
+    interface: topedge19
+    subcomponent: portsplit
+  portsplit.topedge2:
+    interface: topedge2
+    subcomponent: portsplit
+  portsplit.topedge20:
+    interface: topedge20
+    subcomponent: portsplit
+  portsplit.topedge21:
+    interface: topedge21
+    subcomponent: portsplit
+  portsplit.topedge22:
+    interface: topedge22
+    subcomponent: portsplit
+  portsplit.topedge23:
+    interface: topedge23
+    subcomponent: portsplit
+  portsplit.topedge24:
+    interface: topedge24
+    subcomponent: portsplit
+  portsplit.topedge25:
+    interface: topedge25
+    subcomponent: portsplit
+  portsplit.topedge26:
+    interface: topedge26
+    subcomponent: portsplit
+  portsplit.topedge27:
+    interface: topedge27
+    subcomponent: portsplit
+  portsplit.topedge28:
+    interface: topedge28
+    subcomponent: portsplit
+  portsplit.topedge29:
+    interface: topedge29
+    subcomponent: portsplit
+  portsplit.topedge3:
+    interface: topedge3
+    subcomponent: portsplit
+  portsplit.topedge30:
+    interface: topedge30
+    subcomponent: portsplit
+  portsplit.topedge31:
+    interface: topedge31
+    subcomponent: portsplit
+  portsplit.topedge32:
+    interface: topedge32
+    subcomponent: portsplit
+  portsplit.topedge33:
+    interface: topedge33
+    subcomponent: portsplit
+  portsplit.topedge34:
+    interface: topedge34
+    subcomponent: portsplit
+  portsplit.topedge35:
+    interface: topedge35
+    subcomponent: portsplit
+  portsplit.topedge36:
+    interface: topedge36
+    subcomponent: portsplit
+  portsplit.topedge37:
+    interface: topedge37
+    subcomponent: portsplit
+  portsplit.topedge38:
+    interface: topedge38
+    subcomponent: portsplit
+  portsplit.topedge39:
+    interface: topedge39
+    subcomponent: portsplit
+  portsplit.topedge4:
+    interface: topedge4
+    subcomponent: portsplit
+  portsplit.topedge40:
+    interface: topedge40
+    subcomponent: portsplit
+  portsplit.topedge41:
+    interface: topedge41
+    subcomponent: portsplit
+  portsplit.topedge42:
+    interface: topedge42
+    subcomponent: portsplit
+  portsplit.topedge43:
+    interface: topedge43
+    subcomponent: portsplit
+  portsplit.topedge44:
+    interface: topedge44
+    subcomponent: portsplit
+  portsplit.topedge45:
+    interface: topedge45
+    subcomponent: portsplit
+  portsplit.topedge46:
+    interface: topedge46
+    subcomponent: portsplit
+  portsplit.topedge47:
+    interface: topedge47
+    subcomponent: portsplit
+  portsplit.topedge48:
+    interface: topedge48
+    subcomponent: portsplit
+  portsplit.topedge49:
+    interface: topedge49
+    subcomponent: portsplit
+  portsplit.topedge5:
+    interface: topedge5
+    subcomponent: portsplit
+  portsplit.topedge50:
+    interface: topedge50
+    subcomponent: portsplit
+  portsplit.topedge51:
+    interface: topedge51
+    subcomponent: portsplit
+  portsplit.topedge52:
+    interface: topedge52
+    subcomponent: portsplit
+  portsplit.topedge53:
+    interface: topedge53
+    subcomponent: portsplit
+  portsplit.topedge54:
+    interface: topedge54
+    subcomponent: portsplit
+  portsplit.topedge55:
+    interface: topedge55
+    subcomponent: portsplit
+  portsplit.topedge56:
+    interface: topedge56
+    subcomponent: portsplit
+  portsplit.topedge57:
+    interface: topedge57
+    subcomponent: portsplit
+  portsplit.topedge58:
+    interface: topedge58
+    subcomponent: portsplit
+  portsplit.topedge59:
+    interface: topedge59
+    subcomponent: portsplit
+  portsplit.topedge6:
+    interface: topedge6
+    subcomponent: portsplit
+  portsplit.topedge60:
+    interface: topedge60
+    subcomponent: portsplit
+  portsplit.topedge61:
+    interface: topedge61
+    subcomponent: portsplit
+  portsplit.topedge62:
+    interface: topedge62
+    subcomponent: portsplit
+  portsplit.topedge63:
+    interface: topedge63
+    subcomponent: portsplit
+  portsplit.topedge64:
+    interface: topedge64
+    subcomponent: portsplit
+  portsplit.topedge65:
+    interface: topedge65
+    subcomponent: portsplit
+  portsplit.topedge66:
+    interface: topedge66
+    subcomponent: portsplit
+  portsplit.topedge67:
+    interface: topedge67
+    subcomponent: portsplit
+  portsplit.topedge68:
+    interface: topedge68
+    subcomponent: portsplit
+  portsplit.topedge69:
+    interface: topedge69
+    subcomponent: portsplit
+  portsplit.topedge7:
+    interface: topedge7
+    subcomponent: portsplit
+  portsplit.topedge70:
+    interface: topedge70
+    subcomponent: portsplit
+  portsplit.topedge71:
+    interface: topedge71
+    subcomponent: portsplit
+  portsplit.topedge72:
+    interface: topedge72
+    subcomponent: portsplit
+  portsplit.topedge73:
+    interface: topedge73
+    subcomponent: portsplit
+  portsplit.topedge74:
+    interface: topedge74
+    subcomponent: portsplit
+  portsplit.topedge75:
+    interface: topedge75
+    subcomponent: portsplit
+  portsplit.topedge76:
+    interface: topedge76
+    subcomponent: portsplit
+  portsplit.topedge77:
+    interface: topedge77
+    subcomponent: portsplit
+  portsplit.topedge78:
+    interface: topedge78
+    subcomponent: portsplit
+  portsplit.topedge79:
+    interface: topedge79
+    subcomponent: portsplit
+  portsplit.topedge8:
+    interface: topedge8
+    subcomponent: portsplit
+  portsplit.topedge80:
+    interface: topedge80
+    subcomponent: portsplit
+  portsplit.topedge81:
+    interface: topedge81
+    subcomponent: portsplit
+  portsplit.topedge82:
+    interface: topedge82
+    subcomponent: portsplit
+  portsplit.topedge83:
+    interface: topedge83
+    subcomponent: portsplit
+  portsplit.topedge84:
+    interface: topedge84
+    subcomponent: portsplit
+  portsplit.topedge85:
+    interface: topedge85
+    subcomponent: portsplit
+  portsplit.topedge86:
+    interface: topedge86
+    subcomponent: portsplit
+  portsplit.topedge87:
+    interface: topedge87
+    subcomponent: portsplit
+  portsplit.topedge88:
+    interface: topedge88
+    subcomponent: portsplit
+  portsplit.topedge89:
+    interface: topedge89
+    subcomponent: portsplit
+  portsplit.topedge9:
+    interface: topedge9
+    subcomponent: portsplit
+  portsplit.topedge90:
+    interface: topedge90
+    subcomponent: portsplit
+  portsplit.topedge91:
+    interface: topedge91
+    subcomponent: portsplit
+  portsplit.topedge92:
+    interface: topedge92
+    subcomponent: portsplit
+  portsplit.topedge93:
+    interface: topedge93
+    subcomponent: portsplit
+  portsplit.topedge94:
+    interface: topedge94
+    subcomponent: portsplit
+  portsplit.topedge95:
+    interface: topedge95
+    subcomponent: portsplit
+  portsplit.topedge96:
+    interface: topedge96
+    subcomponent: portsplit
+  portsplit.topedge97:
+    interface: topedge97
+    subcomponent: portsplit
+  portsplit.topedge98:
+    interface: topedge98
+    subcomponent: portsplit
+  portsplit.topedge99:
+    interface: topedge99
+    subcomponent: portsplit
+  rservostacksplit:
+    interface: topedge0
+    subcomponent: starsplit
+  starsplit.botedge0:
+    interface: botedge0
+    subcomponent: starsplit
+  starsplit.botedge1:
+    interface: botedge1
+    subcomponent: starsplit
+  starsplit.botedge10:
+    interface: botedge10
+    subcomponent: starsplit
+  starsplit.botedge11:
+    interface: botedge11
+    subcomponent: starsplit
+  starsplit.botedge12:
+    interface: botedge12
+    subcomponent: starsplit
+  starsplit.botedge13:
+    interface: botedge13
+    subcomponent: starsplit
+  starsplit.botedge14:
+    interface: botedge14
+    subcomponent: starsplit
+  starsplit.botedge15:
+    interface: botedge15
+    subcomponent: starsplit
+  starsplit.botedge16:
+    interface: botedge16
+    subcomponent: starsplit
+  starsplit.botedge17:
+    interface: botedge17
+    subcomponent: starsplit
+  starsplit.botedge18:
+    interface: botedge18
+    subcomponent: starsplit
+  starsplit.botedge19:
+    interface: botedge19
+    subcomponent: starsplit
+  starsplit.botedge2:
+    interface: botedge2
+    subcomponent: starsplit
+  starsplit.botedge20:
+    interface: botedge20
+    subcomponent: starsplit
+  starsplit.botedge21:
+    interface: botedge21
+    subcomponent: starsplit
+  starsplit.botedge22:
+    interface: botedge22
+    subcomponent: starsplit
+  starsplit.botedge23:
+    interface: botedge23
+    subcomponent: starsplit
+  starsplit.botedge24:
+    interface: botedge24
+    subcomponent: starsplit
+  starsplit.botedge25:
+    interface: botedge25
+    subcomponent: starsplit
+  starsplit.botedge26:
+    interface: botedge26
+    subcomponent: starsplit
+  starsplit.botedge27:
+    interface: botedge27
+    subcomponent: starsplit
+  starsplit.botedge28:
+    interface: botedge28
+    subcomponent: starsplit
+  starsplit.botedge29:
+    interface: botedge29
+    subcomponent: starsplit
+  starsplit.botedge3:
+    interface: botedge3
+    subcomponent: starsplit
+  starsplit.botedge30:
+    interface: botedge30
+    subcomponent: starsplit
+  starsplit.botedge31:
+    interface: botedge31
+    subcomponent: starsplit
+  starsplit.botedge32:
+    interface: botedge32
+    subcomponent: starsplit
+  starsplit.botedge33:
+    interface: botedge33
+    subcomponent: starsplit
+  starsplit.botedge34:
+    interface: botedge34
+    subcomponent: starsplit
+  starsplit.botedge35:
+    interface: botedge35
+    subcomponent: starsplit
+  starsplit.botedge36:
+    interface: botedge36
+    subcomponent: starsplit
+  starsplit.botedge37:
+    interface: botedge37
+    subcomponent: starsplit
+  starsplit.botedge38:
+    interface: botedge38
+    subcomponent: starsplit
+  starsplit.botedge39:
+    interface: botedge39
+    subcomponent: starsplit
+  starsplit.botedge4:
+    interface: botedge4
+    subcomponent: starsplit
+  starsplit.botedge40:
+    interface: botedge40
+    subcomponent: starsplit
+  starsplit.botedge41:
+    interface: botedge41
+    subcomponent: starsplit
+  starsplit.botedge42:
+    interface: botedge42
+    subcomponent: starsplit
+  starsplit.botedge43:
+    interface: botedge43
+    subcomponent: starsplit
+  starsplit.botedge44:
+    interface: botedge44
+    subcomponent: starsplit
+  starsplit.botedge45:
+    interface: botedge45
+    subcomponent: starsplit
+  starsplit.botedge46:
+    interface: botedge46
+    subcomponent: starsplit
+  starsplit.botedge47:
+    interface: botedge47
+    subcomponent: starsplit
+  starsplit.botedge48:
+    interface: botedge48
+    subcomponent: starsplit
+  starsplit.botedge49:
+    interface: botedge49
+    subcomponent: starsplit
+  starsplit.botedge5:
+    interface: botedge5
+    subcomponent: starsplit
+  starsplit.botedge50:
+    interface: botedge50
+    subcomponent: starsplit
+  starsplit.botedge51:
+    interface: botedge51
+    subcomponent: starsplit
+  starsplit.botedge52:
+    interface: botedge52
+    subcomponent: starsplit
+  starsplit.botedge53:
+    interface: botedge53
+    subcomponent: starsplit
+  starsplit.botedge54:
+    interface: botedge54
+    subcomponent: starsplit
+  starsplit.botedge55:
+    interface: botedge55
+    subcomponent: starsplit
+  starsplit.botedge56:
+    interface: botedge56
+    subcomponent: starsplit
+  starsplit.botedge57:
+    interface: botedge57
+    subcomponent: starsplit
+  starsplit.botedge58:
+    interface: botedge58
+    subcomponent: starsplit
+  starsplit.botedge59:
+    interface: botedge59
+    subcomponent: starsplit
+  starsplit.botedge6:
+    interface: botedge6
+    subcomponent: starsplit
+  starsplit.botedge60:
+    interface: botedge60
+    subcomponent: starsplit
+  starsplit.botedge61:
+    interface: botedge61
+    subcomponent: starsplit
+  starsplit.botedge62:
+    interface: botedge62
+    subcomponent: starsplit
+  starsplit.botedge63:
+    interface: botedge63
+    subcomponent: starsplit
+  starsplit.botedge64:
+    interface: botedge64
+    subcomponent: starsplit
+  starsplit.botedge65:
+    interface: botedge65
+    subcomponent: starsplit
+  starsplit.botedge66:
+    interface: botedge66
+    subcomponent: starsplit
+  starsplit.botedge67:
+    interface: botedge67
+    subcomponent: starsplit
+  starsplit.botedge68:
+    interface: botedge68
+    subcomponent: starsplit
+  starsplit.botedge69:
+    interface: botedge69
+    subcomponent: starsplit
+  starsplit.botedge7:
+    interface: botedge7
+    subcomponent: starsplit
+  starsplit.botedge70:
+    interface: botedge70
+    subcomponent: starsplit
+  starsplit.botedge71:
+    interface: botedge71
+    subcomponent: starsplit
+  starsplit.botedge72:
+    interface: botedge72
+    subcomponent: starsplit
+  starsplit.botedge73:
+    interface: botedge73
+    subcomponent: starsplit
+  starsplit.botedge74:
+    interface: botedge74
+    subcomponent: starsplit
+  starsplit.botedge75:
+    interface: botedge75
+    subcomponent: starsplit
+  starsplit.botedge76:
+    interface: botedge76
+    subcomponent: starsplit
+  starsplit.botedge77:
+    interface: botedge77
+    subcomponent: starsplit
+  starsplit.botedge78:
+    interface: botedge78
+    subcomponent: starsplit
+  starsplit.botedge79:
+    interface: botedge79
+    subcomponent: starsplit
+  starsplit.botedge8:
+    interface: botedge8
+    subcomponent: starsplit
+  starsplit.botedge80:
+    interface: botedge80
+    subcomponent: starsplit
+  starsplit.botedge81:
+    interface: botedge81
+    subcomponent: starsplit
+  starsplit.botedge82:
+    interface: botedge82
+    subcomponent: starsplit
+  starsplit.botedge83:
+    interface: botedge83
+    subcomponent: starsplit
+  starsplit.botedge84:
+    interface: botedge84
+    subcomponent: starsplit
+  starsplit.botedge85:
+    interface: botedge85
+    subcomponent: starsplit
+  starsplit.botedge86:
+    interface: botedge86
+    subcomponent: starsplit
+  starsplit.botedge87:
+    interface: botedge87
+    subcomponent: starsplit
+  starsplit.botedge88:
+    interface: botedge88
+    subcomponent: starsplit
+  starsplit.botedge89:
+    interface: botedge89
+    subcomponent: starsplit
+  starsplit.botedge9:
+    interface: botedge9
+    subcomponent: starsplit
+  starsplit.botedge90:
+    interface: botedge90
+    subcomponent: starsplit
+  starsplit.botedge91:
+    interface: botedge91
+    subcomponent: starsplit
+  starsplit.botedge92:
+    interface: botedge92
+    subcomponent: starsplit
+  starsplit.botedge93:
+    interface: botedge93
+    subcomponent: starsplit
+  starsplit.botedge94:
+    interface: botedge94
+    subcomponent: starsplit
+  starsplit.botedge95:
+    interface: botedge95
+    subcomponent: starsplit
+  starsplit.botedge96:
+    interface: botedge96
+    subcomponent: starsplit
+  starsplit.botedge97:
+    interface: botedge97
+    subcomponent: starsplit
+  starsplit.botedge98:
+    interface: botedge98
+    subcomponent: starsplit
+  starsplit.botedge99:
+    interface: botedge99
+    subcomponent: starsplit
+  starsplit.topedge0:
+    interface: topedge0
+    subcomponent: starsplit
+  starsplit.topedge1:
+    interface: topedge1
+    subcomponent: starsplit
+  starsplit.topedge10:
+    interface: topedge10
+    subcomponent: starsplit
+  starsplit.topedge11:
+    interface: topedge11
+    subcomponent: starsplit
+  starsplit.topedge12:
+    interface: topedge12
+    subcomponent: starsplit
+  starsplit.topedge13:
+    interface: topedge13
+    subcomponent: starsplit
+  starsplit.topedge14:
+    interface: topedge14
+    subcomponent: starsplit
+  starsplit.topedge15:
+    interface: topedge15
+    subcomponent: starsplit
+  starsplit.topedge16:
+    interface: topedge16
+    subcomponent: starsplit
+  starsplit.topedge17:
+    interface: topedge17
+    subcomponent: starsplit
+  starsplit.topedge18:
+    interface: topedge18
+    subcomponent: starsplit
+  starsplit.topedge19:
+    interface: topedge19
+    subcomponent: starsplit
+  starsplit.topedge2:
+    interface: topedge2
+    subcomponent: starsplit
+  starsplit.topedge20:
+    interface: topedge20
+    subcomponent: starsplit
+  starsplit.topedge21:
+    interface: topedge21
+    subcomponent: starsplit
+  starsplit.topedge22:
+    interface: topedge22
+    subcomponent: starsplit
+  starsplit.topedge23:
+    interface: topedge23
+    subcomponent: starsplit
+  starsplit.topedge24:
+    interface: topedge24
+    subcomponent: starsplit
+  starsplit.topedge25:
+    interface: topedge25
+    subcomponent: starsplit
+  starsplit.topedge26:
+    interface: topedge26
+    subcomponent: starsplit
+  starsplit.topedge27:
+    interface: topedge27
+    subcomponent: starsplit
+  starsplit.topedge28:
+    interface: topedge28
+    subcomponent: starsplit
+  starsplit.topedge29:
+    interface: topedge29
+    subcomponent: starsplit
+  starsplit.topedge3:
+    interface: topedge3
+    subcomponent: starsplit
+  starsplit.topedge30:
+    interface: topedge30
+    subcomponent: starsplit
+  starsplit.topedge31:
+    interface: topedge31
+    subcomponent: starsplit
+  starsplit.topedge32:
+    interface: topedge32
+    subcomponent: starsplit
+  starsplit.topedge33:
+    interface: topedge33
+    subcomponent: starsplit
+  starsplit.topedge34:
+    interface: topedge34
+    subcomponent: starsplit
+  starsplit.topedge35:
+    interface: topedge35
+    subcomponent: starsplit
+  starsplit.topedge36:
+    interface: topedge36
+    subcomponent: starsplit
+  starsplit.topedge37:
+    interface: topedge37
+    subcomponent: starsplit
+  starsplit.topedge38:
+    interface: topedge38
+    subcomponent: starsplit
+  starsplit.topedge39:
+    interface: topedge39
+    subcomponent: starsplit
+  starsplit.topedge4:
+    interface: topedge4
+    subcomponent: starsplit
+  starsplit.topedge40:
+    interface: topedge40
+    subcomponent: starsplit
+  starsplit.topedge41:
+    interface: topedge41
+    subcomponent: starsplit
+  starsplit.topedge42:
+    interface: topedge42
+    subcomponent: starsplit
+  starsplit.topedge43:
+    interface: topedge43
+    subcomponent: starsplit
+  starsplit.topedge44:
+    interface: topedge44
+    subcomponent: starsplit
+  starsplit.topedge45:
+    interface: topedge45
+    subcomponent: starsplit
+  starsplit.topedge46:
+    interface: topedge46
+    subcomponent: starsplit
+  starsplit.topedge47:
+    interface: topedge47
+    subcomponent: starsplit
+  starsplit.topedge48:
+    interface: topedge48
+    subcomponent: starsplit
+  starsplit.topedge49:
+    interface: topedge49
+    subcomponent: starsplit
+  starsplit.topedge5:
+    interface: topedge5
+    subcomponent: starsplit
+  starsplit.topedge50:
+    interface: topedge50
+    subcomponent: starsplit
+  starsplit.topedge51:
+    interface: topedge51
+    subcomponent: starsplit
+  starsplit.topedge52:
+    interface: topedge52
+    subcomponent: starsplit
+  starsplit.topedge53:
+    interface: topedge53
+    subcomponent: starsplit
+  starsplit.topedge54:
+    interface: topedge54
+    subcomponent: starsplit
+  starsplit.topedge55:
+    interface: topedge55
+    subcomponent: starsplit
+  starsplit.topedge56:
+    interface: topedge56
+    subcomponent: starsplit
+  starsplit.topedge57:
+    interface: topedge57
+    subcomponent: starsplit
+  starsplit.topedge58:
+    interface: topedge58
+    subcomponent: starsplit
+  starsplit.topedge59:
+    interface: topedge59
+    subcomponent: starsplit
+  starsplit.topedge6:
+    interface: topedge6
+    subcomponent: starsplit
+  starsplit.topedge60:
+    interface: topedge60
+    subcomponent: starsplit
+  starsplit.topedge61:
+    interface: topedge61
+    subcomponent: starsplit
+  starsplit.topedge62:
+    interface: topedge62
+    subcomponent: starsplit
+  starsplit.topedge63:
+    interface: topedge63
+    subcomponent: starsplit
+  starsplit.topedge64:
+    interface: topedge64
+    subcomponent: starsplit
+  starsplit.topedge65:
+    interface: topedge65
+    subcomponent: starsplit
+  starsplit.topedge66:
+    interface: topedge66
+    subcomponent: starsplit
+  starsplit.topedge67:
+    interface: topedge67
+    subcomponent: starsplit
+  starsplit.topedge68:
+    interface: topedge68
+    subcomponent: starsplit
+  starsplit.topedge69:
+    interface: topedge69
+    subcomponent: starsplit
+  starsplit.topedge7:
+    interface: topedge7
+    subcomponent: starsplit
+  starsplit.topedge70:
+    interface: topedge70
+    subcomponent: starsplit
+  starsplit.topedge71:
+    interface: topedge71
+    subcomponent: starsplit
+  starsplit.topedge72:
+    interface: topedge72
+    subcomponent: starsplit
+  starsplit.topedge73:
+    interface: topedge73
+    subcomponent: starsplit
+  starsplit.topedge74:
+    interface: topedge74
+    subcomponent: starsplit
+  starsplit.topedge75:
+    interface: topedge75
+    subcomponent: starsplit
+  starsplit.topedge76:
+    interface: topedge76
+    subcomponent: starsplit
+  starsplit.topedge77:
+    interface: topedge77
+    subcomponent: starsplit
+  starsplit.topedge78:
+    interface: topedge78
+    subcomponent: starsplit
+  starsplit.topedge79:
+    interface: topedge79
+    subcomponent: starsplit
+  starsplit.topedge8:
+    interface: topedge8
+    subcomponent: starsplit
+  starsplit.topedge80:
+    interface: topedge80
+    subcomponent: starsplit
+  starsplit.topedge81:
+    interface: topedge81
+    subcomponent: starsplit
+  starsplit.topedge82:
+    interface: topedge82
+    subcomponent: starsplit
+  starsplit.topedge83:
+    interface: topedge83
+    subcomponent: starsplit
+  starsplit.topedge84:
+    interface: topedge84
+    subcomponent: starsplit
+  starsplit.topedge85:
+    interface: topedge85
+    subcomponent: starsplit
+  starsplit.topedge86:
+    interface: topedge86
+    subcomponent: starsplit
+  starsplit.topedge87:
+    interface: topedge87
+    subcomponent: starsplit
+  starsplit.topedge88:
+    interface: topedge88
+    subcomponent: starsplit
+  starsplit.topedge89:
+    interface: topedge89
+    subcomponent: starsplit
+  starsplit.topedge9:
+    interface: topedge9
+    subcomponent: starsplit
+  starsplit.topedge90:
+    interface: topedge90
+    subcomponent: starsplit
+  starsplit.topedge91:
+    interface: topedge91
+    subcomponent: starsplit
+  starsplit.topedge92:
+    interface: topedge92
+    subcomponent: starsplit
+  starsplit.topedge93:
+    interface: topedge93
+    subcomponent: starsplit
+  starsplit.topedge94:
+    interface: topedge94
+    subcomponent: starsplit
+  starsplit.topedge95:
+    interface: topedge95
+    subcomponent: starsplit
+  starsplit.topedge96:
+    interface: topedge96
+    subcomponent: starsplit
+  starsplit.topedge97:
+    interface: topedge97
+    subcomponent: starsplit
+  starsplit.topedge98:
+    interface: topedge98
+    subcomponent: starsplit
+  starsplit.topedge99:
+    interface: topedge99
+    subcomponent: starsplit
+parameters:
+  lServoMount.depth:
+    defaultValue: 24
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  lServoMount.width:
+    defaultValue: 20
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  stack.length:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/mounts/ServoStackMountBuilder.py
+subcomponents:
+  doubleServoMount:
+    classname: DoubleServoMount
+    kwargs: {}
+    parameters:
+      lServoMount.depth:
+        parameter: lServoMount.depth
+      lServoMount.width:
+        parameter: lServoMount.width
+  espStack:
+    classname: StackMount
+    kwargs: {}
+    parameters:
+      stack.length:
+        parameter: stack.length
+  portsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+        function: (x[2], 10, x[0], x[0]+x[1]*2+10)
+        parameter: &id001
+        - lServoMount.depth
+        - lServoMount.width
+        - stack.length
+      toplength:
+        function: (x[0]*2+x[1]*2+10*2+x[2],)
+        parameter: *id001
+  starsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+        function: (x[0]+x[1]*2+10, x[0], 10, x[2])
+        parameter: *id001
+      toplength:
+        function: (x[0] * 2 + x[1] * 2  + 10 * 2 + x[2],)
+        parameter: *id001
diff --git a/rocolib/library/ServoStackMountBuilder.yaml b/rocolib/library/ServoStackMountBuilder.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..8ecd52b9fe75ef1dd82f2c4a38e6ec597276cd44
--- /dev/null
+++ b/rocolib/library/ServoStackMountBuilder.yaml
@@ -0,0 +1,1314 @@
+connections:
+  connection0:
+  - - doubleServoMount
+    - lServoInterface
+  - - portsplit
+    - botedge2
+  - {}
+  connection1:
+  - - espStack
+    - leftArmInterface
+  - - portsplit
+    - botedge0
+  - {}
+  connection2:
+  - - doubleServoMount
+    - rServoInterface
+  - - starsplit
+    - botedge1
+  - {}
+  connection3:
+  - - espStack
+    - rightArmInterface
+  - - starsplit
+    - botedge3
+  - tabWidth: 10
+interfaces:
+  doubleServoMount.lServoInterface:
+    interface: lServoInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.lServoMount.leftInterface:
+    interface: lServoMount.leftInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.lServoMount.rightInterface:
+    interface: lServoMount.rightInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.rServoInterface:
+    interface: rServoInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.rServoMount.leftInterface:
+    interface: rServoMount.leftInterface
+    subcomponent: doubleServoMount
+  doubleServoMount.rServoMount.rightInterface:
+    interface: rServoMount.rightInterface
+    subcomponent: doubleServoMount
+  espStack.leftArmInterface:
+    interface: leftArmInterface
+    subcomponent: espStack
+  espStack.rightArmInterface:
+    interface: rightArmInterface
+    subcomponent: espStack
+  lservostacksplit:
+    interface: topedge0
+    subcomponent: portsplit
+  portsplit.botedge0:
+    interface: botedge0
+    subcomponent: portsplit
+  portsplit.botedge1:
+    interface: botedge1
+    subcomponent: portsplit
+  portsplit.botedge10:
+    interface: botedge10
+    subcomponent: portsplit
+  portsplit.botedge11:
+    interface: botedge11
+    subcomponent: portsplit
+  portsplit.botedge12:
+    interface: botedge12
+    subcomponent: portsplit
+  portsplit.botedge13:
+    interface: botedge13
+    subcomponent: portsplit
+  portsplit.botedge14:
+    interface: botedge14
+    subcomponent: portsplit
+  portsplit.botedge15:
+    interface: botedge15
+    subcomponent: portsplit
+  portsplit.botedge16:
+    interface: botedge16
+    subcomponent: portsplit
+  portsplit.botedge17:
+    interface: botedge17
+    subcomponent: portsplit
+  portsplit.botedge18:
+    interface: botedge18
+    subcomponent: portsplit
+  portsplit.botedge19:
+    interface: botedge19
+    subcomponent: portsplit
+  portsplit.botedge2:
+    interface: botedge2
+    subcomponent: portsplit
+  portsplit.botedge20:
+    interface: botedge20
+    subcomponent: portsplit
+  portsplit.botedge21:
+    interface: botedge21
+    subcomponent: portsplit
+  portsplit.botedge22:
+    interface: botedge22
+    subcomponent: portsplit
+  portsplit.botedge23:
+    interface: botedge23
+    subcomponent: portsplit
+  portsplit.botedge24:
+    interface: botedge24
+    subcomponent: portsplit
+  portsplit.botedge25:
+    interface: botedge25
+    subcomponent: portsplit
+  portsplit.botedge26:
+    interface: botedge26
+    subcomponent: portsplit
+  portsplit.botedge27:
+    interface: botedge27
+    subcomponent: portsplit
+  portsplit.botedge28:
+    interface: botedge28
+    subcomponent: portsplit
+  portsplit.botedge29:
+    interface: botedge29
+    subcomponent: portsplit
+  portsplit.botedge3:
+    interface: botedge3
+    subcomponent: portsplit
+  portsplit.botedge30:
+    interface: botedge30
+    subcomponent: portsplit
+  portsplit.botedge31:
+    interface: botedge31
+    subcomponent: portsplit
+  portsplit.botedge32:
+    interface: botedge32
+    subcomponent: portsplit
+  portsplit.botedge33:
+    interface: botedge33
+    subcomponent: portsplit
+  portsplit.botedge34:
+    interface: botedge34
+    subcomponent: portsplit
+  portsplit.botedge35:
+    interface: botedge35
+    subcomponent: portsplit
+  portsplit.botedge36:
+    interface: botedge36
+    subcomponent: portsplit
+  portsplit.botedge37:
+    interface: botedge37
+    subcomponent: portsplit
+  portsplit.botedge38:
+    interface: botedge38
+    subcomponent: portsplit
+  portsplit.botedge39:
+    interface: botedge39
+    subcomponent: portsplit
+  portsplit.botedge4:
+    interface: botedge4
+    subcomponent: portsplit
+  portsplit.botedge40:
+    interface: botedge40
+    subcomponent: portsplit
+  portsplit.botedge41:
+    interface: botedge41
+    subcomponent: portsplit
+  portsplit.botedge42:
+    interface: botedge42
+    subcomponent: portsplit
+  portsplit.botedge43:
+    interface: botedge43
+    subcomponent: portsplit
+  portsplit.botedge44:
+    interface: botedge44
+    subcomponent: portsplit
+  portsplit.botedge45:
+    interface: botedge45
+    subcomponent: portsplit
+  portsplit.botedge46:
+    interface: botedge46
+    subcomponent: portsplit
+  portsplit.botedge47:
+    interface: botedge47
+    subcomponent: portsplit
+  portsplit.botedge48:
+    interface: botedge48
+    subcomponent: portsplit
+  portsplit.botedge49:
+    interface: botedge49
+    subcomponent: portsplit
+  portsplit.botedge5:
+    interface: botedge5
+    subcomponent: portsplit
+  portsplit.botedge50:
+    interface: botedge50
+    subcomponent: portsplit
+  portsplit.botedge51:
+    interface: botedge51
+    subcomponent: portsplit
+  portsplit.botedge52:
+    interface: botedge52
+    subcomponent: portsplit
+  portsplit.botedge53:
+    interface: botedge53
+    subcomponent: portsplit
+  portsplit.botedge54:
+    interface: botedge54
+    subcomponent: portsplit
+  portsplit.botedge55:
+    interface: botedge55
+    subcomponent: portsplit
+  portsplit.botedge56:
+    interface: botedge56
+    subcomponent: portsplit
+  portsplit.botedge57:
+    interface: botedge57
+    subcomponent: portsplit
+  portsplit.botedge58:
+    interface: botedge58
+    subcomponent: portsplit
+  portsplit.botedge59:
+    interface: botedge59
+    subcomponent: portsplit
+  portsplit.botedge6:
+    interface: botedge6
+    subcomponent: portsplit
+  portsplit.botedge60:
+    interface: botedge60
+    subcomponent: portsplit
+  portsplit.botedge61:
+    interface: botedge61
+    subcomponent: portsplit
+  portsplit.botedge62:
+    interface: botedge62
+    subcomponent: portsplit
+  portsplit.botedge63:
+    interface: botedge63
+    subcomponent: portsplit
+  portsplit.botedge64:
+    interface: botedge64
+    subcomponent: portsplit
+  portsplit.botedge65:
+    interface: botedge65
+    subcomponent: portsplit
+  portsplit.botedge66:
+    interface: botedge66
+    subcomponent: portsplit
+  portsplit.botedge67:
+    interface: botedge67
+    subcomponent: portsplit
+  portsplit.botedge68:
+    interface: botedge68
+    subcomponent: portsplit
+  portsplit.botedge69:
+    interface: botedge69
+    subcomponent: portsplit
+  portsplit.botedge7:
+    interface: botedge7
+    subcomponent: portsplit
+  portsplit.botedge70:
+    interface: botedge70
+    subcomponent: portsplit
+  portsplit.botedge71:
+    interface: botedge71
+    subcomponent: portsplit
+  portsplit.botedge72:
+    interface: botedge72
+    subcomponent: portsplit
+  portsplit.botedge73:
+    interface: botedge73
+    subcomponent: portsplit
+  portsplit.botedge74:
+    interface: botedge74
+    subcomponent: portsplit
+  portsplit.botedge75:
+    interface: botedge75
+    subcomponent: portsplit
+  portsplit.botedge76:
+    interface: botedge76
+    subcomponent: portsplit
+  portsplit.botedge77:
+    interface: botedge77
+    subcomponent: portsplit
+  portsplit.botedge78:
+    interface: botedge78
+    subcomponent: portsplit
+  portsplit.botedge79:
+    interface: botedge79
+    subcomponent: portsplit
+  portsplit.botedge8:
+    interface: botedge8
+    subcomponent: portsplit
+  portsplit.botedge80:
+    interface: botedge80
+    subcomponent: portsplit
+  portsplit.botedge81:
+    interface: botedge81
+    subcomponent: portsplit
+  portsplit.botedge82:
+    interface: botedge82
+    subcomponent: portsplit
+  portsplit.botedge83:
+    interface: botedge83
+    subcomponent: portsplit
+  portsplit.botedge84:
+    interface: botedge84
+    subcomponent: portsplit
+  portsplit.botedge85:
+    interface: botedge85
+    subcomponent: portsplit
+  portsplit.botedge86:
+    interface: botedge86
+    subcomponent: portsplit
+  portsplit.botedge87:
+    interface: botedge87
+    subcomponent: portsplit
+  portsplit.botedge88:
+    interface: botedge88
+    subcomponent: portsplit
+  portsplit.botedge89:
+    interface: botedge89
+    subcomponent: portsplit
+  portsplit.botedge9:
+    interface: botedge9
+    subcomponent: portsplit
+  portsplit.botedge90:
+    interface: botedge90
+    subcomponent: portsplit
+  portsplit.botedge91:
+    interface: botedge91
+    subcomponent: portsplit
+  portsplit.botedge92:
+    interface: botedge92
+    subcomponent: portsplit
+  portsplit.botedge93:
+    interface: botedge93
+    subcomponent: portsplit
+  portsplit.botedge94:
+    interface: botedge94
+    subcomponent: portsplit
+  portsplit.botedge95:
+    interface: botedge95
+    subcomponent: portsplit
+  portsplit.botedge96:
+    interface: botedge96
+    subcomponent: portsplit
+  portsplit.botedge97:
+    interface: botedge97
+    subcomponent: portsplit
+  portsplit.botedge98:
+    interface: botedge98
+    subcomponent: portsplit
+  portsplit.botedge99:
+    interface: botedge99
+    subcomponent: portsplit
+  portsplit.topedge0:
+    interface: topedge0
+    subcomponent: portsplit
+  portsplit.topedge1:
+    interface: topedge1
+    subcomponent: portsplit
+  portsplit.topedge10:
+    interface: topedge10
+    subcomponent: portsplit
+  portsplit.topedge11:
+    interface: topedge11
+    subcomponent: portsplit
+  portsplit.topedge12:
+    interface: topedge12
+    subcomponent: portsplit
+  portsplit.topedge13:
+    interface: topedge13
+    subcomponent: portsplit
+  portsplit.topedge14:
+    interface: topedge14
+    subcomponent: portsplit
+  portsplit.topedge15:
+    interface: topedge15
+    subcomponent: portsplit
+  portsplit.topedge16:
+    interface: topedge16
+    subcomponent: portsplit
+  portsplit.topedge17:
+    interface: topedge17
+    subcomponent: portsplit
+  portsplit.topedge18:
+    interface: topedge18
+    subcomponent: portsplit
+  portsplit.topedge19:
+    interface: topedge19
+    subcomponent: portsplit
+  portsplit.topedge2:
+    interface: topedge2
+    subcomponent: portsplit
+  portsplit.topedge20:
+    interface: topedge20
+    subcomponent: portsplit
+  portsplit.topedge21:
+    interface: topedge21
+    subcomponent: portsplit
+  portsplit.topedge22:
+    interface: topedge22
+    subcomponent: portsplit
+  portsplit.topedge23:
+    interface: topedge23
+    subcomponent: portsplit
+  portsplit.topedge24:
+    interface: topedge24
+    subcomponent: portsplit
+  portsplit.topedge25:
+    interface: topedge25
+    subcomponent: portsplit
+  portsplit.topedge26:
+    interface: topedge26
+    subcomponent: portsplit
+  portsplit.topedge27:
+    interface: topedge27
+    subcomponent: portsplit
+  portsplit.topedge28:
+    interface: topedge28
+    subcomponent: portsplit
+  portsplit.topedge29:
+    interface: topedge29
+    subcomponent: portsplit
+  portsplit.topedge3:
+    interface: topedge3
+    subcomponent: portsplit
+  portsplit.topedge30:
+    interface: topedge30
+    subcomponent: portsplit
+  portsplit.topedge31:
+    interface: topedge31
+    subcomponent: portsplit
+  portsplit.topedge32:
+    interface: topedge32
+    subcomponent: portsplit
+  portsplit.topedge33:
+    interface: topedge33
+    subcomponent: portsplit
+  portsplit.topedge34:
+    interface: topedge34
+    subcomponent: portsplit
+  portsplit.topedge35:
+    interface: topedge35
+    subcomponent: portsplit
+  portsplit.topedge36:
+    interface: topedge36
+    subcomponent: portsplit
+  portsplit.topedge37:
+    interface: topedge37
+    subcomponent: portsplit
+  portsplit.topedge38:
+    interface: topedge38
+    subcomponent: portsplit
+  portsplit.topedge39:
+    interface: topedge39
+    subcomponent: portsplit
+  portsplit.topedge4:
+    interface: topedge4
+    subcomponent: portsplit
+  portsplit.topedge40:
+    interface: topedge40
+    subcomponent: portsplit
+  portsplit.topedge41:
+    interface: topedge41
+    subcomponent: portsplit
+  portsplit.topedge42:
+    interface: topedge42
+    subcomponent: portsplit
+  portsplit.topedge43:
+    interface: topedge43
+    subcomponent: portsplit
+  portsplit.topedge44:
+    interface: topedge44
+    subcomponent: portsplit
+  portsplit.topedge45:
+    interface: topedge45
+    subcomponent: portsplit
+  portsplit.topedge46:
+    interface: topedge46
+    subcomponent: portsplit
+  portsplit.topedge47:
+    interface: topedge47
+    subcomponent: portsplit
+  portsplit.topedge48:
+    interface: topedge48
+    subcomponent: portsplit
+  portsplit.topedge49:
+    interface: topedge49
+    subcomponent: portsplit
+  portsplit.topedge5:
+    interface: topedge5
+    subcomponent: portsplit
+  portsplit.topedge50:
+    interface: topedge50
+    subcomponent: portsplit
+  portsplit.topedge51:
+    interface: topedge51
+    subcomponent: portsplit
+  portsplit.topedge52:
+    interface: topedge52
+    subcomponent: portsplit
+  portsplit.topedge53:
+    interface: topedge53
+    subcomponent: portsplit
+  portsplit.topedge54:
+    interface: topedge54
+    subcomponent: portsplit
+  portsplit.topedge55:
+    interface: topedge55
+    subcomponent: portsplit
+  portsplit.topedge56:
+    interface: topedge56
+    subcomponent: portsplit
+  portsplit.topedge57:
+    interface: topedge57
+    subcomponent: portsplit
+  portsplit.topedge58:
+    interface: topedge58
+    subcomponent: portsplit
+  portsplit.topedge59:
+    interface: topedge59
+    subcomponent: portsplit
+  portsplit.topedge6:
+    interface: topedge6
+    subcomponent: portsplit
+  portsplit.topedge60:
+    interface: topedge60
+    subcomponent: portsplit
+  portsplit.topedge61:
+    interface: topedge61
+    subcomponent: portsplit
+  portsplit.topedge62:
+    interface: topedge62
+    subcomponent: portsplit
+  portsplit.topedge63:
+    interface: topedge63
+    subcomponent: portsplit
+  portsplit.topedge64:
+    interface: topedge64
+    subcomponent: portsplit
+  portsplit.topedge65:
+    interface: topedge65
+    subcomponent: portsplit
+  portsplit.topedge66:
+    interface: topedge66
+    subcomponent: portsplit
+  portsplit.topedge67:
+    interface: topedge67
+    subcomponent: portsplit
+  portsplit.topedge68:
+    interface: topedge68
+    subcomponent: portsplit
+  portsplit.topedge69:
+    interface: topedge69
+    subcomponent: portsplit
+  portsplit.topedge7:
+    interface: topedge7
+    subcomponent: portsplit
+  portsplit.topedge70:
+    interface: topedge70
+    subcomponent: portsplit
+  portsplit.topedge71:
+    interface: topedge71
+    subcomponent: portsplit
+  portsplit.topedge72:
+    interface: topedge72
+    subcomponent: portsplit
+  portsplit.topedge73:
+    interface: topedge73
+    subcomponent: portsplit
+  portsplit.topedge74:
+    interface: topedge74
+    subcomponent: portsplit
+  portsplit.topedge75:
+    interface: topedge75
+    subcomponent: portsplit
+  portsplit.topedge76:
+    interface: topedge76
+    subcomponent: portsplit
+  portsplit.topedge77:
+    interface: topedge77
+    subcomponent: portsplit
+  portsplit.topedge78:
+    interface: topedge78
+    subcomponent: portsplit
+  portsplit.topedge79:
+    interface: topedge79
+    subcomponent: portsplit
+  portsplit.topedge8:
+    interface: topedge8
+    subcomponent: portsplit
+  portsplit.topedge80:
+    interface: topedge80
+    subcomponent: portsplit
+  portsplit.topedge81:
+    interface: topedge81
+    subcomponent: portsplit
+  portsplit.topedge82:
+    interface: topedge82
+    subcomponent: portsplit
+  portsplit.topedge83:
+    interface: topedge83
+    subcomponent: portsplit
+  portsplit.topedge84:
+    interface: topedge84
+    subcomponent: portsplit
+  portsplit.topedge85:
+    interface: topedge85
+    subcomponent: portsplit
+  portsplit.topedge86:
+    interface: topedge86
+    subcomponent: portsplit
+  portsplit.topedge87:
+    interface: topedge87
+    subcomponent: portsplit
+  portsplit.topedge88:
+    interface: topedge88
+    subcomponent: portsplit
+  portsplit.topedge89:
+    interface: topedge89
+    subcomponent: portsplit
+  portsplit.topedge9:
+    interface: topedge9
+    subcomponent: portsplit
+  portsplit.topedge90:
+    interface: topedge90
+    subcomponent: portsplit
+  portsplit.topedge91:
+    interface: topedge91
+    subcomponent: portsplit
+  portsplit.topedge92:
+    interface: topedge92
+    subcomponent: portsplit
+  portsplit.topedge93:
+    interface: topedge93
+    subcomponent: portsplit
+  portsplit.topedge94:
+    interface: topedge94
+    subcomponent: portsplit
+  portsplit.topedge95:
+    interface: topedge95
+    subcomponent: portsplit
+  portsplit.topedge96:
+    interface: topedge96
+    subcomponent: portsplit
+  portsplit.topedge97:
+    interface: topedge97
+    subcomponent: portsplit
+  portsplit.topedge98:
+    interface: topedge98
+    subcomponent: portsplit
+  portsplit.topedge99:
+    interface: topedge99
+    subcomponent: portsplit
+  rservostacksplit:
+    interface: topedge0
+    subcomponent: starsplit
+  starsplit.botedge0:
+    interface: botedge0
+    subcomponent: starsplit
+  starsplit.botedge1:
+    interface: botedge1
+    subcomponent: starsplit
+  starsplit.botedge10:
+    interface: botedge10
+    subcomponent: starsplit
+  starsplit.botedge11:
+    interface: botedge11
+    subcomponent: starsplit
+  starsplit.botedge12:
+    interface: botedge12
+    subcomponent: starsplit
+  starsplit.botedge13:
+    interface: botedge13
+    subcomponent: starsplit
+  starsplit.botedge14:
+    interface: botedge14
+    subcomponent: starsplit
+  starsplit.botedge15:
+    interface: botedge15
+    subcomponent: starsplit
+  starsplit.botedge16:
+    interface: botedge16
+    subcomponent: starsplit
+  starsplit.botedge17:
+    interface: botedge17
+    subcomponent: starsplit
+  starsplit.botedge18:
+    interface: botedge18
+    subcomponent: starsplit
+  starsplit.botedge19:
+    interface: botedge19
+    subcomponent: starsplit
+  starsplit.botedge2:
+    interface: botedge2
+    subcomponent: starsplit
+  starsplit.botedge20:
+    interface: botedge20
+    subcomponent: starsplit
+  starsplit.botedge21:
+    interface: botedge21
+    subcomponent: starsplit
+  starsplit.botedge22:
+    interface: botedge22
+    subcomponent: starsplit
+  starsplit.botedge23:
+    interface: botedge23
+    subcomponent: starsplit
+  starsplit.botedge24:
+    interface: botedge24
+    subcomponent: starsplit
+  starsplit.botedge25:
+    interface: botedge25
+    subcomponent: starsplit
+  starsplit.botedge26:
+    interface: botedge26
+    subcomponent: starsplit
+  starsplit.botedge27:
+    interface: botedge27
+    subcomponent: starsplit
+  starsplit.botedge28:
+    interface: botedge28
+    subcomponent: starsplit
+  starsplit.botedge29:
+    interface: botedge29
+    subcomponent: starsplit
+  starsplit.botedge3:
+    interface: botedge3
+    subcomponent: starsplit
+  starsplit.botedge30:
+    interface: botedge30
+    subcomponent: starsplit
+  starsplit.botedge31:
+    interface: botedge31
+    subcomponent: starsplit
+  starsplit.botedge32:
+    interface: botedge32
+    subcomponent: starsplit
+  starsplit.botedge33:
+    interface: botedge33
+    subcomponent: starsplit
+  starsplit.botedge34:
+    interface: botedge34
+    subcomponent: starsplit
+  starsplit.botedge35:
+    interface: botedge35
+    subcomponent: starsplit
+  starsplit.botedge36:
+    interface: botedge36
+    subcomponent: starsplit
+  starsplit.botedge37:
+    interface: botedge37
+    subcomponent: starsplit
+  starsplit.botedge38:
+    interface: botedge38
+    subcomponent: starsplit
+  starsplit.botedge39:
+    interface: botedge39
+    subcomponent: starsplit
+  starsplit.botedge4:
+    interface: botedge4
+    subcomponent: starsplit
+  starsplit.botedge40:
+    interface: botedge40
+    subcomponent: starsplit
+  starsplit.botedge41:
+    interface: botedge41
+    subcomponent: starsplit
+  starsplit.botedge42:
+    interface: botedge42
+    subcomponent: starsplit
+  starsplit.botedge43:
+    interface: botedge43
+    subcomponent: starsplit
+  starsplit.botedge44:
+    interface: botedge44
+    subcomponent: starsplit
+  starsplit.botedge45:
+    interface: botedge45
+    subcomponent: starsplit
+  starsplit.botedge46:
+    interface: botedge46
+    subcomponent: starsplit
+  starsplit.botedge47:
+    interface: botedge47
+    subcomponent: starsplit
+  starsplit.botedge48:
+    interface: botedge48
+    subcomponent: starsplit
+  starsplit.botedge49:
+    interface: botedge49
+    subcomponent: starsplit
+  starsplit.botedge5:
+    interface: botedge5
+    subcomponent: starsplit
+  starsplit.botedge50:
+    interface: botedge50
+    subcomponent: starsplit
+  starsplit.botedge51:
+    interface: botedge51
+    subcomponent: starsplit
+  starsplit.botedge52:
+    interface: botedge52
+    subcomponent: starsplit
+  starsplit.botedge53:
+    interface: botedge53
+    subcomponent: starsplit
+  starsplit.botedge54:
+    interface: botedge54
+    subcomponent: starsplit
+  starsplit.botedge55:
+    interface: botedge55
+    subcomponent: starsplit
+  starsplit.botedge56:
+    interface: botedge56
+    subcomponent: starsplit
+  starsplit.botedge57:
+    interface: botedge57
+    subcomponent: starsplit
+  starsplit.botedge58:
+    interface: botedge58
+    subcomponent: starsplit
+  starsplit.botedge59:
+    interface: botedge59
+    subcomponent: starsplit
+  starsplit.botedge6:
+    interface: botedge6
+    subcomponent: starsplit
+  starsplit.botedge60:
+    interface: botedge60
+    subcomponent: starsplit
+  starsplit.botedge61:
+    interface: botedge61
+    subcomponent: starsplit
+  starsplit.botedge62:
+    interface: botedge62
+    subcomponent: starsplit
+  starsplit.botedge63:
+    interface: botedge63
+    subcomponent: starsplit
+  starsplit.botedge64:
+    interface: botedge64
+    subcomponent: starsplit
+  starsplit.botedge65:
+    interface: botedge65
+    subcomponent: starsplit
+  starsplit.botedge66:
+    interface: botedge66
+    subcomponent: starsplit
+  starsplit.botedge67:
+    interface: botedge67
+    subcomponent: starsplit
+  starsplit.botedge68:
+    interface: botedge68
+    subcomponent: starsplit
+  starsplit.botedge69:
+    interface: botedge69
+    subcomponent: starsplit
+  starsplit.botedge7:
+    interface: botedge7
+    subcomponent: starsplit
+  starsplit.botedge70:
+    interface: botedge70
+    subcomponent: starsplit
+  starsplit.botedge71:
+    interface: botedge71
+    subcomponent: starsplit
+  starsplit.botedge72:
+    interface: botedge72
+    subcomponent: starsplit
+  starsplit.botedge73:
+    interface: botedge73
+    subcomponent: starsplit
+  starsplit.botedge74:
+    interface: botedge74
+    subcomponent: starsplit
+  starsplit.botedge75:
+    interface: botedge75
+    subcomponent: starsplit
+  starsplit.botedge76:
+    interface: botedge76
+    subcomponent: starsplit
+  starsplit.botedge77:
+    interface: botedge77
+    subcomponent: starsplit
+  starsplit.botedge78:
+    interface: botedge78
+    subcomponent: starsplit
+  starsplit.botedge79:
+    interface: botedge79
+    subcomponent: starsplit
+  starsplit.botedge8:
+    interface: botedge8
+    subcomponent: starsplit
+  starsplit.botedge80:
+    interface: botedge80
+    subcomponent: starsplit
+  starsplit.botedge81:
+    interface: botedge81
+    subcomponent: starsplit
+  starsplit.botedge82:
+    interface: botedge82
+    subcomponent: starsplit
+  starsplit.botedge83:
+    interface: botedge83
+    subcomponent: starsplit
+  starsplit.botedge84:
+    interface: botedge84
+    subcomponent: starsplit
+  starsplit.botedge85:
+    interface: botedge85
+    subcomponent: starsplit
+  starsplit.botedge86:
+    interface: botedge86
+    subcomponent: starsplit
+  starsplit.botedge87:
+    interface: botedge87
+    subcomponent: starsplit
+  starsplit.botedge88:
+    interface: botedge88
+    subcomponent: starsplit
+  starsplit.botedge89:
+    interface: botedge89
+    subcomponent: starsplit
+  starsplit.botedge9:
+    interface: botedge9
+    subcomponent: starsplit
+  starsplit.botedge90:
+    interface: botedge90
+    subcomponent: starsplit
+  starsplit.botedge91:
+    interface: botedge91
+    subcomponent: starsplit
+  starsplit.botedge92:
+    interface: botedge92
+    subcomponent: starsplit
+  starsplit.botedge93:
+    interface: botedge93
+    subcomponent: starsplit
+  starsplit.botedge94:
+    interface: botedge94
+    subcomponent: starsplit
+  starsplit.botedge95:
+    interface: botedge95
+    subcomponent: starsplit
+  starsplit.botedge96:
+    interface: botedge96
+    subcomponent: starsplit
+  starsplit.botedge97:
+    interface: botedge97
+    subcomponent: starsplit
+  starsplit.botedge98:
+    interface: botedge98
+    subcomponent: starsplit
+  starsplit.botedge99:
+    interface: botedge99
+    subcomponent: starsplit
+  starsplit.topedge0:
+    interface: topedge0
+    subcomponent: starsplit
+  starsplit.topedge1:
+    interface: topedge1
+    subcomponent: starsplit
+  starsplit.topedge10:
+    interface: topedge10
+    subcomponent: starsplit
+  starsplit.topedge11:
+    interface: topedge11
+    subcomponent: starsplit
+  starsplit.topedge12:
+    interface: topedge12
+    subcomponent: starsplit
+  starsplit.topedge13:
+    interface: topedge13
+    subcomponent: starsplit
+  starsplit.topedge14:
+    interface: topedge14
+    subcomponent: starsplit
+  starsplit.topedge15:
+    interface: topedge15
+    subcomponent: starsplit
+  starsplit.topedge16:
+    interface: topedge16
+    subcomponent: starsplit
+  starsplit.topedge17:
+    interface: topedge17
+    subcomponent: starsplit
+  starsplit.topedge18:
+    interface: topedge18
+    subcomponent: starsplit
+  starsplit.topedge19:
+    interface: topedge19
+    subcomponent: starsplit
+  starsplit.topedge2:
+    interface: topedge2
+    subcomponent: starsplit
+  starsplit.topedge20:
+    interface: topedge20
+    subcomponent: starsplit
+  starsplit.topedge21:
+    interface: topedge21
+    subcomponent: starsplit
+  starsplit.topedge22:
+    interface: topedge22
+    subcomponent: starsplit
+  starsplit.topedge23:
+    interface: topedge23
+    subcomponent: starsplit
+  starsplit.topedge24:
+    interface: topedge24
+    subcomponent: starsplit
+  starsplit.topedge25:
+    interface: topedge25
+    subcomponent: starsplit
+  starsplit.topedge26:
+    interface: topedge26
+    subcomponent: starsplit
+  starsplit.topedge27:
+    interface: topedge27
+    subcomponent: starsplit
+  starsplit.topedge28:
+    interface: topedge28
+    subcomponent: starsplit
+  starsplit.topedge29:
+    interface: topedge29
+    subcomponent: starsplit
+  starsplit.topedge3:
+    interface: topedge3
+    subcomponent: starsplit
+  starsplit.topedge30:
+    interface: topedge30
+    subcomponent: starsplit
+  starsplit.topedge31:
+    interface: topedge31
+    subcomponent: starsplit
+  starsplit.topedge32:
+    interface: topedge32
+    subcomponent: starsplit
+  starsplit.topedge33:
+    interface: topedge33
+    subcomponent: starsplit
+  starsplit.topedge34:
+    interface: topedge34
+    subcomponent: starsplit
+  starsplit.topedge35:
+    interface: topedge35
+    subcomponent: starsplit
+  starsplit.topedge36:
+    interface: topedge36
+    subcomponent: starsplit
+  starsplit.topedge37:
+    interface: topedge37
+    subcomponent: starsplit
+  starsplit.topedge38:
+    interface: topedge38
+    subcomponent: starsplit
+  starsplit.topedge39:
+    interface: topedge39
+    subcomponent: starsplit
+  starsplit.topedge4:
+    interface: topedge4
+    subcomponent: starsplit
+  starsplit.topedge40:
+    interface: topedge40
+    subcomponent: starsplit
+  starsplit.topedge41:
+    interface: topedge41
+    subcomponent: starsplit
+  starsplit.topedge42:
+    interface: topedge42
+    subcomponent: starsplit
+  starsplit.topedge43:
+    interface: topedge43
+    subcomponent: starsplit
+  starsplit.topedge44:
+    interface: topedge44
+    subcomponent: starsplit
+  starsplit.topedge45:
+    interface: topedge45
+    subcomponent: starsplit
+  starsplit.topedge46:
+    interface: topedge46
+    subcomponent: starsplit
+  starsplit.topedge47:
+    interface: topedge47
+    subcomponent: starsplit
+  starsplit.topedge48:
+    interface: topedge48
+    subcomponent: starsplit
+  starsplit.topedge49:
+    interface: topedge49
+    subcomponent: starsplit
+  starsplit.topedge5:
+    interface: topedge5
+    subcomponent: starsplit
+  starsplit.topedge50:
+    interface: topedge50
+    subcomponent: starsplit
+  starsplit.topedge51:
+    interface: topedge51
+    subcomponent: starsplit
+  starsplit.topedge52:
+    interface: topedge52
+    subcomponent: starsplit
+  starsplit.topedge53:
+    interface: topedge53
+    subcomponent: starsplit
+  starsplit.topedge54:
+    interface: topedge54
+    subcomponent: starsplit
+  starsplit.topedge55:
+    interface: topedge55
+    subcomponent: starsplit
+  starsplit.topedge56:
+    interface: topedge56
+    subcomponent: starsplit
+  starsplit.topedge57:
+    interface: topedge57
+    subcomponent: starsplit
+  starsplit.topedge58:
+    interface: topedge58
+    subcomponent: starsplit
+  starsplit.topedge59:
+    interface: topedge59
+    subcomponent: starsplit
+  starsplit.topedge6:
+    interface: topedge6
+    subcomponent: starsplit
+  starsplit.topedge60:
+    interface: topedge60
+    subcomponent: starsplit
+  starsplit.topedge61:
+    interface: topedge61
+    subcomponent: starsplit
+  starsplit.topedge62:
+    interface: topedge62
+    subcomponent: starsplit
+  starsplit.topedge63:
+    interface: topedge63
+    subcomponent: starsplit
+  starsplit.topedge64:
+    interface: topedge64
+    subcomponent: starsplit
+  starsplit.topedge65:
+    interface: topedge65
+    subcomponent: starsplit
+  starsplit.topedge66:
+    interface: topedge66
+    subcomponent: starsplit
+  starsplit.topedge67:
+    interface: topedge67
+    subcomponent: starsplit
+  starsplit.topedge68:
+    interface: topedge68
+    subcomponent: starsplit
+  starsplit.topedge69:
+    interface: topedge69
+    subcomponent: starsplit
+  starsplit.topedge7:
+    interface: topedge7
+    subcomponent: starsplit
+  starsplit.topedge70:
+    interface: topedge70
+    subcomponent: starsplit
+  starsplit.topedge71:
+    interface: topedge71
+    subcomponent: starsplit
+  starsplit.topedge72:
+    interface: topedge72
+    subcomponent: starsplit
+  starsplit.topedge73:
+    interface: topedge73
+    subcomponent: starsplit
+  starsplit.topedge74:
+    interface: topedge74
+    subcomponent: starsplit
+  starsplit.topedge75:
+    interface: topedge75
+    subcomponent: starsplit
+  starsplit.topedge76:
+    interface: topedge76
+    subcomponent: starsplit
+  starsplit.topedge77:
+    interface: topedge77
+    subcomponent: starsplit
+  starsplit.topedge78:
+    interface: topedge78
+    subcomponent: starsplit
+  starsplit.topedge79:
+    interface: topedge79
+    subcomponent: starsplit
+  starsplit.topedge8:
+    interface: topedge8
+    subcomponent: starsplit
+  starsplit.topedge80:
+    interface: topedge80
+    subcomponent: starsplit
+  starsplit.topedge81:
+    interface: topedge81
+    subcomponent: starsplit
+  starsplit.topedge82:
+    interface: topedge82
+    subcomponent: starsplit
+  starsplit.topedge83:
+    interface: topedge83
+    subcomponent: starsplit
+  starsplit.topedge84:
+    interface: topedge84
+    subcomponent: starsplit
+  starsplit.topedge85:
+    interface: topedge85
+    subcomponent: starsplit
+  starsplit.topedge86:
+    interface: topedge86
+    subcomponent: starsplit
+  starsplit.topedge87:
+    interface: topedge87
+    subcomponent: starsplit
+  starsplit.topedge88:
+    interface: topedge88
+    subcomponent: starsplit
+  starsplit.topedge89:
+    interface: topedge89
+    subcomponent: starsplit
+  starsplit.topedge9:
+    interface: topedge9
+    subcomponent: starsplit
+  starsplit.topedge90:
+    interface: topedge90
+    subcomponent: starsplit
+  starsplit.topedge91:
+    interface: topedge91
+    subcomponent: starsplit
+  starsplit.topedge92:
+    interface: topedge92
+    subcomponent: starsplit
+  starsplit.topedge93:
+    interface: topedge93
+    subcomponent: starsplit
+  starsplit.topedge94:
+    interface: topedge94
+    subcomponent: starsplit
+  starsplit.topedge95:
+    interface: topedge95
+    subcomponent: starsplit
+  starsplit.topedge96:
+    interface: topedge96
+    subcomponent: starsplit
+  starsplit.topedge97:
+    interface: topedge97
+    subcomponent: starsplit
+  starsplit.topedge98:
+    interface: topedge98
+    subcomponent: starsplit
+  starsplit.topedge99:
+    interface: topedge99
+    subcomponent: starsplit
+parameters:
+  lServoMount.depth:
+    defaultValue: 24
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  lServoMount.width:
+    defaultValue: 20
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+  stack.length:
+    defaultValue: 61
+    spec:
+      minValue: 0
+      units: mm
+      valueType: (float, int)
+source: ../builders/boat/mounts/ServoStackMountBuilder.py
+subcomponents:
+  doubleServoMount:
+    classname: DoubleServoMount
+    kwargs: {}
+    parameters:
+      lServoMount.depth:
+        parameter: lServoMount.depth
+      lServoMount.width:
+        parameter: lServoMount.width
+  espStack:
+    classname: StackMount
+    kwargs: {}
+    parameters:
+      stack.length:
+        parameter: stack.length
+  portsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+        function: (x[2], 10, x[0], x[0]+x[1]*2+10)
+        parameter: &id001
+        - lServoMount.depth
+        - lServoMount.width
+        - stack.length
+      toplength:
+        function: (x[0]*2+x[1]*2+10*2+x[2],)
+        parameter: *id001
+  starsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+        function: (x[0]+x[1]*2+10, x[0], 10, x[2])
+        parameter: *id001
+      toplength:
+        function: (x[0] * 2 + x[1] * 2  + 10 * 2 + x[2],)
+        parameter: *id001
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
index d83a0ceb5cfe7c0a173bfc1cac1388195d3425f5..7f596d3c99179c8a4722fbfb89b221c97fe1d9fa 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
@@ -1,626 +1,655 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="402.000000mm" version="1.1" viewBox="0.000000 0.000000 688.308556 402.000000" width="688.308556mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="480.500000mm" version="1.1" viewBox="0.000000 0.000000 709.355061 480.500000" width="709.355061mm">
   <defs/>
-  <line opacity="0.5" stroke="#0000ff" x1="280.00000000000006" x2="280.00000000000006" y1="70.00000000000001" y2="298.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="190.00000000000003" x2="190.00000000000003" y1="70.00000000000001" y2="298.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="235.00000000000003" x2="190.00000000000003" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="280.00000000000006" x2="235.00000000000003" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="260.0" x2="190.00000000000003" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
-  <line stroke="#000000" x1="235.00000000000003" x2="260.0" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
-  <line opacity="1.0" stroke="#0000ff" x1="190.00000000000003" x2="190.00000000000003" y1="70.0" y2="-2.8421709430404014e-14"/>
-  <line opacity="1.0" stroke="#ff0000" x1="190.00000000000003" x2="120.00000000000003" y1="70.0" y2="-2.8421709430404014e-14"/>
-  <line stroke="#000000" x1="190.00000000000003" x2="120.00000000000003" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="120.00000000000001" x2="120.00000000000001" y1="70.0" y2="0.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="190.00000000000003" x2="120.00000000000001" y1="70.00000000000001" y2="70.0"/>
-  <line stroke="#000000" x1="96.66666666666666" x2="120.00000000000001" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="96.66666666666669" x2="96.66666666666666" y1="0.0" y2="70.0"/>
-  <line stroke="#000000" x1="120.00000000000003" x2="96.66666666666669" y1="0.0" y2="0.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="120.0" x2="190.00000000000003" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line opacity="1.0" stroke="#ff0000" x1="119.99999999999999" x2="190.00000000000003" y1="368.00000000000006" y2="298.00000000000006"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="119.99999999999999" x2="120.0" y1="368.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="119.99999999999999" x2="190.0" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line opacity="1.0" stroke="#0000ff" x1="190.0" x2="190.00000000000003" y1="368.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="259.99999999999994" x2="235.0" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="190.0" x2="259.99999999999994" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="190.00000000000003" x2="235.00000000000003" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="235.00000000000003" x2="280.00000000000006" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="210.00000000000003" x2="280.00000000000006" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="235.0" x2="210.00000000000003" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line opacity="1.0" stroke="#0000ff" x1="280.00000000000006" x2="280.00000000000006" y1="298.00000000000006" y2="368.00000000000006"/>
-  <line opacity="1.0" stroke="#ff0000" x1="280.00000000000006" x2="350.0" y1="298.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="280.00000000000006" x2="350.0" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="350.0" x2="350.0" y1="298.0000000000001" y2="368.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="280.00000000000006" x2="350.0" y1="298.00000000000006" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="373.3333333333333" x2="350.0" y1="298.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="373.33333333333326" x2="373.3333333333333" y1="368.00000000000006" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="349.99999999999994" x2="373.33333333333326" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="350.00000000000006" x2="280.0000000000001" y1="70.0" y2="69.99999999999997"/>
-  <line opacity="1.0" stroke="#ff0000" x1="350.00000000000006" x2="280.0000000000001" y1="-2.8421709430404014e-14" y2="69.99999999999996"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="350.00000000000006" x2="350.00000000000006" y1="-2.8421709430404014e-14" y2="69.99999999999999"/>
-  <line stroke="#000000" x1="350.00000000000006" x2="280.00000000000017" y1="-2.8421709430404014e-14" y2="-5.684341886080803e-14"/>
-  <line opacity="1.0" stroke="#0000ff" x1="280.00000000000017" x2="280.0000000000001" y1="-5.684341886080803e-14" y2="69.99999999999997"/>
-  <line stroke="#000000" x1="210.0000000000001" x2="235.00000000000009" y1="-1.1368683772161605e-13" y2="-8.526512829121203e-14"/>
-  <line stroke="#000000" x1="280.0000000000001" x2="210.0000000000001" y1="-5.684341886080803e-14" y2="-1.1368683772161605e-13"/>
-  <line stroke="#000000" x1="373.33333333333337" x2="350.00000000000006" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="373.33333333333337" x2="373.33333333333337" y1="70.00000000000003" y2="0.0"/>
-  <line stroke="#000000" x1="350.00000000000006" x2="373.33333333333337" y1="70.00000000000001" y2="70.00000000000003"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="298.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="350.00000000000006" x2="350.00000000000006" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="350.0" x2="350.00000000000006" y1="131.0" y2="70.0"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="141.0" y2="131.0"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="238.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="238.00000000000003" y2="238.00000000000003"/>
-  <line stroke="#000000" x1="350.00000000000006" x2="350.00000000000006" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="350.0" y1="141.0" y2="141.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="350.0" x2="384.00000000000006" y1="165.00000000000003" y2="165.00000000000006"/>
-  <line stroke="#000000" x1="420.00000000000006" x2="384.00000000000006" y1="141.00000000000003" y2="141.0"/>
-  <line opacity="0.5" stroke="#ff0000" x1="420.00000000000006" x2="420.00000000000006" y1="141.00000000000003" y2="165.00000000000006"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="420.00000000000006" y1="165.00000000000006" y2="165.00000000000006"/>
-  <line stroke="#000000" x1="420.00000000000006" x2="465.00000000000006" y1="165.00000000000006" y2="165.00000000000009"/>
-  <line stroke="#000000" x1="465.00000000000006" x2="420.00000000000006" y1="141.00000000000006" y2="141.00000000000003"/>
-  <line stroke="#000000" x1="465.00000000000006" x2="465.00000000000006" y1="165.00000000000009" y2="141.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="165.00000000000003" y2="185.00000000000003"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="185.00000000000006" y2="165.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="350.0" x2="384.00000000000006" y1="185.00000000000003" y2="185.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="185.00000000000003" y2="209.00000000000003"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="209.00000000000006" y2="185.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="350.0" x2="384.00000000000006" y1="209.00000000000003" y2="209.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="209.00000000000006" y2="229.00000000000006"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="229.00000000000006" y2="209.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="384.00000000000006" x2="350.0" y1="229.00000000000006" y2="229.00000000000006"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="239.00000000000006" y2="229.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="384.00000000000006" y1="239.00000000000006" y2="239.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="229.00000000000006" y2="239.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="411.65427803486153" y1="298.00000000000006" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="411.65427803486153" x2="350.0" y1="238.00000000000009" y2="238.00000000000003"/>
-  <line opacity="0.25" stroke="#ff0000" x1="411.65427803486153" x2="411.65427803486153" y1="238.00000000000009" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="438.65427803486153" x2="411.65427803486153" y1="238.00000000000009" y2="238.00000000000009"/>
-  <line opacity="0.25" stroke="#ff0000" x1="438.65427803486153" x2="438.65427803486153" y1="298.0000000000001" y2="238.00000000000009"/>
-  <line opacity="0.5" stroke="#0000ff" x1="411.65427803486153" x2="438.65427803486153" y1="298.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="500.30855606972295" x2="438.65427803486153" y1="238.0000000000001" y2="238.00000000000009"/>
-  <line stroke="#000000" x1="500.30855606972295" x2="500.30855606972295" y1="298.00000000000017" y2="238.0000000000001"/>
-  <line stroke="#000000" x1="438.6542780348615" x2="500.30855606972295" y1="298.0000000000001" y2="298.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348615" x2="411.6542780348615" y1="298.0000000000001" y2="315.0000000000001"/>
-  <line stroke="#000000" x1="438.6542780348615" x2="438.6542780348615" y1="315.00000000000017" y2="298.0000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="411.6542780348615" x2="438.6542780348615" y1="315.0000000000001" y2="315.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348615" x2="411.6542780348615" y1="315.0000000000001" y2="375.00000000000017"/>
-  <line stroke="#000000" x1="438.6542780348615" x2="438.6542780348615" y1="375.00000000000017" y2="315.00000000000017"/>
-  <line opacity="0.5" stroke="#0000ff" x1="411.6542780348615" x2="438.6542780348615" y1="375.00000000000017" y2="375.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348614" x2="411.6542780348614" y1="375.00000000000017" y2="392.00000000000017"/>
-  <line stroke="#000000" x1="438.65427803486136" x2="438.65427803486136" y1="392.00000000000017" y2="375.00000000000017"/>
-  <line opacity="0.5" stroke="#0000ff" x1="438.65427803486136" x2="411.6542780348614" y1="392.00000000000017" y2="392.00000000000017"/>
-  <line stroke="#000000" x1="438.65427803486136" x2="438.65427803486136" y1="402.00000000000017" y2="392.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348614" x2="438.65427803486136" y1="402.00000000000017" y2="402.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348614" x2="411.6542780348614" y1="392.00000000000017" y2="402.00000000000017"/>
-  <line stroke="#000000" x1="96.66666666666666" x2="120.0" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666666" y1="298.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="120.0" x2="96.66666666666666" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="120.0" x2="120.0" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="110.0" x2="120.0" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="110.0" x2="110.0" y1="238.00000000000003" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="120.0" x2="110.0" y1="238.00000000000003" y2="238.00000000000003"/>
-  <line stroke="#000000" x1="120.0" x2="120.0" y1="165.00000000000003" y2="238.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.0" y1="131.0" y2="141.0"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="120.0" x2="120.0" y1="238.00000000000003" y2="238.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="86.00000000000001" y1="141.0" y2="141.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="86.00000000000001" x2="120.00000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="50.0" x2="86.00000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line opacity="0.5" stroke="#ff0000" x1="50.0" x2="50.0" y1="165.00000000000003" y2="141.0"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="50.0" y1="141.0" y2="141.0"/>
-  <line stroke="#000000" x1="50.0" x2="5.000000000000001" y1="141.0" y2="141.0"/>
-  <line stroke="#000000" x1="5.000000000000001" x2="50.0" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="0.0" x2="5.000000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="141.0" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="5.000000000000001" x2="0.0" y1="141.0" y2="141.0"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="165.00000000000003" y2="185.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="185.00000000000003" y2="165.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="86.00000000000001" x2="120.00000000000001" y1="185.00000000000003" y2="185.00000000000003"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="185.00000000000003" y2="209.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="209.00000000000003" y2="185.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="86.00000000000001" x2="120.00000000000001" y1="209.00000000000003" y2="209.00000000000003"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="209.00000000000003" y2="229.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="229.00000000000003" y2="209.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="120.00000000000001" x2="86.00000000000001" y1="229.00000000000003" y2="229.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="239.00000000000003" y2="229.00000000000003"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="120.00000000000001" y1="239.00000000000003" y2="239.00000000000003"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="229.00000000000003" y2="239.00000000000003"/>
-  <line opacity="0.25" stroke="#0000ff" x1="83.86137800081468" x2="83.86137800081468" y1="131.0" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="83.86137800081468" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="83.86137800081468" x2="120.0" y1="131.0" y2="131.0"/>
-  <line opacity="0.25" stroke="#0000ff" x1="59.86137800081469" x2="59.86137800081469" y1="70.00000000000001" y2="131.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="59.86137800081469" x2="83.86137800081468" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="23.722756001629364" x2="59.86137800081469" y1="131.0" y2="131.0"/>
-  <line stroke="#000000" x1="59.86137800081469" x2="23.722756001629364" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="13.722756001629365" x2="23.722756001629364" y1="131.0" y2="131.0"/>
-  <line stroke="#000000" x1="13.722756001629365" x2="13.722756001629365" y1="70.0" y2="131.0"/>
-  <line stroke="#000000" x1="23.722756001629364" x2="13.722756001629365" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="59.86137800081469" x2="59.86137800081469" y1="60.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="83.86137800081468" x2="59.86137800081469" y1="60.00000000000001" y2="60.00000000000001"/>
-  <line stroke="#000000" x1="83.86137800081468" x2="83.86137800081468" y1="70.00000000000001" y2="60.00000000000001"/>
-  <line stroke="#000000" x1="83.86137800081468" x2="83.86137800081468" y1="141.0" y2="131.0"/>
-  <line stroke="#000000" x1="59.86137800081469" x2="83.86137800081468" y1="141.0" y2="141.0"/>
-  <line stroke="#000000" x1="59.86137800081469" x2="59.86137800081469" y1="131.0" y2="141.0"/>
-  <line stroke="#888888" x1="236.91666666666669" x2="213.08333333333334" y1="17.74999999999997" y2="17.74999999999997"/>
-  <line stroke="#888888" x1="213.08333333333334" x2="213.08333333333334" y1="17.74999999999997" y2="17.249999999999975"/>
-  <line stroke="#888888" x1="213.08333333333334" x2="236.91666666666669" y1="17.249999999999975" y2="17.249999999999975"/>
-  <line stroke="#888888" x1="236.91666666666669" x2="236.91666666666669" y1="17.249999999999975" y2="17.74999999999997"/>
-  <line stroke="#888888" x1="102.50000000000001" x2="114.1666666666667" y1="23.333333333333318" y2="23.333333333333318"/>
-  <line stroke="#888888" x1="114.1666666666667" x2="114.16666666666669" y1="23.333333333333318" y2="46.66666666666666"/>
-  <line stroke="#888888" x1="114.16666666666669" x2="102.50000000000004" y1="46.66666666666666" y2="46.66666666666666"/>
-  <line stroke="#888888" x1="213.08333333333334" x2="236.91666666666666" y1="350.25" y2="350.25"/>
-  <line stroke="#888888" x1="236.91666666666666" x2="236.91666666666666" y1="350.25" y2="350.75"/>
-  <line stroke="#888888" x1="236.91666666666666" x2="213.08333333333334" y1="350.75" y2="350.75"/>
-  <line stroke="#888888" x1="213.08333333333334" x2="213.08333333333334" y1="350.75" y2="350.25"/>
-  <line stroke="#888888" x1="233.08333333333334" x2="256.9166666666667" y1="350.25" y2="350.25"/>
-  <line stroke="#888888" x1="256.9166666666667" x2="256.9166666666667" y1="350.25" y2="350.75"/>
-  <line stroke="#888888" x1="256.9166666666667" x2="233.08333333333334" y1="350.75" y2="350.75"/>
-  <line stroke="#888888" x1="233.08333333333334" x2="233.08333333333334" y1="350.75" y2="350.25"/>
-  <line stroke="#888888" x1="367.5" x2="355.83333333333337" y1="344.6666666666668" y2="344.6666666666668"/>
-  <line stroke="#888888" x1="355.83333333333337" x2="355.83333333333337" y1="344.6666666666668" y2="321.3333333333334"/>
-  <line stroke="#888888" x1="355.83333333333337" x2="367.50000000000006" y1="321.3333333333334" y2="321.3333333333334"/>
-  <line stroke="#888888" x1="256.91666666666674" x2="233.08333333333343" y1="17.749999999999915" y2="17.74999999999989"/>
-  <line stroke="#888888" x1="233.08333333333343" x2="233.08333333333343" y1="17.74999999999989" y2="17.249999999999886"/>
-  <line stroke="#888888" x1="233.08333333333343" x2="256.91666666666674" y1="17.249999999999886" y2="17.24999999999992"/>
-  <line stroke="#888888" x1="256.91666666666674" x2="256.91666666666674" y1="17.24999999999992" y2="17.749999999999915"/>
-  <line stroke="#888888" x1="367.5000000000001" x2="355.8333333333334" y1="46.66666666666669" y2="46.66666666666666"/>
-  <line stroke="#888888" x1="355.8333333333334" x2="355.8333333333334" y1="46.66666666666666" y2="23.333333333333346"/>
-  <line stroke="#888888" x1="355.8333333333334" x2="367.50000000000006" y1="23.333333333333346" y2="23.333333333333346"/>
-  <line stroke="#888888" x1="342.2500000000001" x2="342.2500000000001" y1="92.43181818181819" y2="80.84090909090908"/>
-  <line stroke="#888888" x1="342.2500000000001" x2="342.7500000000001" y1="80.84090909090908" y2="80.84090909090908"/>
-  <line stroke="#888888" x1="342.7500000000001" x2="342.7500000000001" y1="80.84090909090908" y2="92.43181818181819"/>
-  <line stroke="#888888" x1="342.7500000000001" x2="342.2500000000001" y1="92.43181818181819" y2="92.43181818181819"/>
-  <line stroke="#888888" x1="342.25000000000006" x2="342.25000000000006" y1="120.15909090909092" y2="108.56818181818183"/>
-  <line stroke="#888888" x1="342.25000000000006" x2="342.75000000000006" y1="108.56818181818183" y2="108.56818181818183"/>
-  <line stroke="#888888" x1="342.75000000000006" x2="342.75000000000006" y1="108.56818181818183" y2="120.15909090909092"/>
-  <line stroke="#888888" x1="342.75000000000006" x2="342.25000000000006" y1="120.15909090909092" y2="120.15909090909092"/>
-  <line stroke="#888888" x1="372.9166666666667" x2="361.0833333333334" y1="148.75000000000003" y2="148.75000000000003"/>
-  <line stroke="#888888" x1="361.0833333333334" x2="361.0833333333334" y1="148.75000000000003" y2="148.25"/>
-  <line stroke="#888888" x1="361.0833333333334" x2="372.9166666666667" y1="148.25" y2="148.25"/>
-  <line stroke="#888888" x1="372.9166666666667" x2="372.9166666666667" y1="148.25" y2="148.75000000000003"/>
-  <line stroke="#888888" x1="461.00000000000006" x2="461.00000000000006" y1="157.25000000000009" y2="148.75000000000009"/>
-  <line stroke="#888888" x1="461.00000000000006" x2="461.50000000000006" y1="148.75000000000009" y2="148.75000000000009"/>
-  <line stroke="#888888" x1="461.50000000000006" x2="461.50000000000006" y1="148.75000000000009" y2="157.25000000000009"/>
-  <line stroke="#888888" x1="461.50000000000006" x2="461.00000000000006" y1="157.25000000000009" y2="157.25000000000009"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="184.00000000000003" y2="180.00000000000006"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="180.00000000000006" y2="180.00000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="373.0" y1="180.00000000000006" y2="184.00000000000003"/>
-  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="184.00000000000003" y2="184.00000000000003"/>
-  <line stroke="#888888" x1="362.50000000000006" x2="362.50000000000006" y1="172.00000000000003" y2="168.0"/>
-  <line stroke="#888888" x1="362.50000000000006" x2="371.50000000000006" y1="168.0" y2="168.00000000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="168.00000000000003" y2="172.00000000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="362.50000000000006" y1="172.00000000000006" y2="172.00000000000003"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="208.50000000000006" y2="185.50000000000006"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="185.50000000000006" y2="185.50000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="373.0" y1="185.50000000000006" y2="208.50000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="208.50000000000006" y2="208.50000000000006"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="214.00000000000006" y2="210.00000000000006"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="210.00000000000006" y2="210.00000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="373.0" y1="210.00000000000006" y2="214.00000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="214.00000000000006" y2="214.00000000000006"/>
-  <line stroke="#888888" x1="361.3333333333334" x2="361.3333333333334" y1="236.50000000000003" y2="231.50000000000006"/>
-  <line stroke="#888888" x1="361.3333333333334" x2="372.6666666666667" y1="231.50000000000006" y2="231.50000000000006"/>
-  <line stroke="#888888" x1="372.6666666666667" x2="372.6666666666667" y1="231.50000000000006" y2="236.50000000000003"/>
-  <line stroke="#888888" x1="416.15427803486153" x2="416.15427803486153" y1="297.5000000000001" y2="294.5000000000001"/>
-  <line stroke="#888888" x1="416.15427803486153" x2="434.15427803486153" y1="294.5000000000001" y2="294.5000000000001"/>
-  <line stroke="#888888" x1="434.15427803486153" x2="434.15427803486153" y1="294.5000000000001" y2="297.5000000000001"/>
-  <line stroke="#888888" x1="434.15427803486153" x2="416.15427803486153" y1="297.5000000000001" y2="297.5000000000001"/>
-  <line stroke="#888888" x1="429.90427803486153" x2="420.40427803486153" y1="245.75000000000009" y2="245.75000000000009"/>
-  <line stroke="#888888" x1="420.40427803486153" x2="420.40427803486153" y1="245.75000000000009" y2="245.25000000000009"/>
-  <line stroke="#888888" x1="420.40427803486153" x2="429.90427803486153" y1="245.25000000000009" y2="245.25000000000009"/>
-  <line stroke="#888888" x1="429.90427803486153" x2="429.90427803486153" y1="245.25000000000009" y2="245.75000000000009"/>
-  <line stroke="#888888" x1="492.55855606972295" x2="492.55855606972295" y1="278.25000000000017" y2="257.75000000000017"/>
-  <line stroke="#888888" x1="492.55855606972295" x2="493.05855606972295" y1="257.75000000000017" y2="257.75000000000017"/>
-  <line stroke="#888888" x1="493.05855606972295" x2="493.05855606972295" y1="257.75000000000017" y2="278.25000000000017"/>
-  <line stroke="#888888" x1="493.05855606972295" x2="492.55855606972295" y1="278.25000000000017" y2="278.25000000000017"/>
-  <line stroke="#888888" x1="416.1542780348615" x2="416.1542780348615" y1="301.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#888888" x1="416.1542780348615" x2="434.1542780348615" y1="298.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#888888" x1="434.1542780348615" x2="434.1542780348615" y1="298.0000000000001" y2="301.0000000000001"/>
-  <line stroke="#888888" x1="434.1542780348615" x2="416.1542780348615" y1="301.0000000000001" y2="301.0000000000001"/>
-  <line stroke="#888888" x1="420.6542780348614" x2="420.6542780348614" y1="399.5000000000001" y2="394.50000000000017"/>
-  <line stroke="#888888" x1="420.6542780348614" x2="429.65427803486136" y1="394.50000000000017" y2="394.50000000000017"/>
-  <line stroke="#888888" x1="429.65427803486136" x2="429.65427803486136" y1="394.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#888888" x1="102.50000000000001" x2="114.16666666666667" y1="321.33333333333337" y2="321.33333333333337"/>
-  <line stroke="#888888" x1="114.16666666666667" x2="114.16666666666667" y1="321.33333333333337" y2="344.6666666666667"/>
-  <line stroke="#888888" x1="114.16666666666667" x2="102.50000000000001" y1="344.6666666666667" y2="344.6666666666667"/>
-  <line stroke="#888888" x1="112.5" x2="112.5" y1="258.0" y2="253.00000000000003"/>
-  <line stroke="#888888" x1="112.5" x2="117.5" y1="253.00000000000003" y2="258.0"/>
-  <line stroke="#888888" x1="117.5" x2="117.5" y1="258.0" y2="278.0"/>
-  <line stroke="#888888" x1="117.5" x2="112.5" y1="278.0" y2="283.0"/>
-  <line stroke="#888888" x1="112.5" x2="112.5" y1="283.0" y2="278.0"/>
-  <line stroke="#888888" x1="108.91666666666669" x2="97.08333333333336" y1="148.75000000000003" y2="148.75000000000003"/>
-  <line stroke="#888888" x1="97.08333333333336" x2="97.08333333333336" y1="148.75000000000003" y2="148.25"/>
-  <line stroke="#888888" x1="97.08333333333336" x2="108.91666666666669" y1="148.25" y2="148.25"/>
-  <line stroke="#888888" x1="108.91666666666669" x2="108.91666666666669" y1="148.25" y2="148.75000000000003"/>
-  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="149.00000000000003" y2="146.50000000000003"/>
-  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="146.50000000000003" y2="149.00000000000003"/>
-  <line stroke="#888888" x1="3.7500000000000004" x2="3.7500000000000004" y1="149.00000000000003" y2="157.0"/>
-  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="157.0" y2="159.5"/>
-  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="159.5" y2="157.0"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="184.00000000000003" y2="180.0"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="180.0" y2="180.0"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="180.0" y2="184.00000000000003"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="184.00000000000003" y2="184.00000000000003"/>
-  <line stroke="#888888" x1="98.50000000000001" x2="98.50000000000001" y1="172.00000000000003" y2="168.0"/>
-  <line stroke="#888888" x1="98.50000000000001" x2="107.50000000000001" y1="168.0" y2="168.0"/>
-  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="168.0" y2="172.00000000000003"/>
-  <line stroke="#888888" x1="107.50000000000001" x2="98.50000000000001" y1="172.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="208.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="185.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="185.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="214.0" y2="210.00000000000003"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="210.00000000000003" y2="210.00000000000003"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="210.00000000000003" y2="214.0"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="214.0" y2="214.0"/>
-  <line stroke="#888888" x1="97.33333333333336" x2="97.33333333333336" y1="236.50000000000003" y2="231.50000000000003"/>
-  <line stroke="#888888" x1="97.33333333333336" x2="108.66666666666669" y1="231.50000000000003" y2="231.50000000000003"/>
-  <line stroke="#888888" x1="108.66666666666669" x2="108.66666666666669" y1="231.50000000000003" y2="236.50000000000003"/>
-  <line stroke="#888888" x1="65.36137800081468" x2="65.36137800081468" y1="113.00000000000001" y2="102.00000000000001"/>
-  <line stroke="#888888" x1="65.36137800081468" x2="78.36137800081468" y1="102.00000000000001" y2="102.00000000000001"/>
-  <line stroke="#888888" x1="78.36137800081468" x2="78.36137800081468" y1="102.00000000000001" y2="113.00000000000001"/>
-  <line stroke="#888888" x1="78.36137800081468" x2="65.36137800081468" y1="113.00000000000001" y2="113.00000000000001"/>
-  <line stroke="#888888" x1="66.8613780008147" x2="66.8613780008147" y1="81.50000000000001" y2="75.50000000000001"/>
-  <line stroke="#888888" x1="66.8613780008147" x2="76.8613780008147" y1="75.50000000000001" y2="75.50000000000001"/>
-  <line stroke="#888888" x1="76.8613780008147" x2="76.8613780008147" y1="75.50000000000001" y2="81.50000000000001"/>
-  <line stroke="#888888" x1="76.8613780008147" x2="66.8613780008147" y1="81.50000000000001" y2="81.50000000000001"/>
-  <line stroke="#888888" x1="16.222756001629364" x2="21.222756001629367" y1="81.0909090909091" y2="81.0909090909091"/>
-  <line stroke="#888888" x1="21.222756001629367" x2="21.222756001629367" y1="81.0909090909091" y2="92.18181818181819"/>
-  <line stroke="#888888" x1="21.222756001629367" x2="16.222756001629364" y1="92.18181818181819" y2="92.18181818181819"/>
-  <line stroke="#888888" x1="16.222756001629364" x2="21.222756001629367" y1="108.81818181818183" y2="108.81818181818183"/>
-  <line stroke="#888888" x1="21.222756001629367" x2="21.222756001629367" y1="108.81818181818183" y2="119.90909090909092"/>
-  <line stroke="#888888" x1="21.222756001629367" x2="16.222756001629364" y1="119.90909090909092" y2="119.90909090909092"/>
-  <line stroke="#888888" x1="75.86137800081468" x2="75.86137800081468" y1="62.50000000000001" y2="67.50000000000001"/>
-  <line stroke="#888888" x1="75.86137800081468" x2="67.86137800081468" y1="67.50000000000001" y2="67.50000000000001"/>
-  <line stroke="#888888" x1="67.86137800081468" x2="67.86137800081468" y1="67.50000000000001" y2="62.50000000000001"/>
-  <line stroke="#888888" x1="67.86137800081468" x2="67.86137800081468" y1="138.5" y2="133.5"/>
-  <line stroke="#888888" x1="67.86137800081468" x2="75.86137800081468" y1="133.5" y2="133.5"/>
-  <line stroke="#888888" x1="75.86137800081468" x2="75.86137800081468" y1="133.5" y2="138.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="543.3085560697231" x2="604.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="604.308556069723" x2="604.308556069723" y1="172.00000000000003" y2="196.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="604.308556069723" x2="543.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="543.3085560697231" x2="543.3085560697231" y1="196.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#000000" x1="543.3085560697231" x2="543.3085560697231" y1="165.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#000000" x1="603.308556069723" x2="543.3085560697231" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="603.308556069723" x2="603.308556069723" y1="172.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="611.308556069723" x2="604.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#000000" x1="611.308556069723" x2="611.308556069723" y1="196.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#000000" x1="604.308556069723" x2="611.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="604.308556069723" x2="604.308556069723" y1="196.00000000000003" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="544.3085560697231" x2="604.308556069723" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="544.3085560697231" x2="544.3085560697231" y1="196.00000000000003" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="628.3085560697231" x2="604.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="628.3085560697231" x2="628.3085560697231" y1="196.00000000000003" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="604.308556069723" x2="628.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="688.3085560697231" x2="628.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="688.3085560697231" x2="688.3085560697231" y1="257.00000000000006" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="628.3085560697231" x2="688.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="544.3085560697231" x2="520.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="520.3085560697231" x2="544.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line opacity="0.5" stroke="#0000ff" x1="520.3085560697231" x2="520.3085560697231" y1="257.00000000000006" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="510.308556069723" x2="520.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="510.308556069723" x2="510.308556069723" y1="196.00000000000003" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="520.3085560697231" x2="510.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="536.308556069723" x2="543.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="536.308556069723" x2="536.308556069723" y1="172.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="543.3085560697231" x2="536.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#888888" x1="592.3994651606322" x2="595.8994651606321" y1="166.75000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="595.8994651606321" x2="592.3994651606322" y1="166.75000000000003" y2="170.25000000000003"/>
-  <line stroke="#888888" x1="592.3994651606322" x2="581.4903742515411" y1="170.25000000000003" y2="170.25000000000003"/>
-  <line stroke="#888888" x1="581.4903742515411" x2="577.9903742515413" y1="170.25000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="577.9903742515413" x2="581.4903742515411" y1="166.75000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="565.1267378879049" x2="568.6267378879048" y1="166.75000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="568.6267378879048" x2="565.1267378879049" y1="166.75000000000003" y2="170.25000000000003"/>
-  <line stroke="#888888" x1="565.1267378879049" x2="554.2176469788138" y1="170.25000000000003" y2="170.25000000000003"/>
-  <line stroke="#888888" x1="554.2176469788138" x2="550.717646978814" y1="170.25000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="550.717646978814" x2="554.2176469788138" y1="166.75000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="609.5585560697231" x2="606.058556069723" y1="188.00000000000003" y2="188.00000000000003"/>
-  <line stroke="#888888" x1="606.058556069723" x2="606.058556069723" y1="188.00000000000003" y2="180.0"/>
-  <line stroke="#888888" x1="606.058556069723" x2="609.5585560697231" y1="180.0" y2="180.0"/>
-  <line stroke="#888888" x1="551.8085560697231" x2="551.8085560697231" y1="247.50000000000003" y2="229.50000000000003"/>
-  <line stroke="#888888" x1="551.8085560697231" x2="586.8085560697231" y1="229.50000000000003" y2="229.50000000000003"/>
-  <line stroke="#888888" x1="586.8085560697231" x2="586.8085560697231" y1="229.50000000000003" y2="247.50000000000003"/>
-  <line stroke="#888888" x1="586.8085560697231" x2="551.8085560697231" y1="247.50000000000003" y2="247.50000000000003"/>
-  <line stroke="#888888" x1="604.8085560697231" x2="604.8085560697231" y1="209.25" y2="206.25000000000003"/>
-  <line stroke="#888888" x1="604.8085560697231" x2="607.8085560697231" y1="206.25000000000003" y2="206.25000000000003"/>
-  <line stroke="#888888" x1="607.8085560697231" x2="607.8085560697231" y1="206.25000000000003" y2="209.25"/>
-  <line stroke="#888888" x1="607.8085560697231" x2="604.8085560697231" y1="209.25" y2="209.25"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="208.25000000000003" y2="207.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="207.25000000000003" y2="207.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="207.25000000000003" y2="208.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="208.25000000000003" y2="208.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="220.75" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="219.75000000000003" y2="220.75"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="220.75" y2="220.75"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="220.75" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="219.75000000000003" y2="220.75"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="220.75" y2="220.75"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="230.75000000000003" y2="229.75"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="229.75" y2="229.75"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="229.75" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="230.75000000000003" y2="229.75"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="229.75" y2="229.75"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="229.75" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="245.75000000000003" y2="244.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="244.75000000000003" y2="244.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="244.75000000000003" y2="245.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="245.75000000000003" y2="245.75000000000003"/>
-  <line stroke="#888888" x1="624.8085560697231" x2="624.8085560697231" y1="246.75000000000003" y2="243.75000000000003"/>
-  <line stroke="#888888" x1="624.8085560697231" x2="627.8085560697231" y1="243.75000000000003" y2="243.75000000000003"/>
-  <line stroke="#888888" x1="627.8085560697231" x2="627.8085560697231" y1="243.75000000000003" y2="246.75000000000003"/>
-  <line stroke="#888888" x1="627.8085560697231" x2="624.8085560697231" y1="246.75000000000003" y2="246.75000000000003"/>
-  <line stroke="#888888" x1="620.5585560697231" x2="612.0585560697231" y1="203.75000000000003" y2="203.75000000000003"/>
-  <line stroke="#888888" x1="612.0585560697231" x2="612.0585560697231" y1="203.75000000000003" y2="203.25000000000003"/>
-  <line stroke="#888888" x1="612.0585560697231" x2="620.5585560697231" y1="203.25000000000003" y2="203.25000000000003"/>
-  <line stroke="#888888" x1="620.5585560697231" x2="620.5585560697231" y1="203.25000000000003" y2="203.75000000000003"/>
-  <line stroke="#888888" x1="612.0585560697231" x2="620.5585560697231" y1="251.50000000000003" y2="251.50000000000003"/>
-  <line stroke="#888888" x1="620.5585560697231" x2="620.5585560697231" y1="251.50000000000003" y2="252.00000000000003"/>
-  <line stroke="#888888" x1="620.5585560697231" x2="612.0585560697231" y1="252.00000000000003" y2="252.00000000000003"/>
-  <line stroke="#888888" x1="612.0585560697231" x2="612.0585560697231" y1="252.00000000000003" y2="251.50000000000003"/>
-  <line stroke="#888888" x1="643.3085560697231" x2="643.3085560697231" y1="247.00000000000003" y2="234.00000000000003"/>
-  <line stroke="#888888" x1="643.3085560697231" x2="673.3085560697231" y1="234.00000000000003" y2="234.00000000000003"/>
-  <line stroke="#888888" x1="673.3085560697231" x2="673.3085560697231" y1="234.00000000000003" y2="247.00000000000003"/>
-  <line stroke="#888888" x1="673.3085560697231" x2="643.3085560697231" y1="247.00000000000003" y2="247.00000000000003"/>
-  <line stroke="#888888" x1="650.3767378879048" x2="638.967646978814" y1="201.50000000000003" y2="201.50000000000003"/>
-  <line stroke="#888888" x1="638.967646978814" x2="638.967646978814" y1="201.50000000000003" y2="201.00000000000003"/>
-  <line stroke="#888888" x1="638.967646978814" x2="650.3767378879048" y1="201.00000000000003" y2="201.00000000000003"/>
-  <line stroke="#888888" x1="650.3767378879048" x2="650.3767378879048" y1="201.00000000000003" y2="201.50000000000003"/>
-  <line stroke="#888888" x1="677.6494651606322" x2="666.2403742515412" y1="201.50000000000003" y2="201.50000000000003"/>
-  <line stroke="#888888" x1="666.2403742515412" x2="666.2403742515412" y1="201.50000000000003" y2="201.00000000000003"/>
-  <line stroke="#888888" x1="666.2403742515412" x2="677.6494651606322" y1="201.00000000000003" y2="201.00000000000003"/>
-  <line stroke="#888888" x1="677.6494651606322" x2="677.6494651606322" y1="201.00000000000003" y2="201.50000000000003"/>
-  <line stroke="#888888" x1="680.558556069723" x2="680.558556069723" y1="218.43181818181822" y2="206.84090909090912"/>
-  <line stroke="#888888" x1="680.558556069723" x2="681.058556069723" y1="206.84090909090912" y2="206.84090909090912"/>
-  <line stroke="#888888" x1="681.058556069723" x2="681.058556069723" y1="206.84090909090912" y2="218.43181818181822"/>
-  <line stroke="#888888" x1="681.058556069723" x2="680.558556069723" y1="218.43181818181822" y2="218.43181818181822"/>
-  <line stroke="#888888" x1="680.558556069723" x2="680.558556069723" y1="246.15909090909093" y2="234.5681818181818"/>
-  <line stroke="#888888" x1="680.558556069723" x2="681.058556069723" y1="234.5681818181818" y2="234.5681818181818"/>
-  <line stroke="#888888" x1="681.058556069723" x2="681.058556069723" y1="234.5681818181818" y2="246.15909090909093"/>
-  <line stroke="#888888" x1="681.058556069723" x2="680.558556069723" y1="246.15909090909093" y2="246.15909090909093"/>
-  <line stroke="#888888" x1="520.8085560697231" x2="520.8085560697231" y1="209.25" y2="206.25000000000003"/>
-  <line stroke="#888888" x1="520.8085560697231" x2="523.8085560697231" y1="206.25000000000003" y2="206.25000000000003"/>
-  <line stroke="#888888" x1="523.8085560697231" x2="523.8085560697231" y1="206.25000000000003" y2="209.25"/>
-  <line stroke="#888888" x1="523.8085560697231" x2="520.8085560697231" y1="209.25" y2="209.25"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="208.25000000000003" y2="207.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="207.25000000000003" y2="207.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="207.25000000000003" y2="208.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="208.25000000000003" y2="208.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="210.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="209.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="209.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="210.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="213.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="212.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="212.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="213.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="215.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="214.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="214.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="215.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="218.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="217.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="217.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="218.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="220.75" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="219.75000000000003" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="219.75000000000003" y2="220.75"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="220.75" y2="220.75"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="220.75" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="219.75000000000003" y2="220.75"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="220.75" y2="220.75"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="223.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="222.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="222.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="223.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="225.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="224.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="224.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="225.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="228.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="227.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="227.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="228.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="230.75000000000003" y2="229.75"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="229.75" y2="229.75"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="229.75" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="230.75000000000003" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="230.75000000000003" y2="229.75"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="229.75" y2="229.75"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="229.75" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="233.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="232.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="232.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="233.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="235.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="234.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="234.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="235.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="238.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="237.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="237.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="238.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="240.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="239.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="239.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="240.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="243.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="242.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="242.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="243.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="245.75000000000003" y2="244.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="244.75000000000003" y2="244.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="244.75000000000003" y2="245.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="245.75000000000003" y2="245.75000000000003"/>
-  <line stroke="#888888" x1="540.808556069723" x2="540.808556069723" y1="246.75000000000003" y2="243.75000000000003"/>
-  <line stroke="#888888" x1="540.808556069723" x2="543.8085560697231" y1="243.75000000000003" y2="243.75000000000003"/>
-  <line stroke="#888888" x1="543.8085560697231" x2="543.8085560697231" y1="243.75000000000003" y2="246.75000000000003"/>
-  <line stroke="#888888" x1="543.8085560697231" x2="540.808556069723" y1="246.75000000000003" y2="246.75000000000003"/>
-  <line stroke="#888888" x1="536.558556069723" x2="528.0585560697231" y1="203.75000000000003" y2="203.75000000000003"/>
-  <line stroke="#888888" x1="528.0585560697231" x2="528.0585560697231" y1="203.75000000000003" y2="203.25000000000003"/>
-  <line stroke="#888888" x1="528.0585560697231" x2="536.558556069723" y1="203.25000000000003" y2="203.25000000000003"/>
-  <line stroke="#888888" x1="536.558556069723" x2="536.558556069723" y1="203.25000000000003" y2="203.75000000000003"/>
-  <line stroke="#888888" x1="528.0585560697231" x2="536.558556069723" y1="251.50000000000003" y2="251.50000000000003"/>
-  <line stroke="#888888" x1="536.558556069723" x2="536.558556069723" y1="251.50000000000003" y2="252.00000000000003"/>
-  <line stroke="#888888" x1="536.558556069723" x2="528.0585560697231" y1="252.00000000000003" y2="252.00000000000003"/>
-  <line stroke="#888888" x1="528.0585560697231" x2="528.0585560697231" y1="252.00000000000003" y2="251.50000000000003"/>
-  <line stroke="#888888" x1="512.808556069723" x2="517.808556069723" y1="207.09090909090912" y2="207.09090909090912"/>
-  <line stroke="#888888" x1="517.808556069723" x2="517.808556069723" y1="207.09090909090912" y2="218.1818181818182"/>
-  <line stroke="#888888" x1="517.808556069723" x2="512.808556069723" y1="218.1818181818182" y2="218.1818181818182"/>
-  <line stroke="#888888" x1="512.808556069723" x2="517.808556069723" y1="234.81818181818184" y2="234.81818181818184"/>
-  <line stroke="#888888" x1="517.808556069723" x2="517.808556069723" y1="234.81818181818184" y2="245.90909090909093"/>
-  <line stroke="#888888" x1="517.808556069723" x2="512.808556069723" y1="245.90909090909093" y2="245.90909090909093"/>
-  <line stroke="#888888" x1="538.0585560697231" x2="541.5585560697231" y1="180.0" y2="180.0"/>
-  <line stroke="#888888" x1="541.5585560697231" x2="541.5585560697231" y1="180.0" y2="188.00000000000003"/>
-  <line stroke="#888888" x1="541.5585560697231" x2="538.0585560697231" y1="188.00000000000003" y2="188.00000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="194.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="184.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="160.02325267042647" x2="160.02325267042647" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="65.5" y2="101.50000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="160.02325267042647" x2="184.02325267042647" y1="65.5" y2="65.5"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="101.50000000000001" y2="65.5"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="65.5" y2="20.5"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="20.5" y2="65.5"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="15.500000000000004" y2="20.5"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="160.02325267042647" y1="15.500000000000004" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="20.5" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="140.02325267042644" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="140.02325267042644" x2="160.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="140.02325267042644" x2="140.02325267042644" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="140.02325267042644" x2="116.02325267042646" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="116.02325267042646" x2="140.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="116.02325267042646" x2="116.02325267042646" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="116.02325267042646" x2="96.02325267042644" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="96.02325267042644" x2="116.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="96.02325267042644" x2="96.02325267042644" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="96.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="96.02325267042644" x2="86.02325267042646" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line opacity="0.25" stroke="#0000ff" x1="194.02325267042647" x2="255.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="99.36137800081471" y2="135.50000000000003"/>
+  <line opacity="0.25" stroke="#0000ff" x1="255.02325267042647" x2="194.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line opacity="0.5" stroke="#0000ff" x1="255.02325267042647" x2="255.02325267042647" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="39.22275600162939" y2="75.36137800081472"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="75.36137800081472" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="29.222756001629396" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="194.02325267042647" y1="29.222756001629396" y2="29.222756001629396"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="39.22275600162939" y2="29.222756001629396"/>
+  <line stroke="#000000" x1="265.02325267042653" x2="255.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="265.02325267042653" x2="265.02325267042653" y1="99.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="265.02325267042653" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="194.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="184.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line opacity="0.5" stroke="#0000ff" x1="255.02325267042647" x2="86.02325267042646" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="255.02325267042647" x2="255.02325267042647" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="255.02325267042647" x2="307.53762348858805" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="1.0" stroke="#ff0000" x1="255.02325267042647" x2="307.53762348858805" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="117.99520972727949" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="307.53762348858805" x2="255.02325267042647" y1="117.99520972727949" y2="117.99520972727949"/>
+  <line stroke="#000000" x1="307.53762348858805" x2="307.53762348858805" y1="135.50000000000003" y2="117.99520972727949"/>
+  <line opacity="1.0" stroke="#0000ff" x1="255.02325267042647" x2="322.2284003443256" y1="205.50000000000003" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="322.2284003443256" x2="307.53762348858805" y1="185.91765779766357" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="336.91917720006325" x2="322.2284003443256" y1="236.33531559532716" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="341.0465053408527" x2="336.91917720006325" y1="250.50000000000003" y2="236.33531559532716"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="341.0465053408527" x2="255.02325267042647" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="255.0232526704265" x2="255.02325267042647" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="255.02325267042653" x2="255.0232526704265" y1="295.5" y2="250.50000000000006"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="341.0465053408528" x2="255.02325267042653" y1="250.50000000000003" y2="295.50000000000006"/>
+  <line opacity="1.0" stroke="#0000ff" x1="322.22840034432573" x2="255.0232526704265" y1="315.08234220233646" y2="295.50000000000006"/>
+  <line stroke="#000000" x1="336.9191772000633" x2="341.0465053408527" y1="264.6646844046729" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="322.22840034432573" x2="336.9191772000633" y1="315.08234220233646" y2="264.6646844046729"/>
+  <line stroke="#000000" x1="307.53762348858817" x2="322.22840034432573" y1="365.50000000000006" y2="315.0823422023364"/>
+  <line opacity="1.0" stroke="#ff0000" x1="307.53762348858817" x2="255.02325267042653" y1="365.50000000000006" y2="295.50000000000006"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="255.0232526704266" x2="255.0232526704265" y1="365.5000000000001" y2="295.5"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="307.53762348858817" x2="255.0232526704266" y1="365.50000000000006" y2="365.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="255.02325267042653" x2="86.02325267042642" y1="295.5" y2="295.50000000000017"/>
+  <line stroke="#000000" x1="194.02325267042656" x2="255.0232526704266" y1="365.50000000000017" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="194.02325267042656" y1="365.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="86.0232526704265" x2="86.0232526704265" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="194.02325267042656" x2="255.0232526704266" y1="365.50000000000017" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="184.02325267042656" x2="194.02325267042656" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="86.02325267042649" x2="160.02325267042656" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="184.0232526704266" x2="184.02325267042656" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line opacity="0.5" stroke="#0000ff" x1="160.02325267042656" x2="160.0232526704266" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="184.02325267042661" x2="184.0232526704266" y1="435.50000000000017" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="184.02325267042661" x2="160.0232526704266" y1="435.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="160.02325267042656" x2="160.0232526704266" y1="399.5000000000001" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="160.0232526704266" x2="160.02325267042661" y1="435.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="184.02325267042667" x2="184.02325267042661" y1="480.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="160.02325267042661" x2="184.02325267042667" y1="480.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="160.02325267042656" x2="140.0232526704265" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="140.02325267042653" x2="160.02325267042656" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="140.0232526704265" x2="140.02325267042653" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="140.02325267042653" x2="116.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="116.02325267042656" x2="140.02325267042656" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="116.02325267042652" x2="116.02325267042656" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="116.02325267042652" x2="96.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="96.02325267042654" x2="116.02325267042654" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="96.02325267042654" x2="96.02325267042652" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="86.02325267042654" x2="96.02325267042654" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="86.02325267042652" x2="86.02325267042654" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="96.02325267042652" x2="86.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="86.0232526704264" x2="86.02325267042649" y1="295.50000000000017" y2="365.5000000000002"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="86.02325267042649" x2="33.508881852264885" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line opacity="1.0" stroke="#ff0000" x1="86.0232526704264" x2="33.508881852264885" y1="295.5000000000002" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="86.0232526704265" x2="86.02325267042649" y1="383.00479027272075" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="33.5088818522649" x2="86.0232526704265" y1="383.00479027272087" y2="383.00479027272075"/>
+  <line stroke="#000000" x1="33.508881852264885" x2="33.5088818522649" y1="365.5000000000003" y2="383.00479027272087"/>
+  <line opacity="1.0" stroke="#0000ff" x1="86.0232526704264" x2="18.81810499652724" y1="295.50000000000017" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="18.81810499652724" x2="33.508881852264885" y1="315.08234220233675" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="4.127328140789602" x2="18.81810499652724" y1="264.6646844046731" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="4.127328140789602" y1="250.50000000000028" y2="264.6646844046731"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="2.8421709430404014e-14" x2="86.02325267042642" y1="250.50000000000028" y2="295.50000000000017"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042637" x2="86.02325267042642" y1="250.50000000000017" y2="295.50000000000017"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.0232526704263" x2="86.02325267042636" y1="205.50000000000017" y2="250.5000000000002"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="1.4210854715202007e-14" x2="86.0232526704263" y1="250.5000000000003" y2="205.50000000000014"/>
+  <line opacity="1.0" stroke="#0000ff" x1="18.818104996527044" x2="86.02325267042629" y1="185.91765779766385" y2="205.50000000000014"/>
+  <line stroke="#000000" x1="4.127328140789545" x2="0.0" y1="236.33531559532744" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="18.818104996527044" x2="4.127328140789545" y1="185.91765779766385" y2="236.33531559532744"/>
+  <line stroke="#000000" x1="33.50888185226453" x2="18.818104996527044" y1="135.50000000000023" y2="185.91765779766385"/>
+  <line opacity="1.0" stroke="#ff0000" x1="33.50888185226453" x2="86.02325267042629" y1="135.50000000000023" y2="205.50000000000017"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="86.02325267042616" x2="86.02325267042632" y1="135.5000000000001" y2="205.50000000000017"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="33.508881852264544" x2="86.02325267042616" y1="135.50000000000023" y2="135.5000000000001"/>
+  <line stroke="#000000" x1="33.50888185226451" x2="33.50888185226454" y1="117.9952097272797" y2="135.50000000000023"/>
+  <line stroke="#000000" x1="86.02325267042612" x2="33.50888185226451" y1="117.9952097272796" y2="117.9952097272797"/>
+  <line stroke="#000000" x1="86.02325267042615" x2="86.02325267042612" y1="135.5000000000001" y2="117.9952097272796"/>
+  <line stroke="#000000" x1="307.5376234885882" x2="307.53762348858817" y1="383.0047902727206" y2="365.50000000000006"/>
+  <line stroke="#000000" x1="255.02325267042661" x2="307.5376234885882" y1="383.00479027272064" y2="383.0047902727206"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="255.02325267042661" y1="365.5000000000001" y2="383.00479027272064"/>
+  <line stroke="#888888" x1="232.5914344886083" x2="244.18234357951738" y1="127.75000000000001" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="244.18234357951738" x2="244.18234357951738" y1="127.75000000000001" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="244.18234357951738" x2="232.5914344886083" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="232.5914344886083" x2="232.5914344886083" y1="128.25000000000003" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="204.86416176133557" x2="216.45507085224466" y1="127.75000000000001" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="216.45507085224466" x2="216.45507085224466" y1="127.75000000000001" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="216.45507085224466" x2="204.86416176133557" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="204.86416176133557" x2="204.86416176133557" y1="128.25000000000003" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="176.27325267042647" x2="176.27325267042647" y1="124.41666666666669" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="176.27325267042647" x2="176.77325267042644" y1="112.58333333333334" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="176.77325267042644" x2="176.77325267042644" y1="112.58333333333334" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="176.77325267042644" x2="176.27325267042647" y1="124.41666666666669" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="176.02325267042647" x2="178.52325267042647" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="178.52325267042647" x2="176.02325267042647" y1="16.750000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="176.02325267042647" x2="168.02325267042644" y1="19.250000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="168.02325267042644" x2="165.52325267042644" y1="19.250000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="165.52325267042644" x2="168.02325267042644" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="141.02325267042647" x2="145.02325267042644" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="145.02325267042644" x2="145.02325267042644" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="145.02325267042644" x2="141.02325267042647" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="141.02325267042647" x2="141.02325267042647" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="153.02325267042647" x2="157.02325267042647" y1="114.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="157.02325267042647" x2="157.02325267042647" y1="114.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="157.02325267042647" x2="153.02325267042647" y1="123.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="153.02325267042647" x2="153.02325267042647" y1="123.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="116.52325267042646" x2="139.52325267042647" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="139.52325267042647" x2="139.52325267042647" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="139.52325267042647" x2="116.52325267042646" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="116.52325267042646" x2="116.52325267042646" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="111.02325267042646" x2="115.02325267042646" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="115.02325267042646" x2="115.02325267042646" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="115.02325267042646" x2="111.02325267042646" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="111.02325267042646" x2="111.02325267042646" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="88.52325267042646" x2="93.52325267042646" y1="112.83333333333336" y2="112.83333333333336"/>
+  <line stroke="#888888" x1="93.52325267042646" x2="93.52325267042646" y1="112.83333333333336" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="93.52325267042646" x2="88.52325267042646" y1="124.16666666666669" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="212.02325267042647" x2="223.02325267042647" y1="80.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="223.02325267042647" x2="223.02325267042647" y1="80.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="223.02325267042647" x2="212.02325267042647" y1="93.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="212.02325267042647" x2="212.02325267042647" y1="93.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="243.52325267042647" x2="249.52325267042647" y1="82.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="249.52325267042647" x2="249.52325267042647" y1="82.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="249.52325267042647" x2="243.52325267042647" y1="92.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="243.52325267042647" x2="243.52325267042647" y1="92.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="243.93234357951738" x2="243.93234357951738" y1="31.722756001629396" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="243.93234357951738" x2="232.8414344886083" y1="36.7227560016294" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="232.8414344886083" x2="232.8414344886083" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="216.20507085224466" x2="216.20507085224466" y1="31.722756001629396" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="216.20507085224466" x2="205.11416176133554" y1="36.7227560016294" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="205.11416176133554" x2="205.11416176133554" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="262.52325267042653" x2="257.52325267042653" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="257.52325267042653" x2="257.52325267042653" y1="91.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="257.52325267042653" x2="262.52325267042653" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="186.52325267042647" x2="191.52325267042647" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="191.52325267042647" x2="191.52325267042647" y1="83.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="191.52325267042647" x2="186.52325267042647" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="290.0328332158675" x2="290.0328332158675" y1="122.37140729545962" y2="131.12380243181985"/>
+  <line stroke="#888888" x1="290.0328332158675" x2="272.52804294314694" y1="131.12380243181985" y2="131.12380243181988"/>
+  <line stroke="#888888" x1="272.52804294314694" x2="272.52804294314694" y1="131.12380243181988" y2="122.37140729545962"/>
+  <line stroke="#888888" x1="319.2477556839554" x2="314.2109561925024" y1="223.5120791976936" y2="206.22615649603978"/>
+  <line stroke="#888888" x1="314.2109561925024" x2="314.69099296160164" y1="206.22615649603978" y2="206.08628262316594"/>
+  <line stroke="#888888" x1="314.69099296160164" x2="319.72779245305475" y1="206.08628262316594" y2="223.37220532481973"/>
+  <line stroke="#888888" x1="319.72779245305475" x2="319.2477556839554" y1="223.37220532481973" y2="223.5120791976936"/>
+  <line stroke="#888888" x1="314.21095619250247" x2="319.24775568395546" y1="294.77384350396034" y2="277.4879208023065"/>
+  <line stroke="#888888" x1="319.24775568395546" x2="319.72779245305475" y1="277.4879208023065" y2="277.6277946751803"/>
+  <line stroke="#888888" x1="319.72779245305475" x2="314.69099296160164" y1="277.6277946751803" y2="294.91371737683414"/>
+  <line stroke="#888888" x1="314.69099296160164" x2="314.21095619250247" y1="294.91371737683414" y2="294.77384350396034"/>
+  <line stroke="#888888" x1="216.45507085224477" x2="204.86416176133565" y1="373.25000000000017" y2="373.25000000000017"/>
+  <line stroke="#888888" x1="204.86416176133565" x2="204.86416176133565" y1="373.25000000000017" y2="372.7500000000001"/>
+  <line stroke="#888888" x1="204.86416176133565" x2="216.45507085224477" y1="372.7500000000001" y2="372.7500000000001"/>
+  <line stroke="#888888" x1="216.45507085224477" x2="216.45507085224477" y1="372.7500000000001" y2="373.25000000000017"/>
+  <line stroke="#888888" x1="244.1823435795175" x2="232.5914344886084" y1="373.25000000000006" y2="373.25000000000017"/>
+  <line stroke="#888888" x1="232.5914344886084" x2="232.5914344886084" y1="373.25000000000017" y2="372.7500000000001"/>
+  <line stroke="#888888" x1="232.5914344886084" x2="244.1823435795175" y1="372.7500000000001" y2="372.75000000000006"/>
+  <line stroke="#888888" x1="244.1823435795175" x2="244.1823435795175" y1="372.75000000000006" y2="373.25000000000006"/>
+  <line stroke="#888888" x1="232.5914344886084" x2="244.1823435795175" y1="357.75000000000017" y2="357.7500000000001"/>
+  <line stroke="#888888" x1="244.1823435795175" x2="244.1823435795175" y1="357.7500000000001" y2="358.2500000000001"/>
+  <line stroke="#888888" x1="244.1823435795175" x2="232.5914344886084" y1="358.2500000000001" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="232.5914344886084" x2="232.5914344886084" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="204.86416176133562" x2="216.45507085224475" y1="357.75000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="216.45507085224475" x2="216.45507085224475" y1="357.75000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="216.45507085224475" x2="204.86416176133562" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="204.86416176133562" x2="204.86416176133562" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="176.27325267042653" x2="176.27325267042653" y1="388.4166666666668" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="176.27325267042653" x2="176.77325267042653" y1="376.5833333333335" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="176.77325267042653" x2="176.77325267042653" y1="376.5833333333335" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="176.77325267042653" x2="176.27325267042653" y1="388.4166666666668" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="167.77325267042664" x2="176.27325267042661" y1="476.50000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="176.27325267042661" x2="176.27325267042661" y1="476.50000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="176.27325267042661" x2="167.77325267042664" y1="477.00000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="167.77325267042664" x2="167.77325267042664" y1="477.00000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="141.02325267042656" x2="145.02325267042653" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="145.02325267042653" x2="145.02325267042653" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="145.02325267042653" x2="141.02325267042656" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="141.02325267042656" x2="141.02325267042656" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="153.02325267042656" x2="157.02325267042656" y1="378.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="157.02325267042656" x2="157.02325267042656" y1="378.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="157.02325267042656" x2="153.02325267042656" y1="387.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="153.02325267042656" x2="153.02325267042656" y1="387.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="116.52325267042653" x2="139.52325267042656" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="139.52325267042656" x2="139.52325267042656" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="139.52325267042656" x2="116.52325267042654" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="116.52325267042654" x2="116.52325267042653" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="111.02325267042653" x2="115.02325267042653" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="115.02325267042653" x2="115.02325267042653" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="115.02325267042653" x2="111.02325267042654" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="111.02325267042654" x2="111.02325267042653" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="88.52325267042652" x2="93.5232526704265" y1="376.8333333333335" y2="376.8333333333335"/>
+  <line stroke="#888888" x1="93.5232526704265" x2="93.52325267042652" y1="376.8333333333335" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="93.52325267042652" x2="88.52325267042653" y1="388.16666666666686" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="51.01367212498543" x2="51.013672124985426" y1="378.6285927045407" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="51.013672124985426" x2="68.51846239770595" y1="369.87619756818043" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="68.51846239770595" x2="68.51846239770595" y1="369.87619756818043" y2="378.6285927045407"/>
+  <line stroke="#888888" x1="21.798749656897446" x2="26.83554914835048" y1="277.4879208023067" y2="294.7738435039605"/>
+  <line stroke="#888888" x1="26.83554914835048" x2="26.3555123792512" y1="294.7738435039605" y2="294.9137173768343"/>
+  <line stroke="#888888" x1="26.3555123792512" x2="21.318712887798156" y1="294.9137173768343" y2="277.62779467518055"/>
+  <line stroke="#888888" x1="21.318712887798156" x2="21.798749656897446" y1="277.62779467518055" y2="277.4879208023067"/>
+  <line stroke="#888888" x1="26.835549148350342" x2="21.798749656897346" y1="206.22615649604003" y2="223.51207919769385"/>
+  <line stroke="#888888" x1="21.798749656897346" x2="21.31871288779806" y1="223.51207919769385" y2="223.37220532482002"/>
+  <line stroke="#888888" x1="21.31871288779806" x2="26.355512379251053" y1="223.37220532482002" y2="206.08628262316617"/>
+  <line stroke="#888888" x1="26.355512379251053" x2="26.835549148350342" y1="206.08628262316617" y2="206.22615649604003"/>
+  <line stroke="#888888" x1="68.51846239770559" x2="68.51846239770562" y1="122.37140729545976" y2="131.12380243182005"/>
+  <line stroke="#888888" x1="68.51846239770562" x2="51.01367212498507" y1="131.12380243182005" y2="131.12380243182008"/>
+  <line stroke="#888888" x1="51.01367212498507" x2="51.01367212498506" y1="131.12380243182008" y2="122.3714072954598"/>
+  <line stroke="#888888" x1="272.52804294314706" x2="272.52804294314706" y1="378.6285927045405" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="272.52804294314706" x2="290.03283321586764" y1="369.87619756818015" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="290.03283321586764" x2="290.03283321586764" y1="369.87619756818015" y2="378.6285927045405"/>
+  <line stroke="#000000" x1="511.3550614105758" x2="449.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="511.3550614105758" y1="166.0" y2="166.0"/>
+  <line opacity="0.25" stroke="#ff0000" x1="449.7007833757143" x2="449.7007833757143" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="521.3550614105757" x2="511.3550614105758" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="521.3550614105757" x2="521.3550614105757" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="511.3550614105758" x2="521.3550614105757" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="449.7007833757143" y1="166.0" y2="166.0"/>
+  <line opacity="0.25" stroke="#ff0000" x1="422.7007833757143" x2="422.7007833757143" y1="105.00000000000001" y2="166.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="449.7007833757143" x2="422.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="361.0465053408529" x2="422.7007833757143" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="361.0465053408529" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="351.0465053408529" x2="361.0465053408529" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="351.0465053408529" x2="351.0465053408529" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#000000" x1="361.0465053408529" x2="351.0465053408529" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="105.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="88.00000000000001" y2="105.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="449.7007833757143" x2="422.7007833757143" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="88.00000000000001" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="27.000000000000004" y2="88.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="449.7007833757143" x2="422.7007833757143" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="27.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="10.000000000000002" y2="27.000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="422.7007833757143" x2="449.7007833757143" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="422.7007833757143" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="518.8550614105758" x2="513.8550614105758" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="513.8550614105758" x2="513.8550614105758" y1="154.90909090909093" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="513.8550614105758" x2="518.8550614105758" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="518.8550614105758" x2="513.8550614105758" y1="127.1818181818182" y2="127.1818181818182"/>
+  <line stroke="#888888" x1="513.8550614105758" x2="513.8550614105758" y1="127.1818181818182" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="513.8550614105758" x2="518.8550614105758" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="445.2007833757143" x2="445.2007833757143" y1="102.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="445.2007833757143" x2="427.2007833757143" y1="108.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="427.2007833757143" x2="427.2007833757143" y1="108.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="427.2007833757143" x2="445.2007833757143" y1="102.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="431.4507833757143" x2="440.9507833757143" y1="158.25000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="440.9507833757143" x2="440.9507833757143" y1="158.25000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="440.9507833757143" x2="431.4507833757143" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="431.4507833757143" x2="431.4507833757143" y1="158.75000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="353.54650534085283" x2="358.54650534085283" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="358.54650534085283" x2="358.54650534085283" y1="116.09090909090911" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="358.54650534085283" x2="353.54650534085283" y1="127.18181818181822" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="353.54650534085283" x2="358.54650534085283" y1="143.81818181818184" y2="143.81818181818184"/>
+  <line stroke="#888888" x1="358.54650534085283" x2="358.54650534085283" y1="143.81818181818184" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="358.54650534085283" x2="353.54650534085283" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="440.7007833757143" x2="440.7007833757143" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="440.7007833757143" x2="431.7007833757143" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="431.7007833757143" x2="431.7007833757143" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="564.3550614105757" x2="625.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="625.3550614105758" x2="625.3550614105758" y1="123.50000000000001" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="625.3550614105758" x2="564.3550614105757" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="564.3550614105757" x2="564.3550614105757" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="564.3550614105757" x2="564.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="624.3550614105758" x2="564.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="624.3550614105758" x2="624.3550614105758" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="632.3550614105758" x2="625.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="632.3550614105758" x2="632.3550614105758" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="625.3550614105758" x2="632.3550614105758" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="625.3550614105758" x2="625.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="565.3550614105757" x2="625.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="565.3550614105757" x2="565.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="649.3550614105757" x2="625.3550614105758" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="649.3550614105757" x2="649.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="625.3550614105758" x2="649.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="709.3550614105758" x2="649.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="709.3550614105758" x2="709.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="649.3550614105757" x2="709.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="565.3550614105757" x2="541.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="541.3550614105758" x2="565.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="541.3550614105758" x2="541.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="531.3550614105757" x2="541.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="531.3550614105757" x2="531.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="541.3550614105758" x2="531.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="557.3550614105757" x2="564.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="557.3550614105757" x2="557.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="564.3550614105757" x2="557.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="613.4459705014848" x2="616.9459705014849" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="616.9459705014849" x2="613.4459705014848" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="613.4459705014848" x2="602.5368795923939" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="602.5368795923939" x2="599.0368795923939" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="599.0368795923939" x2="602.5368795923939" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="586.1732432287575" x2="589.6732432287577" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="589.6732432287577" x2="586.1732432287575" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="586.1732432287575" x2="575.2641523196667" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="575.2641523196667" x2="571.7641523196666" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="571.7641523196666" x2="575.2641523196667" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="630.6050614105758" x2="627.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="627.1050614105758" x2="627.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="627.1050614105758" x2="630.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="572.8550614105758" x2="572.8550614105758" y1="199.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="572.8550614105758" x2="607.8550614105758" y1="181.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="607.8550614105758" x2="607.8550614105758" y1="181.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="607.8550614105758" x2="572.8550614105758" y1="199.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="625.8550614105758" x2="625.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="625.8550614105758" x2="628.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="628.8550614105757" x2="628.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="628.8550614105757" x2="625.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="645.8550614105758" x2="648.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="648.8550614105757" x2="648.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="648.8550614105757" x2="645.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="641.6050614105758" x2="633.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="641.6050614105758" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="641.6050614105758" x2="641.6050614105758" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="641.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="641.6050614105758" x2="641.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="641.6050614105758" x2="633.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="664.3550614105758" x2="664.3550614105758" y1="198.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="664.3550614105758" x2="694.3550614105757" y1="185.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="694.3550614105757" x2="694.3550614105757" y1="185.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="694.3550614105757" x2="664.3550614105758" y1="198.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="671.4232432287575" x2="660.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="660.0141523196667" x2="660.0141523196667" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="660.0141523196667" x2="671.4232432287575" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="671.4232432287575" x2="671.4232432287575" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="698.6959705014849" x2="687.2868795923938" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="687.2868795923938" x2="687.2868795923938" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="687.2868795923938" x2="698.6959705014849" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="698.6959705014849" x2="698.6959705014849" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="701.6050614105758" x2="701.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="701.6050614105758" x2="702.1050614105758" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="702.1050614105758" x2="702.1050614105758" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="702.1050614105758" x2="701.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="701.6050614105758" x2="701.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="701.6050614105758" x2="702.1050614105758" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="702.1050614105758" x2="702.1050614105758" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="702.1050614105758" x2="701.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="544.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="544.8550614105758" x2="544.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="544.8550614105758" x2="541.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="561.8550614105758" x2="561.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="561.8550614105758" x2="564.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="564.8550614105757" x2="564.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="564.8550614105757" x2="561.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="557.6050614105758" x2="549.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="549.1050614105758" x2="549.1050614105758" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="549.1050614105758" x2="557.6050614105758" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="557.6050614105758" x2="557.6050614105758" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="549.1050614105758" x2="557.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="557.6050614105758" x2="557.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="557.6050614105758" x2="549.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="549.1050614105758" x2="549.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="533.8550614105758" x2="538.8550614105758" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="538.8550614105758" x2="538.8550614105758" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="538.8550614105758" x2="533.8550614105758" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="533.8550614105758" x2="538.8550614105758" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="538.8550614105758" x2="538.8550614105758" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="538.8550614105758" x2="533.8550614105758" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="559.1050614105758" x2="562.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="562.6050614105757" x2="562.6050614105757" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="562.6050614105757" x2="559.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
 </svg>
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
index c6096573bd05b8bd523d32b0115eac0ffdefc27c..7197f040b67f2590d925eb4c7aabf25c72188d69 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
@@ -493,7 +493,7 @@ TABLE
   2
 LAYER
  70
-14
+16
   0
 LAYER
   2
@@ -547,6 +547,16 @@ CONTINUOUS
   0
 LAYER
   2
+0
+ 70
+0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
 90
  70
 0
@@ -557,7 +567,7 @@ CONTINUOUS
   0
 LAYER
   2
-90.0
+-90
  70
 0
  62
@@ -567,7 +577,17 @@ CONTINUOUS
   0
 LAYER
   2
+45
+ 70
 0
+ 62
+1
+  6
+CONTINUOUS
+  0
+LAYER
+  2
+41.987212495816664
  70
 0
  62
@@ -577,7 +597,7 @@ CONTINUOUS
   0
 LAYER
   2
-180
+-174
  70
 0
  62
@@ -597,7 +617,7 @@ CONTINUOUS
   0
 LAYER
   2
--174
+180
  70
 0
  62
@@ -607,7 +627,7 @@ CONTINUOUS
   0
 LAYER
   2
--90
+57.019129652304315
  70
 0
  62
@@ -617,7 +637,7 @@ CONTINUOUS
   0
 LAYER
   2
--45
+54.462322208025626
  70
 0
  62
@@ -627,7 +647,7 @@ CONTINUOUS
   0
 LAYER
   2
-45
+-45
  70
 0
  62
@@ -1028,82 +1048,74 @@ MVIEW
 }
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-280.00000000000006
+255.02325267042647
  20
-70.00000000000001
+135.50000000000003
  30
 0.0
  11
-280.00000000000006
+194.02325267042647
  21
-298.00000000000006
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-190.00000000000003
+255.02325267042647
  20
-70.00000000000001
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+255.02325267042647
  21
-298.00000000000006
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90.0
+cut
  10
-235.00000000000003
+86.02325267042646
  20
-70.00000000000001
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+86.02325267042646
  21
-70.00000000000001
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90.0
+cut
  10
-280.00000000000006
+194.02325267042647
  20
-70.00000000000001
+135.50000000000003
  30
 0.0
  11
-235.00000000000003
+255.02325267042647
  21
-70.00000000000001
+135.50000000000003
  31
 0.0
   0
@@ -1113,15 +1125,15 @@ LINE
   8
 cut
  10
-260.0
+86.02325267042646
  20
--2.8421709430404014e-14
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+86.02325267042646
  21
--2.8421709430404014e-14
+135.50000000000003
  31
 0.0
   0
@@ -1131,55 +1143,87 @@ LINE
   8
 cut
  10
-235.00000000000003
+255.02325267042647
  20
--2.8421709430404014e-14
+135.50000000000003
  30
 0.0
  11
-260.0
+255.02325267042647
  21
--2.8421709430404014e-14
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-190.00000000000003
+160.02325267042647
  20
-70.0
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+86.02325267042646
  21
--2.8421709430404014e-14
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
+ 10
+194.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
  10
-190.00000000000003
+86.02325267042646
  20
-70.0
+135.50000000000003
  30
 0.0
  11
-120.00000000000003
+86.02325267042646
  21
--2.8421709430404014e-14
+135.50000000000003
  31
 0.0
   0
@@ -1189,15 +1233,15 @@ LINE
   8
 cut
  10
-190.00000000000003
+184.02325267042647
  20
--2.8421709430404014e-14
+135.50000000000003
  30
 0.0
  11
-120.00000000000003
+184.02325267042647
  21
--2.8421709430404014e-14
+101.50000000000001
  31
 0.0
   0
@@ -1207,17 +1251,35 @@ DOTTED
  62
 1
   8
--174
+90
  10
-120.00000000000001
+160.02325267042647
  20
-70.0
+101.50000000000001
  30
 0.0
  11
-120.00000000000001
+160.02325267042647
  21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.02325267042647
+ 20
+65.5
+ 30
 0.0
+ 11
+160.02325267042647
+ 21
+101.50000000000001
  31
 0.0
   0
@@ -1227,17 +1289,53 @@ DOTTED
  62
 1
   8
-90.0
+-90
+ 10
+160.02325267042647
+ 20
+65.5
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+65.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+184.02325267042647
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+65.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
  10
-190.00000000000003
+184.02325267042647
  20
-70.00000000000001
+65.5
  30
 0.0
  11
-120.00000000000001
+184.02325267042647
  21
-70.0
+20.5
  31
 0.0
   0
@@ -1247,15 +1345,15 @@ LINE
   8
 cut
  10
-96.66666666666666
+160.02325267042647
  20
-70.0
+20.5
  30
 0.0
  11
-120.00000000000001
+160.02325267042647
  21
-70.0
+65.5
  31
 0.0
   0
@@ -1265,15 +1363,33 @@ LINE
   8
 cut
  10
-96.66666666666669
+160.02325267042647
  20
+15.500000000000004
+ 30
 0.0
+ 11
+160.02325267042647
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+184.02325267042647
+ 20
+15.500000000000004
  30
 0.0
  11
-96.66666666666666
+160.02325267042647
  21
-70.0
+15.500000000000004
  31
 0.0
   0
@@ -1283,15 +1399,51 @@ LINE
   8
 cut
  10
-120.00000000000003
+184.02325267042647
  20
+20.5
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+15.500000000000004
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.02325267042647
+ 20
+101.50000000000001
  30
 0.0
  11
-96.66666666666669
+140.02325267042644
  21
+101.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+140.02325267042644
+ 20
+135.50000000000003
+ 30
 0.0
+ 11
+160.02325267042647
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -1301,37 +1453,53 @@ DOTTED
  62
 1
   8
-90.0
+90
  10
-120.0
+140.02325267042644
  20
-298.00000000000006
+101.50000000000001
  30
 0.0
  11
-190.00000000000003
+140.02325267042644
  21
-298.00000000000006
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
+ 10
+140.02325267042644
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+116.02325267042646
+ 21
+101.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
  10
-119.99999999999999
+116.02325267042646
  20
-368.00000000000006
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+140.02325267042644
  21
-298.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1341,17 +1509,35 @@ DOTTED
  62
 1
   8
--174
+90
+ 10
+116.02325267042646
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+116.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
  10
-119.99999999999999
+116.02325267042646
  20
-368.00000000000006
+101.50000000000001
  30
 0.0
  11
-120.0
+96.02325267042644
  21
-298.00000000000006
+101.50000000000001
  31
 0.0
   0
@@ -1361,15 +1547,15 @@ LINE
   8
 cut
  10
-119.99999999999999
+96.02325267042644
  20
-368.00000000000006
+135.50000000000003
  30
 0.0
  11
-190.0
+116.02325267042646
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1379,17 +1565,17 @@ DOTTED
  62
 1
   8
-180
+90
  10
-190.0
+96.02325267042644
  20
-368.00000000000006
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+96.02325267042644
  21
-298.00000000000006
+101.50000000000001
  31
 0.0
   0
@@ -1399,15 +1585,15 @@ LINE
   8
 cut
  10
-259.99999999999994
+86.02325267042646
  20
-368.00000000000006
+135.50000000000003
  30
 0.0
  11
-235.0
+96.02325267042644
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1417,35 +1603,33 @@ LINE
   8
 cut
  10
-190.0
+86.02325267042646
  20
-368.00000000000006
+101.50000000000001
  30
 0.0
  11
-259.99999999999994
+86.02325267042646
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90.0
+cut
  10
-190.00000000000003
+96.02325267042644
  20
-298.00000000000006
+101.50000000000001
  30
 0.0
  11
-235.00000000000003
+86.02325267042646
  21
-298.00000000000006
+101.50000000000001
  31
 0.0
   0
@@ -1455,17 +1639,17 @@ DOTTED
  62
 1
   8
-90.0
+45
  10
-235.00000000000003
+194.02325267042647
  20
-298.00000000000006
+99.36137800081471
  30
 0.0
  11
-280.00000000000006
+255.02325267042647
  21
-298.00000000000006
+99.36137800081471
  31
 0.0
   0
@@ -1475,15 +1659,15 @@ LINE
   8
 cut
  10
-210.00000000000003
+255.02325267042647
  20
-368.00000000000006
+135.50000000000003
  30
 0.0
  11
-280.00000000000006
+255.02325267042647
  21
-368.00000000000006
+99.36137800081471
  31
 0.0
   0
@@ -1493,15 +1677,15 @@ LINE
   8
 cut
  10
-235.0
+194.02325267042647
  20
-368.00000000000006
+99.36137800081471
  30
 0.0
  11
-210.00000000000003
+194.02325267042647
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1511,17 +1695,17 @@ DOTTED
  62
 1
   8
-180
+45
  10
-280.00000000000006
+255.02325267042647
  20
-298.00000000000006
+75.36137800081471
  30
 0.0
  11
-280.00000000000006
+194.02325267042647
  21
-368.00000000000006
+75.36137800081471
  31
 0.0
   0
@@ -1531,17 +1715,17 @@ DOTTED
  62
 1
   8
--180
+90
  10
-280.00000000000006
+255.02325267042647
  20
-298.00000000000006
+75.36137800081471
  30
 0.0
  11
-350.0
+255.02325267042647
  21
-368.00000000000006
+99.36137800081471
  31
 0.0
   0
@@ -1551,55 +1735,51 @@ LINE
   8
 cut
  10
-280.00000000000006
+194.02325267042647
  20
-368.00000000000006
+39.22275600162939
  30
 0.0
  11
-350.0
+194.02325267042647
  21
-368.00000000000006
+75.36137800081472
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-350.0
+255.02325267042647
  20
-298.0000000000001
+75.36137800081472
  30
 0.0
  11
-350.0
+255.02325267042647
  21
-368.00000000000006
+39.22275600162939
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90.0
+cut
  10
-280.00000000000006
+194.02325267042647
  20
-298.00000000000006
+29.222756001629396
  30
 0.0
  11
-350.0
+194.02325267042647
  21
-298.0000000000001
+39.22275600162939
  31
 0.0
   0
@@ -1609,15 +1789,15 @@ LINE
   8
 cut
  10
-373.3333333333333
+255.02325267042647
  20
-298.0000000000001
+29.222756001629396
  30
 0.0
  11
-350.0
+194.02325267042647
  21
-298.0000000000001
+29.222756001629396
  31
 0.0
   0
@@ -1627,15 +1807,15 @@ LINE
   8
 cut
  10
-373.33333333333326
+255.02325267042647
  20
-368.00000000000006
+39.22275600162939
  30
 0.0
  11
-373.3333333333333
+255.02325267042647
  21
-298.0000000000001
+29.222756001629396
  31
 0.0
   0
@@ -1645,75 +1825,69 @@ LINE
   8
 cut
  10
-349.99999999999994
+265.02325267042653
  20
-368.00000000000006
+75.36137800081471
  30
 0.0
  11
-373.33333333333326
+255.02325267042647
  21
-368.00000000000006
+75.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90.0
+cut
  10
-350.00000000000006
+265.02325267042653
  20
-70.0
+99.36137800081471
  30
 0.0
  11
-280.0000000000001
+265.02325267042653
  21
-69.99999999999997
+75.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-350.00000000000006
+255.02325267042647
  20
--2.8421709430404014e-14
+99.36137800081471
  30
 0.0
  11
-280.0000000000001
+265.02325267042653
  21
-69.99999999999996
+99.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-350.00000000000006
+184.02325267042647
  20
--2.8421709430404014e-14
+99.36137800081471
  30
 0.0
  11
-350.00000000000006
+194.02325267042647
  21
-69.99999999999999
+99.36137800081471
  31
 0.0
   0
@@ -1723,53 +1897,475 @@ LINE
   8
 cut
  10
-350.00000000000006
+184.02325267042647
  20
--2.8421709430404014e-14
+75.36137800081471
  30
 0.0
  11
-280.00000000000017
+184.02325267042647
  21
--5.684341886080803e-14
+99.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
+ 10
+194.02325267042647
+ 20
+75.36137800081471
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+75.36137800081471
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+255.02325267042647
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+205.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+255.02325267042647
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+307.53762348858805
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+255.02325267042647
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+307.53762348858805
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+255.02325267042647
+ 20
+117.99520972727949
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+307.53762348858805
+ 20
+117.99520972727949
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+117.99520972727949
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+307.53762348858805
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+307.53762348858805
+ 21
+117.99520972727949
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+255.02325267042647
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+322.2284003443256
+ 21
+185.91765779766357
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+322.2284003443256
+ 20
+185.91765779766357
+ 30
+0.0
+ 11
+307.53762348858805
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+336.91917720006325
+ 20
+236.33531559532716
+ 30
+0.0
+ 11
+322.2284003443256
+ 21
+185.91765779766357
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+341.0465053408527
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+336.91917720006325
+ 21
+236.33531559532716
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+341.0465053408527
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+205.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+255.0232526704265
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+205.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+255.02325267042653
+ 20
+295.5
+ 30
+0.0
+ 11
+255.0232526704265
+ 21
+250.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+341.0465053408528
+ 20
+250.50000000000003
+ 30
+0.0
+ 11
+255.02325267042653
+ 21
+295.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+322.22840034432573
+ 20
+315.08234220233646
+ 30
+0.0
+ 11
+255.0232526704265
+ 21
+295.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+336.9191772000633
+ 20
+264.6646844046729
+ 30
+0.0
+ 11
+341.0465053408527
+ 21
+250.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+322.22840034432573
+ 20
+315.08234220233646
+ 30
+0.0
+ 11
+336.9191772000633
+ 21
+264.6646844046729
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+307.53762348858817
+ 20
+365.50000000000006
+ 30
+0.0
+ 11
+322.22840034432573
+ 21
+315.0823422023364
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+307.53762348858817
+ 20
+365.50000000000006
+ 30
+0.0
+ 11
+255.02325267042653
+ 21
+295.50000000000006
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+255.0232526704266
+ 20
+365.5000000000001
+ 30
+0.0
+ 11
+255.0232526704265
+ 21
+295.5
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
  10
-280.00000000000017
+307.53762348858817
  20
--5.684341886080803e-14
+365.50000000000006
  30
 0.0
  11
-280.0000000000001
+255.0232526704266
  21
-69.99999999999997
+365.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-210.0000000000001
+255.02325267042653
  20
--1.1368683772161605e-13
+295.5
  30
 0.0
  11
-235.00000000000009
+86.02325267042642
  21
--8.526512829121203e-14
+295.50000000000017
  31
 0.0
   0
@@ -1779,15 +2375,15 @@ LINE
   8
 cut
  10
-280.0000000000001
+194.02325267042656
  20
--5.684341886080803e-14
+365.50000000000017
  30
 0.0
  11
-210.0000000000001
+255.0232526704266
  21
--1.1368683772161605e-13
+365.5000000000001
  31
 0.0
   0
@@ -1797,15 +2393,15 @@ LINE
   8
 cut
  10
-373.33333333333337
+86.02325267042649
  20
-0.0
+365.5000000000003
  30
 0.0
  11
-350.00000000000006
+86.02325267042649
  21
-0.0
+365.5000000000003
  31
 0.0
   0
@@ -1815,15 +2411,15 @@ LINE
   8
 cut
  10
-373.33333333333337
+255.0232526704266
  20
-70.00000000000003
+365.5000000000001
  30
 0.0
  11
-373.33333333333337
+255.0232526704266
  21
-0.0
+365.5000000000001
  31
 0.0
   0
@@ -1833,15 +2429,15 @@ LINE
   8
 cut
  10
-350.00000000000006
+255.0232526704266
  20
-70.00000000000001
+365.5000000000001
  30
 0.0
  11
-373.33333333333337
+194.02325267042656
  21
-70.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -1851,15 +2447,15 @@ LINE
   8
 cut
  10
-350.0
+255.0232526704266
  20
-298.0000000000001
+365.5000000000001
  30
 0.0
  11
-350.0
+255.0232526704266
  21
-298.0000000000001
+365.5000000000001
  31
 0.0
   0
@@ -1869,15 +2465,15 @@ LINE
   8
 cut
  10
-350.00000000000006
+86.0232526704265
  20
-70.0
+365.5000000000003
  30
 0.0
  11
-350.00000000000006
+86.0232526704265
  21
-70.0
+365.5000000000003
  31
 0.0
   0
@@ -1887,15 +2483,15 @@ LINE
   8
 cut
  10
-350.0
+194.02325267042656
  20
-131.0
+365.50000000000017
  30
 0.0
  11
-350.00000000000006
+255.0232526704266
  21
-70.0
+365.5000000000001
  31
 0.0
   0
@@ -1905,15 +2501,15 @@ LINE
   8
 cut
  10
-350.0
+184.02325267042656
  20
-141.0
+365.50000000000017
  30
 0.0
  11
-350.0
+194.02325267042656
  21
-131.0
+365.50000000000017
  31
 0.0
   0
@@ -1923,15 +2519,15 @@ LINE
   8
 cut
  10
-350.0
+86.02325267042649
  20
-238.00000000000003
+365.5000000000003
  30
 0.0
  11
-350.0
+160.02325267042656
  21
-165.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -1941,15 +2537,15 @@ LINE
   8
 cut
  10
-350.0
+86.02325267042649
  20
-238.00000000000003
+365.5000000000003
  30
 0.0
  11
-350.0
+86.02325267042649
  21
-238.00000000000003
+365.5000000000003
  31
 0.0
   0
@@ -1959,15 +2555,15 @@ LINE
   8
 cut
  10
-350.00000000000006
+255.0232526704266
  20
-70.0
+365.5000000000001
  30
 0.0
  11
-350.00000000000006
+255.0232526704266
  21
-70.0
+365.5000000000001
  31
 0.0
   0
@@ -1977,15 +2573,15 @@ LINE
   8
 cut
  10
-384.00000000000006
+184.0232526704266
  20
-141.0
+399.5000000000001
  30
 0.0
  11
-350.0
+184.02325267042656
  21
-141.0
+365.50000000000017
  31
 0.0
   0
@@ -1997,15 +2593,15 @@ DOTTED
   8
 90
  10
-350.0
+160.02325267042656
  20
-165.00000000000003
+365.50000000000017
  30
 0.0
  11
-384.00000000000006
+160.0232526704266
  21
-165.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2015,15 +2611,15 @@ LINE
   8
 cut
  10
-420.00000000000006
+184.02325267042661
  20
-141.00000000000003
+435.50000000000017
  30
 0.0
  11
-384.00000000000006
+184.0232526704266
  21
-141.0
+399.5000000000001
  31
 0.0
   0
@@ -2035,15 +2631,15 @@ DOTTED
   8
 -90
  10
-420.00000000000006
+184.02325267042661
  20
-141.00000000000003
+435.50000000000017
  30
 0.0
  11
-420.00000000000006
+160.0232526704266
  21
-165.00000000000006
+435.50000000000017
  31
 0.0
   0
@@ -2053,15 +2649,15 @@ LINE
   8
 cut
  10
-384.00000000000006
+160.02325267042656
  20
-165.00000000000006
+399.5000000000001
  30
 0.0
  11
-420.00000000000006
+160.0232526704266
  21
-165.00000000000006
+435.50000000000017
  31
 0.0
   0
@@ -2071,15 +2667,15 @@ LINE
   8
 cut
  10
-420.00000000000006
+160.0232526704266
  20
-165.00000000000006
+435.50000000000017
  30
 0.0
  11
-465.00000000000006
+160.02325267042661
  21
-165.00000000000009
+480.50000000000017
  31
 0.0
   0
@@ -2089,15 +2685,15 @@ LINE
   8
 cut
  10
-465.00000000000006
+184.02325267042667
  20
-141.00000000000006
+480.50000000000017
  30
 0.0
  11
-420.00000000000006
+184.02325267042661
  21
-141.00000000000003
+435.50000000000017
  31
 0.0
   0
@@ -2107,15 +2703,15 @@ LINE
   8
 cut
  10
-465.00000000000006
+160.02325267042661
  20
-165.00000000000009
+480.50000000000017
  30
 0.0
  11
-465.00000000000006
+184.02325267042667
  21
-141.00000000000006
+480.50000000000017
  31
 0.0
   0
@@ -2125,15 +2721,15 @@ LINE
   8
 cut
  10
-350.0
+160.02325267042656
  20
-165.00000000000003
+365.50000000000017
  30
 0.0
  11
-350.0
+140.0232526704265
  21
-185.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -2143,15 +2739,15 @@ LINE
   8
 cut
  10
-384.00000000000006
+140.02325267042653
  20
-185.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+160.02325267042656
  21
-165.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2163,15 +2759,15 @@ DOTTED
   8
 90
  10
-350.0
+140.0232526704265
  20
-185.00000000000003
+365.50000000000017
  30
 0.0
  11
-384.00000000000006
+140.02325267042653
  21
-185.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2181,15 +2777,15 @@ LINE
   8
 cut
  10
-350.0
+140.02325267042653
  20
-185.00000000000003
+365.50000000000017
  30
 0.0
  11
-350.0
+116.02325267042652
  21
-209.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -2199,15 +2795,15 @@ LINE
   8
 cut
  10
-384.00000000000006
+116.02325267042656
  20
-209.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+140.02325267042656
  21
-185.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2219,15 +2815,15 @@ DOTTED
   8
 90
  10
-350.0
+116.02325267042652
  20
-209.00000000000003
+365.50000000000017
  30
 0.0
  11
-384.00000000000006
+116.02325267042656
  21
-209.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2237,15 +2833,15 @@ LINE
   8
 cut
  10
-350.0
+116.02325267042652
  20
-209.00000000000006
+365.50000000000017
  30
 0.0
  11
-350.0
+96.02325267042652
  21
-229.00000000000006
+365.50000000000017
  31
 0.0
   0
@@ -2255,15 +2851,15 @@ LINE
   8
 cut
  10
-384.00000000000006
+96.02325267042654
  20
-229.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+116.02325267042654
  21
-209.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2275,51 +2871,15 @@ DOTTED
   8
 90
  10
-384.00000000000006
- 20
-229.00000000000006
- 30
-0.0
- 11
-350.0
- 21
-229.00000000000006
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-384.00000000000006
- 20
-239.00000000000006
- 30
-0.0
- 11
-384.00000000000006
- 21
-229.00000000000006
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-350.0
+96.02325267042654
  20
-239.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+96.02325267042652
  21
-239.00000000000006
+365.50000000000017
  31
 0.0
   0
@@ -2329,15 +2889,15 @@ LINE
   8
 cut
  10
-350.0
+86.02325267042654
  20
-229.00000000000006
+399.5000000000001
  30
 0.0
  11
-350.0
+96.02325267042654
  21
-239.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2347,15 +2907,15 @@ LINE
   8
 cut
  10
-350.0
+86.02325267042652
  20
-298.00000000000006
+365.50000000000017
  30
 0.0
  11
-411.65427803486153
+86.02325267042654
  21
-298.0000000000001
+399.5000000000001
  31
 0.0
   0
@@ -2365,15 +2925,15 @@ LINE
   8
 cut
  10
-411.65427803486153
+96.02325267042652
  20
-238.00000000000009
+365.50000000000017
  30
 0.0
  11
-350.0
+86.02325267042652
  21
-238.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -2383,35 +2943,17 @@ DOTTED
  62
 1
   8
--45
- 10
-411.65427803486153
- 20
-238.00000000000009
- 30
-0.0
- 11
-411.65427803486153
- 21
-298.0000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
+41.987212495816664
  10
-438.65427803486153
+86.0232526704264
  20
-238.00000000000009
+295.50000000000017
  30
 0.0
  11
-411.65427803486153
+86.02325267042649
  21
-238.00000000000009
+365.5000000000002
  31
 0.0
   0
@@ -2421,17 +2963,17 @@ DOTTED
  62
 1
   8
--45
+-174
  10
-438.65427803486153
+86.02325267042649
  20
-298.0000000000001
+365.5000000000003
  30
 0.0
  11
-438.65427803486153
+33.508881852264885
  21
-238.00000000000009
+365.5000000000003
  31
 0.0
   0
@@ -2441,17 +2983,17 @@ DOTTED
  62
 1
   8
-90
+-180
  10
-411.65427803486153
+86.0232526704264
  20
-298.0000000000001
+295.5000000000002
  30
 0.0
  11
-438.65427803486153
+33.508881852264885
  21
-298.0000000000001
+365.5000000000003
  31
 0.0
   0
@@ -2461,15 +3003,15 @@ LINE
   8
 cut
  10
-500.30855606972295
+86.0232526704265
  20
-238.0000000000001
+383.00479027272075
  30
 0.0
  11
-438.65427803486153
+86.02325267042649
  21
-238.00000000000009
+365.5000000000003
  31
 0.0
   0
@@ -2479,15 +3021,15 @@ LINE
   8
 cut
  10
-500.30855606972295
+33.5088818522649
  20
-298.00000000000017
+383.00479027272087
  30
 0.0
  11
-500.30855606972295
+86.0232526704265
  21
-238.0000000000001
+383.00479027272075
  31
 0.0
   0
@@ -2497,33 +3039,35 @@ LINE
   8
 cut
  10
-438.6542780348615
+33.508881852264885
  20
-298.0000000000001
+365.5000000000003
  30
 0.0
  11
-500.30855606972295
+33.5088818522649
  21
-298.00000000000017
+383.00479027272087
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+180
  10
-411.6542780348615
+86.0232526704264
  20
-298.0000000000001
+295.50000000000017
  30
 0.0
  11
-411.6542780348615
+18.81810499652724
  21
-315.0000000000001
+315.08234220233675
  31
 0.0
   0
@@ -2533,35 +3077,33 @@ LINE
   8
 cut
  10
-438.6542780348615
+18.81810499652724
  20
-315.00000000000017
+315.08234220233675
  30
 0.0
  11
-438.6542780348615
+33.508881852264885
  21
-298.0000000000001
+365.5000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-411.6542780348615
+4.127328140789602
  20
-315.0000000000001
+264.6646844046731
  30
 0.0
  11
-438.6542780348615
+18.81810499652724
  21
-315.00000000000017
+315.08234220233675
  31
 0.0
   0
@@ -2571,33 +3113,35 @@ LINE
   8
 cut
  10
-411.6542780348615
+2.8421709430404014e-14
  20
-315.0000000000001
+250.50000000000028
  30
 0.0
  11
-411.6542780348615
+4.127328140789602
  21
-375.00000000000017
+264.6646844046731
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+57.019129652304315
  10
-438.6542780348615
+2.8421709430404014e-14
  20
-375.00000000000017
+250.50000000000028
  30
 0.0
  11
-438.6542780348615
+86.02325267042642
  21
-315.00000000000017
+295.50000000000017
  31
 0.0
   0
@@ -2607,53 +3151,57 @@ DOTTED
  62
 1
   8
-90
+54.462322208025626
  10
-411.6542780348615
+86.02325267042637
  20
-375.00000000000017
+250.50000000000017
  30
 0.0
  11
-438.6542780348615
+86.02325267042642
  21
-375.00000000000017
+295.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+54.462322208025626
  10
-411.6542780348614
+86.0232526704263
  20
-375.00000000000017
+205.50000000000017
  30
 0.0
  11
-411.6542780348614
+86.02325267042636
  21
-392.00000000000017
+250.5000000000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+57.019129652304315
  10
-438.65427803486136
+1.4210854715202007e-14
  20
-392.00000000000017
+250.5000000000003
  30
 0.0
  11
-438.65427803486136
+86.0232526704263
  21
-375.00000000000017
+205.50000000000014
  31
 0.0
   0
@@ -2663,17 +3211,17 @@ DOTTED
  62
 1
   8
-90
+180
  10
-438.65427803486136
+18.818104996527044
  20
-392.00000000000017
+185.91765779766385
  30
 0.0
  11
-411.6542780348614
+86.02325267042629
  21
-392.00000000000017
+205.50000000000014
  31
 0.0
   0
@@ -2683,15 +3231,15 @@ LINE
   8
 cut
  10
-438.65427803486136
+4.127328140789545
  20
-402.00000000000017
+236.33531559532744
  30
 0.0
  11
-438.65427803486136
+0.0
  21
-392.00000000000017
+250.5000000000003
  31
 0.0
   0
@@ -2701,15 +3249,15 @@ LINE
   8
 cut
  10
-411.6542780348614
+18.818104996527044
  20
-402.00000000000017
+185.91765779766385
  30
 0.0
  11
-438.65427803486136
+4.127328140789545
  21
-402.00000000000017
+236.33531559532744
  31
 0.0
   0
@@ -2719,69 +3267,75 @@ LINE
   8
 cut
  10
-411.6542780348614
+33.50888185226453
  20
-392.00000000000017
+135.50000000000023
  30
 0.0
  11
-411.6542780348614
+18.818104996527044
  21
-402.00000000000017
+185.91765779766385
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-180
  10
-96.66666666666666
+33.50888185226453
  20
-368.00000000000006
+135.50000000000023
  30
 0.0
  11
-120.0
+86.02325267042629
  21
-368.00000000000006
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+41.987212495816664
  10
-96.66666666666666
+86.02325267042616
  20
-298.00000000000006
+135.5000000000001
  30
 0.0
  11
-96.66666666666666
+86.02325267042632
  21
-368.00000000000006
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-174
  10
-120.0
+33.508881852264544
  20
-298.00000000000006
+135.50000000000023
  30
 0.0
  11
-96.66666666666666
+86.02325267042616
  21
-298.00000000000006
+135.5000000000001
  31
 0.0
   0
@@ -2791,15 +3345,15 @@ LINE
   8
 cut
  10
-120.00000000000001
+33.50888185226451
  20
-70.00000000000001
+117.9952097272797
  30
 0.0
  11
-120.00000000000001
+33.50888185226454
  21
-70.00000000000001
+135.50000000000023
  31
 0.0
   0
@@ -2809,15 +3363,15 @@ LINE
   8
 cut
  10
-120.0
+86.02325267042612
  20
-298.00000000000006
+117.9952097272796
  30
 0.0
  11
-120.0
+33.50888185226451
  21
-298.00000000000006
+117.9952097272797
  31
 0.0
   0
@@ -2827,15 +3381,15 @@ LINE
   8
 cut
  10
-110.0
+86.02325267042615
  20
-298.00000000000006
+135.5000000000001
  30
 0.0
  11
-120.0
+86.02325267042612
  21
-298.00000000000006
+117.9952097272796
  31
 0.0
   0
@@ -2845,15 +3399,15 @@ LINE
   8
 cut
  10
-110.0
+307.5376234885882
  20
-238.00000000000003
+383.0047902727206
  30
 0.0
  11
-110.0
+307.53762348858817
  21
-298.00000000000006
+365.50000000000006
  31
 0.0
   0
@@ -2863,15 +3417,15 @@ LINE
   8
 cut
  10
-120.0
+255.02325267042661
  20
-238.00000000000003
+383.00479027272064
  30
 0.0
  11
-110.0
+307.5376234885882
  21
-238.00000000000003
+383.0047902727206
  31
 0.0
   0
@@ -2881,15 +3435,15 @@ LINE
   8
 cut
  10
-120.0
+255.0232526704266
  20
-165.00000000000003
+365.5000000000001
  30
 0.0
  11
-120.0
+255.02325267042661
  21
-238.00000000000003
+383.00479027272064
  31
 0.0
   0
@@ -2899,15 +3453,15 @@ LINE
   8
 cut
  10
-120.00000000000001
+232.5914344886083
  20
-131.0
+127.75000000000001
  30
 0.0
  11
-120.0
+244.18234357951738
  21
-141.0
+127.75000000000001
  31
 0.0
   0
@@ -2917,15 +3471,15 @@ LINE
   8
 cut
  10
-120.00000000000001
+244.18234357951738
  20
-70.00000000000001
+127.75000000000001
  30
 0.0
  11
-120.00000000000001
+244.18234357951738
  21
-70.00000000000001
+128.25000000000003
  31
 0.0
   0
@@ -2935,15 +3489,15 @@ LINE
   8
 cut
  10
-120.0
+244.18234357951738
  20
-238.00000000000003
+128.25000000000003
  30
 0.0
  11
-120.0
+232.5914344886083
  21
-238.00000000000003
+128.25000000000003
  31
 0.0
   0
@@ -2953,35 +3507,33 @@ LINE
   8
 cut
  10
-120.00000000000001
+232.5914344886083
  20
-141.0
+128.25000000000003
  30
 0.0
  11
-86.00000000000001
+232.5914344886083
  21
-141.0
+127.75000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-86.00000000000001
+204.86416176133557
  20
-165.00000000000003
+127.75000000000001
  30
 0.0
  11
-120.00000000000001
+216.45507085224466
  21
-165.00000000000003
+127.75000000000001
  31
 0.0
   0
@@ -2991,35 +3543,33 @@ LINE
   8
 cut
  10
-50.0
+216.45507085224466
  20
-165.00000000000003
+127.75000000000001
  30
 0.0
  11
-86.00000000000001
+216.45507085224466
  21
-165.00000000000003
+128.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--90
+cut
  10
-50.0
+216.45507085224466
  20
-165.00000000000003
+128.25000000000003
  30
 0.0
  11
-50.0
+204.86416176133557
  21
-141.0
+128.25000000000003
  31
 0.0
   0
@@ -3029,15 +3579,15 @@ LINE
   8
 cut
  10
-86.00000000000001
+204.86416176133557
  20
-141.0
+128.25000000000003
  30
 0.0
  11
-50.0
+204.86416176133557
  21
-141.0
+127.75000000000001
  31
 0.0
   0
@@ -3047,15 +3597,15 @@ LINE
   8
 cut
  10
-50.0
+176.27325267042647
  20
-141.0
+124.41666666666669
  30
 0.0
  11
-5.000000000000001
+176.27325267042647
  21
-141.0
+112.58333333333334
  31
 0.0
   0
@@ -3065,15 +3615,15 @@ LINE
   8
 cut
  10
-5.000000000000001
+176.27325267042647
  20
-165.00000000000003
+112.58333333333334
  30
 0.0
  11
-50.0
+176.77325267042644
  21
-165.00000000000003
+112.58333333333334
  31
 0.0
   0
@@ -3083,15 +3633,15 @@ LINE
   8
 cut
  10
-0.0
+176.77325267042644
  20
-165.00000000000003
+112.58333333333334
  30
 0.0
  11
-5.000000000000001
+176.77325267042644
  21
-165.00000000000003
+124.41666666666669
  31
 0.0
   0
@@ -3101,15 +3651,15 @@ LINE
   8
 cut
  10
-0.0
+176.77325267042644
  20
-141.0
+124.41666666666669
  30
 0.0
  11
-0.0
+176.27325267042647
  21
-165.00000000000003
+124.41666666666669
  31
 0.0
   0
@@ -3119,15 +3669,15 @@ LINE
   8
 cut
  10
-5.000000000000001
+176.02325267042647
  20
-141.0
+16.750000000000004
  30
 0.0
  11
-0.0
+178.52325267042647
  21
-141.0
+16.750000000000004
  31
 0.0
   0
@@ -3137,15 +3687,15 @@ LINE
   8
 cut
  10
-86.00000000000001
+178.52325267042647
  20
-165.00000000000003
+16.750000000000004
  30
 0.0
  11
-86.00000000000001
+176.02325267042647
  21
-185.00000000000003
+19.250000000000004
  31
 0.0
   0
@@ -3155,35 +3705,33 @@ LINE
   8
 cut
  10
-120.00000000000001
+176.02325267042647
  20
-185.00000000000003
+19.250000000000004
  30
 0.0
  11
-120.00000000000001
+168.02325267042644
  21
-165.00000000000003
+19.250000000000004
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-86.00000000000001
+168.02325267042644
  20
-185.00000000000003
+19.250000000000004
  30
 0.0
  11
-120.00000000000001
+165.52325267042644
  21
-185.00000000000003
+16.750000000000004
  31
 0.0
   0
@@ -3193,15 +3741,15 @@ LINE
   8
 cut
  10
-86.00000000000001
+165.52325267042644
  20
-185.00000000000003
+16.750000000000004
  30
 0.0
  11
-86.00000000000001
+168.02325267042644
  21
-209.00000000000003
+16.750000000000004
  31
 0.0
   0
@@ -3211,35 +3759,33 @@ LINE
   8
 cut
  10
-120.00000000000001
+141.02325267042647
  20
-209.00000000000003
+112.50000000000001
  30
 0.0
  11
-120.00000000000001
+145.02325267042644
  21
-185.00000000000003
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-86.00000000000001
+145.02325267042644
  20
-209.00000000000003
+112.50000000000001
  30
 0.0
  11
-120.00000000000001
+145.02325267042644
  21
-209.00000000000003
+124.50000000000001
  31
 0.0
   0
@@ -3249,15 +3795,15 @@ LINE
   8
 cut
  10
-86.00000000000001
+145.02325267042644
  20
-209.00000000000003
+124.50000000000001
  30
 0.0
  11
-86.00000000000001
+141.02325267042647
  21
-229.00000000000003
+124.50000000000001
  31
 0.0
   0
@@ -3267,35 +3813,33 @@ LINE
   8
 cut
  10
-120.00000000000001
+141.02325267042647
  20
-229.00000000000003
+124.50000000000001
  30
 0.0
  11
-120.00000000000001
+141.02325267042647
  21
-209.00000000000003
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-120.00000000000001
+153.02325267042647
  20
-229.00000000000003
+114.00000000000001
  30
 0.0
  11
-86.00000000000001
+157.02325267042647
  21
-229.00000000000003
+114.00000000000001
  31
 0.0
   0
@@ -3305,15 +3849,15 @@ LINE
   8
 cut
  10
-120.00000000000001
+157.02325267042647
  20
-239.00000000000003
+114.00000000000001
  30
 0.0
  11
-120.00000000000001
+157.02325267042647
  21
-229.00000000000003
+123.00000000000001
  31
 0.0
   0
@@ -3323,15 +3867,15 @@ LINE
   8
 cut
  10
-86.00000000000001
+157.02325267042647
  20
-239.00000000000003
+123.00000000000001
  30
 0.0
  11
-120.00000000000001
+153.02325267042647
  21
-239.00000000000003
+123.00000000000001
  31
 0.0
   0
@@ -3341,35 +3885,33 @@ LINE
   8
 cut
  10
-86.00000000000001
+153.02325267042647
  20
-229.00000000000003
+123.00000000000001
  30
 0.0
  11
-86.00000000000001
+153.02325267042647
  21
-239.00000000000003
+114.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-45
+cut
  10
-83.86137800081468
+116.52325267042646
  20
-131.0
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+139.52325267042647
  21
-70.00000000000001
+112.50000000000001
  31
 0.0
   0
@@ -3379,15 +3921,15 @@ LINE
   8
 cut
  10
-120.00000000000001
+139.52325267042647
  20
-70.00000000000001
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+139.52325267042647
  21
-70.00000000000001
+124.50000000000001
  31
 0.0
   0
@@ -3397,55 +3939,51 @@ LINE
   8
 cut
  10
-83.86137800081468
+139.52325267042647
  20
-131.0
+124.50000000000001
  30
 0.0
  11
-120.0
+116.52325267042646
  21
-131.0
+124.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-45
+cut
  10
-59.86137800081469
+116.52325267042646
  20
-70.00000000000001
+124.50000000000001
  30
 0.0
  11
-59.86137800081469
+116.52325267042646
  21
-131.0
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-59.86137800081469
+111.02325267042646
  20
-70.00000000000001
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+115.02325267042646
  21
-70.00000000000001
+112.50000000000001
  31
 0.0
   0
@@ -3455,15 +3993,15 @@ LINE
   8
 cut
  10
-23.722756001629364
+115.02325267042646
  20
-131.0
+112.50000000000001
  30
 0.0
  11
-59.86137800081469
+115.02325267042646
  21
-131.0
+124.50000000000001
  31
 0.0
   0
@@ -3473,15 +4011,15 @@ LINE
   8
 cut
  10
-59.86137800081469
+115.02325267042646
  20
-70.0
+124.50000000000001
  30
 0.0
  11
-23.722756001629364
+111.02325267042646
  21
-70.0
+124.50000000000001
  31
 0.0
   0
@@ -3491,15 +4029,15 @@ LINE
   8
 cut
  10
-13.722756001629365
+111.02325267042646
  20
-131.0
+124.50000000000001
  30
 0.0
  11
-23.722756001629364
+111.02325267042646
  21
-131.0
+112.50000000000001
  31
 0.0
   0
@@ -3509,15 +4047,15 @@ LINE
   8
 cut
  10
-13.722756001629365
+88.52325267042646
  20
-70.0
+112.83333333333336
  30
 0.0
  11
-13.722756001629365
+93.52325267042646
  21
-131.0
+112.83333333333336
  31
 0.0
   0
@@ -3527,15 +4065,15 @@ LINE
   8
 cut
  10
-23.722756001629364
+93.52325267042646
  20
-70.0
+112.83333333333336
  30
 0.0
  11
-13.722756001629365
+93.52325267042646
  21
-70.0
+124.16666666666669
  31
 0.0
   0
@@ -3545,15 +4083,15 @@ LINE
   8
 cut
  10
-59.86137800081469
+93.52325267042646
  20
-60.00000000000001
+124.16666666666669
  30
 0.0
  11
-59.86137800081469
+88.52325267042646
  21
-70.00000000000001
+124.16666666666669
  31
 0.0
   0
@@ -3563,15 +4101,15 @@ LINE
   8
 cut
  10
-83.86137800081468
+212.02325267042647
  20
-60.00000000000001
+80.86137800081471
  30
 0.0
  11
-59.86137800081469
+223.02325267042647
  21
-60.00000000000001
+80.86137800081471
  31
 0.0
   0
@@ -3581,15 +4119,15 @@ LINE
   8
 cut
  10
-83.86137800081468
+223.02325267042647
  20
-70.00000000000001
+80.86137800081471
  30
 0.0
  11
-83.86137800081468
+223.02325267042647
  21
-60.00000000000001
+93.86137800081471
  31
 0.0
   0
@@ -3599,15 +4137,15 @@ LINE
   8
 cut
  10
-83.86137800081468
+223.02325267042647
  20
-141.0
+93.86137800081471
  30
 0.0
  11
-83.86137800081468
+212.02325267042647
  21
-131.0
+93.86137800081471
  31
 0.0
   0
@@ -3617,15 +4155,15 @@ LINE
   8
 cut
  10
-59.86137800081469
+212.02325267042647
  20
-141.0
+93.86137800081471
  30
 0.0
  11
-83.86137800081468
+212.02325267042647
  21
-141.0
+80.86137800081471
  31
 0.0
   0
@@ -3635,15 +4173,15 @@ LINE
   8
 cut
  10
-59.86137800081469
+243.52325267042647
  20
-131.0
+82.36137800081471
  30
 0.0
  11
-59.86137800081469
+249.52325267042647
  21
-141.0
+82.36137800081471
  31
 0.0
   0
@@ -3653,15 +4191,15 @@ LINE
   8
 cut
  10
-236.91666666666669
+249.52325267042647
  20
-17.74999999999997
+82.36137800081471
  30
 0.0
  11
-213.08333333333334
+249.52325267042647
  21
-17.74999999999997
+92.36137800081471
  31
 0.0
   0
@@ -3671,15 +4209,15 @@ LINE
   8
 cut
  10
-213.08333333333334
+249.52325267042647
  20
-17.74999999999997
+92.36137800081471
  30
 0.0
  11
-213.08333333333334
+243.52325267042647
  21
-17.249999999999975
+92.36137800081471
  31
 0.0
   0
@@ -3689,15 +4227,15 @@ LINE
   8
 cut
  10
-213.08333333333334
+243.52325267042647
  20
-17.249999999999975
+92.36137800081471
  30
 0.0
  11
-236.91666666666669
+243.52325267042647
  21
-17.249999999999975
+82.36137800081471
  31
 0.0
   0
@@ -3707,15 +4245,15 @@ LINE
   8
 cut
  10
-236.91666666666669
+243.93234357951738
  20
-17.249999999999975
+31.722756001629396
  30
 0.0
  11
-236.91666666666669
+243.93234357951738
  21
-17.74999999999997
+36.7227560016294
  31
 0.0
   0
@@ -3725,15 +4263,15 @@ LINE
   8
 cut
  10
-102.50000000000001
+243.93234357951738
  20
-23.333333333333318
+36.7227560016294
  30
 0.0
  11
-114.1666666666667
+232.8414344886083
  21
-23.333333333333318
+36.7227560016294
  31
 0.0
   0
@@ -3743,15 +4281,15 @@ LINE
   8
 cut
  10
-114.1666666666667
+232.8414344886083
  20
-23.333333333333318
+36.7227560016294
  30
 0.0
  11
-114.16666666666669
+232.8414344886083
  21
-46.66666666666666
+31.722756001629396
  31
 0.0
   0
@@ -3761,15 +4299,15 @@ LINE
   8
 cut
  10
-114.16666666666669
+216.20507085224466
  20
-46.66666666666666
+31.722756001629396
  30
 0.0
  11
-102.50000000000004
+216.20507085224466
  21
-46.66666666666666
+36.7227560016294
  31
 0.0
   0
@@ -3779,15 +4317,15 @@ LINE
   8
 cut
  10
-213.08333333333334
+216.20507085224466
  20
-350.25
+36.7227560016294
  30
 0.0
  11
-236.91666666666666
+205.11416176133554
  21
-350.25
+36.7227560016294
  31
 0.0
   0
@@ -3797,15 +4335,15 @@ LINE
   8
 cut
  10
-236.91666666666666
+205.11416176133554
  20
-350.25
+36.7227560016294
  30
 0.0
  11
-236.91666666666666
+205.11416176133554
  21
-350.75
+31.722756001629396
  31
 0.0
   0
@@ -3815,15 +4353,15 @@ LINE
   8
 cut
  10
-236.91666666666666
+262.52325267042653
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-213.08333333333334
+257.52325267042653
  21
-350.75
+91.36137800081471
  31
 0.0
   0
@@ -3833,15 +4371,15 @@ LINE
   8
 cut
  10
-213.08333333333334
+257.52325267042653
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-213.08333333333334
+257.52325267042653
  21
-350.25
+83.36137800081471
  31
 0.0
   0
@@ -3851,15 +4389,15 @@ LINE
   8
 cut
  10
-233.08333333333334
+257.52325267042653
  20
-350.25
+83.36137800081471
  30
 0.0
  11
-256.9166666666667
+262.52325267042653
  21
-350.25
+83.36137800081471
  31
 0.0
   0
@@ -3869,15 +4407,15 @@ LINE
   8
 cut
  10
-256.9166666666667
+186.52325267042647
  20
-350.25
+83.36137800081471
  30
 0.0
  11
-256.9166666666667
+191.52325267042647
  21
-350.75
+83.36137800081471
  31
 0.0
   0
@@ -3887,15 +4425,15 @@ LINE
   8
 cut
  10
-256.9166666666667
+191.52325267042647
  20
-350.75
+83.36137800081471
  30
 0.0
  11
-233.08333333333334
+191.52325267042647
  21
-350.75
+91.36137800081471
  31
 0.0
   0
@@ -3905,15 +4443,15 @@ LINE
   8
 cut
  10
-233.08333333333334
+191.52325267042647
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-233.08333333333334
+186.52325267042647
  21
-350.25
+91.36137800081471
  31
 0.0
   0
@@ -3923,15 +4461,15 @@ LINE
   8
 cut
  10
-367.5
+290.0328332158675
  20
-344.6666666666668
+122.37140729545962
  30
 0.0
  11
-355.83333333333337
+290.0328332158675
  21
-344.6666666666668
+131.12380243181985
  31
 0.0
   0
@@ -3941,15 +4479,15 @@ LINE
   8
 cut
  10
-355.83333333333337
+290.0328332158675
  20
-344.6666666666668
+131.12380243181985
  30
 0.0
  11
-355.83333333333337
+272.52804294314694
  21
-321.3333333333334
+131.12380243181988
  31
 0.0
   0
@@ -3959,15 +4497,15 @@ LINE
   8
 cut
  10
-355.83333333333337
+272.52804294314694
  20
-321.3333333333334
+131.12380243181988
  30
 0.0
  11
-367.50000000000006
+272.52804294314694
  21
-321.3333333333334
+122.37140729545962
  31
 0.0
   0
@@ -3977,15 +4515,15 @@ LINE
   8
 cut
  10
-256.91666666666674
+319.2477556839554
  20
-17.749999999999915
+223.5120791976936
  30
 0.0
  11
-233.08333333333343
+314.2109561925024
  21
-17.74999999999989
+206.22615649603978
  31
 0.0
   0
@@ -3995,15 +4533,15 @@ LINE
   8
 cut
  10
-233.08333333333343
+314.2109561925024
  20
-17.74999999999989
+206.22615649603978
  30
 0.0
  11
-233.08333333333343
+314.69099296160164
  21
-17.249999999999886
+206.08628262316594
  31
 0.0
   0
@@ -4013,15 +4551,15 @@ LINE
   8
 cut
  10
-233.08333333333343
+314.69099296160164
  20
-17.249999999999886
+206.08628262316594
  30
 0.0
  11
-256.91666666666674
+319.72779245305475
  21
-17.24999999999992
+223.37220532481973
  31
 0.0
   0
@@ -4031,15 +4569,15 @@ LINE
   8
 cut
  10
-256.91666666666674
+319.72779245305475
  20
-17.24999999999992
+223.37220532481973
  30
 0.0
  11
-256.91666666666674
+319.2477556839554
  21
-17.749999999999915
+223.5120791976936
  31
 0.0
   0
@@ -4049,15 +4587,15 @@ LINE
   8
 cut
  10
-367.5000000000001
+314.21095619250247
  20
-46.66666666666669
+294.77384350396034
  30
 0.0
  11
-355.8333333333334
+319.24775568395546
  21
-46.66666666666666
+277.4879208023065
  31
 0.0
   0
@@ -4067,15 +4605,15 @@ LINE
   8
 cut
  10
-355.8333333333334
+319.24775568395546
  20
-46.66666666666666
+277.4879208023065
  30
 0.0
  11
-355.8333333333334
+319.72779245305475
  21
-23.333333333333346
+277.6277946751803
  31
 0.0
   0
@@ -4085,15 +4623,15 @@ LINE
   8
 cut
  10
-355.8333333333334
+319.72779245305475
  20
-23.333333333333346
+277.6277946751803
  30
 0.0
  11
-367.50000000000006
+314.69099296160164
  21
-23.333333333333346
+294.91371737683414
  31
 0.0
   0
@@ -4103,15 +4641,15 @@ LINE
   8
 cut
  10
-342.2500000000001
+314.69099296160164
  20
-92.43181818181819
+294.91371737683414
  30
 0.0
  11
-342.2500000000001
+314.21095619250247
  21
-80.84090909090908
+294.77384350396034
  31
 0.0
   0
@@ -4121,15 +4659,15 @@ LINE
   8
 cut
  10
-342.2500000000001
+216.45507085224477
  20
-80.84090909090908
+373.25000000000017
  30
 0.0
  11
-342.7500000000001
+204.86416176133565
  21
-80.84090909090908
+373.25000000000017
  31
 0.0
   0
@@ -4139,15 +4677,15 @@ LINE
   8
 cut
  10
-342.7500000000001
+204.86416176133565
  20
-80.84090909090908
+373.25000000000017
  30
 0.0
  11
-342.7500000000001
+204.86416176133565
  21
-92.43181818181819
+372.7500000000001
  31
 0.0
   0
@@ -4157,15 +4695,15 @@ LINE
   8
 cut
  10
-342.7500000000001
+204.86416176133565
  20
-92.43181818181819
+372.7500000000001
  30
 0.0
  11
-342.2500000000001
+216.45507085224477
  21
-92.43181818181819
+372.7500000000001
  31
 0.0
   0
@@ -4175,15 +4713,15 @@ LINE
   8
 cut
  10
-342.25000000000006
+216.45507085224477
  20
-120.15909090909092
+372.7500000000001
  30
 0.0
  11
-342.25000000000006
+216.45507085224477
  21
-108.56818181818183
+373.25000000000017
  31
 0.0
   0
@@ -4193,15 +4731,15 @@ LINE
   8
 cut
  10
-342.25000000000006
+244.1823435795175
  20
-108.56818181818183
+373.25000000000006
  30
 0.0
  11
-342.75000000000006
+232.5914344886084
  21
-108.56818181818183
+373.25000000000017
  31
 0.0
   0
@@ -4211,15 +4749,15 @@ LINE
   8
 cut
  10
-342.75000000000006
+232.5914344886084
  20
-108.56818181818183
+373.25000000000017
  30
 0.0
  11
-342.75000000000006
+232.5914344886084
  21
-120.15909090909092
+372.7500000000001
  31
 0.0
   0
@@ -4229,15 +4767,15 @@ LINE
   8
 cut
  10
-342.75000000000006
+232.5914344886084
  20
-120.15909090909092
+372.7500000000001
  30
 0.0
  11
-342.25000000000006
+244.1823435795175
  21
-120.15909090909092
+372.75000000000006
  31
 0.0
   0
@@ -4247,15 +4785,15 @@ LINE
   8
 cut
  10
-372.9166666666667
+244.1823435795175
  20
-148.75000000000003
+372.75000000000006
  30
 0.0
  11
-361.0833333333334
+244.1823435795175
  21
-148.75000000000003
+373.25000000000006
  31
 0.0
   0
@@ -4265,15 +4803,15 @@ LINE
   8
 cut
  10
-361.0833333333334
+232.5914344886084
  20
-148.75000000000003
+357.75000000000017
  30
 0.0
  11
-361.0833333333334
+244.1823435795175
  21
-148.25
+357.7500000000001
  31
 0.0
   0
@@ -4283,15 +4821,15 @@ LINE
   8
 cut
  10
-361.0833333333334
+244.1823435795175
  20
-148.25
+357.7500000000001
  30
 0.0
  11
-372.9166666666667
+244.1823435795175
  21
-148.25
+358.2500000000001
  31
 0.0
   0
@@ -4301,15 +4839,15 @@ LINE
   8
 cut
  10
-372.9166666666667
+244.1823435795175
  20
-148.25
+358.2500000000001
  30
 0.0
  11
-372.9166666666667
+232.5914344886084
  21
-148.75000000000003
+358.25000000000017
  31
 0.0
   0
@@ -4319,15 +4857,15 @@ LINE
   8
 cut
  10
-461.00000000000006
+232.5914344886084
  20
-157.25000000000009
+358.25000000000017
  30
 0.0
  11
-461.00000000000006
+232.5914344886084
  21
-148.75000000000009
+357.75000000000017
  31
 0.0
   0
@@ -4337,15 +4875,15 @@ LINE
   8
 cut
  10
-461.00000000000006
+204.86416176133562
  20
-148.75000000000009
+357.75000000000017
  30
 0.0
  11
-461.50000000000006
+216.45507085224475
  21
-148.75000000000009
+357.75000000000017
  31
 0.0
   0
@@ -4355,15 +4893,15 @@ LINE
   8
 cut
  10
-461.50000000000006
+216.45507085224475
  20
-148.75000000000009
+357.75000000000017
  30
 0.0
  11
-461.50000000000006
+216.45507085224475
  21
-157.25000000000009
+358.25000000000017
  31
 0.0
   0
@@ -4373,15 +4911,15 @@ LINE
   8
 cut
  10
-461.50000000000006
+216.45507085224475
  20
-157.25000000000009
+358.25000000000017
  30
 0.0
  11
-461.00000000000006
+204.86416176133562
  21
-157.25000000000009
+358.25000000000017
  31
 0.0
   0
@@ -4391,15 +4929,15 @@ LINE
   8
 cut
  10
-361.00000000000006
+204.86416176133562
  20
-184.00000000000003
+358.25000000000017
  30
 0.0
  11
-361.00000000000006
+204.86416176133562
  21
-180.00000000000006
+357.75000000000017
  31
 0.0
   0
@@ -4409,15 +4947,15 @@ LINE
   8
 cut
  10
-361.00000000000006
+176.27325267042653
  20
-180.00000000000006
+388.4166666666668
  30
 0.0
  11
-373.0
+176.27325267042653
  21
-180.00000000000006
+376.5833333333335
  31
 0.0
   0
@@ -4427,15 +4965,15 @@ LINE
   8
 cut
  10
-373.0
+176.27325267042653
  20
-180.00000000000006
+376.5833333333335
  30
 0.0
  11
-373.0
+176.77325267042653
  21
-184.00000000000003
+376.5833333333335
  31
 0.0
   0
@@ -4445,15 +4983,15 @@ LINE
   8
 cut
  10
-373.0
+176.77325267042653
  20
-184.00000000000003
+376.5833333333335
  30
 0.0
  11
-361.00000000000006
+176.77325267042653
  21
-184.00000000000003
+388.4166666666668
  31
 0.0
   0
@@ -4463,15 +5001,15 @@ LINE
   8
 cut
  10
-362.50000000000006
+176.77325267042653
  20
-172.00000000000003
+388.4166666666668
  30
 0.0
  11
-362.50000000000006
+176.27325267042653
  21
-168.0
+388.4166666666668
  31
 0.0
   0
@@ -4481,15 +5019,15 @@ LINE
   8
 cut
  10
-362.50000000000006
+167.77325267042664
  20
-168.0
+476.50000000000017
  30
 0.0
  11
-371.50000000000006
+176.27325267042661
  21
-168.00000000000003
+476.50000000000017
  31
 0.0
   0
@@ -4499,15 +5037,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+176.27325267042661
  20
-168.00000000000003
+476.50000000000017
  30
 0.0
  11
-371.50000000000006
+176.27325267042661
  21
-172.00000000000006
+477.00000000000017
  31
 0.0
   0
@@ -4517,15 +5055,15 @@ LINE
   8
 cut
  10
-371.50000000000006
+176.27325267042661
  20
-172.00000000000006
+477.00000000000017
  30
 0.0
  11
-362.50000000000006
+167.77325267042664
  21
-172.00000000000003
+477.00000000000017
  31
 0.0
   0
@@ -4535,15 +5073,15 @@ LINE
   8
 cut
  10
-361.00000000000006
+167.77325267042664
  20
-208.50000000000006
+477.00000000000017
  30
 0.0
  11
-361.00000000000006
+167.77325267042664
  21
-185.50000000000006
+476.50000000000017
  31
 0.0
   0
@@ -4553,15 +5091,15 @@ LINE
   8
 cut
  10
-361.00000000000006
+141.02325267042656
  20
-185.50000000000006
+376.50000000000017
  30
 0.0
  11
-373.0
+145.02325267042653
  21
-185.50000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4571,15 +5109,15 @@ LINE
   8
 cut
  10
-373.0
+145.02325267042653
  20
-185.50000000000006
+376.50000000000017
  30
 0.0
  11
-373.0
+145.02325267042653
  21
-208.50000000000006
+388.50000000000017
  31
 0.0
   0
@@ -4589,15 +5127,15 @@ LINE
   8
 cut
  10
-373.0
+145.02325267042653
  20
-208.50000000000006
+388.50000000000017
  30
 0.0
  11
-361.00000000000006
+141.02325267042656
  21
-208.50000000000006
+388.50000000000017
  31
 0.0
   0
@@ -4607,15 +5145,15 @@ LINE
   8
 cut
  10
-361.00000000000006
+141.02325267042656
  20
-214.00000000000006
+388.50000000000017
  30
 0.0
  11
-361.00000000000006
+141.02325267042656
  21
-210.00000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4625,15 +5163,15 @@ LINE
   8
 cut
  10
-361.00000000000006
+153.02325267042656
  20
-210.00000000000006
+378.00000000000017
  30
 0.0
  11
-373.0
+157.02325267042656
  21
-210.00000000000006
+378.00000000000017
  31
 0.0
   0
@@ -4643,15 +5181,15 @@ LINE
   8
 cut
  10
-373.0
+157.02325267042656
  20
-210.00000000000006
+378.00000000000017
  30
 0.0
  11
-373.0
+157.02325267042656
  21
-214.00000000000006
+387.00000000000017
  31
 0.0
   0
@@ -4661,15 +5199,15 @@ LINE
   8
 cut
  10
-373.0
+157.02325267042656
  20
-214.00000000000006
+387.00000000000017
  30
 0.0
  11
-361.00000000000006
+153.02325267042656
  21
-214.00000000000006
+387.00000000000017
  31
 0.0
   0
@@ -4679,15 +5217,15 @@ LINE
   8
 cut
  10
-361.3333333333334
+153.02325267042656
  20
-236.50000000000003
+387.00000000000017
  30
 0.0
  11
-361.3333333333334
+153.02325267042656
  21
-231.50000000000006
+378.00000000000017
  31
 0.0
   0
@@ -4697,15 +5235,15 @@ LINE
   8
 cut
  10
-361.3333333333334
+116.52325267042653
  20
-231.50000000000006
+376.50000000000017
  30
 0.0
  11
-372.6666666666667
+139.52325267042656
  21
-231.50000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4715,15 +5253,15 @@ LINE
   8
 cut
  10
-372.6666666666667
+139.52325267042656
  20
-231.50000000000006
+376.50000000000017
  30
 0.0
  11
-372.6666666666667
+139.52325267042656
  21
-236.50000000000003
+388.50000000000017
  31
 0.0
   0
@@ -4733,15 +5271,15 @@ LINE
   8
 cut
  10
-416.15427803486153
+139.52325267042656
  20
-297.5000000000001
+388.50000000000017
  30
 0.0
  11
-416.15427803486153
+116.52325267042654
  21
-294.5000000000001
+388.50000000000017
  31
 0.0
   0
@@ -4751,15 +5289,15 @@ LINE
   8
 cut
  10
-416.15427803486153
+116.52325267042654
  20
-294.5000000000001
+388.50000000000017
  30
 0.0
  11
-434.15427803486153
+116.52325267042653
  21
-294.5000000000001
+376.50000000000017
  31
 0.0
   0
@@ -4769,15 +5307,15 @@ LINE
   8
 cut
  10
-434.15427803486153
+111.02325267042653
  20
-294.5000000000001
+376.50000000000017
  30
 0.0
  11
-434.15427803486153
+115.02325267042653
  21
-297.5000000000001
+376.50000000000017
  31
 0.0
   0
@@ -4787,15 +5325,15 @@ LINE
   8
 cut
  10
-434.15427803486153
+115.02325267042653
  20
-297.5000000000001
+376.50000000000017
  30
 0.0
  11
-416.15427803486153
+115.02325267042653
  21
-297.5000000000001
+388.50000000000017
  31
 0.0
   0
@@ -4805,15 +5343,15 @@ LINE
   8
 cut
  10
-429.90427803486153
+115.02325267042653
  20
-245.75000000000009
+388.50000000000017
  30
 0.0
  11
-420.40427803486153
+111.02325267042654
  21
-245.75000000000009
+388.50000000000017
  31
 0.0
   0
@@ -4823,15 +5361,15 @@ LINE
   8
 cut
  10
-420.40427803486153
+111.02325267042654
  20
-245.75000000000009
+388.50000000000017
  30
 0.0
  11
-420.40427803486153
+111.02325267042653
  21
-245.25000000000009
+376.50000000000017
  31
 0.0
   0
@@ -4841,15 +5379,15 @@ LINE
   8
 cut
  10
-420.40427803486153
+88.52325267042652
  20
-245.25000000000009
+376.8333333333335
  30
 0.0
  11
-429.90427803486153
+93.5232526704265
  21
-245.25000000000009
+376.8333333333335
  31
 0.0
   0
@@ -4859,15 +5397,15 @@ LINE
   8
 cut
  10
-429.90427803486153
+93.5232526704265
  20
-245.25000000000009
+376.8333333333335
  30
 0.0
  11
-429.90427803486153
+93.52325267042652
  21
-245.75000000000009
+388.16666666666686
  31
 0.0
   0
@@ -4877,15 +5415,15 @@ LINE
   8
 cut
  10
-492.55855606972295
+93.52325267042652
  20
-278.25000000000017
+388.16666666666686
  30
 0.0
  11
-492.55855606972295
+88.52325267042653
  21
-257.75000000000017
+388.16666666666686
  31
 0.0
   0
@@ -4895,15 +5433,15 @@ LINE
   8
 cut
  10
-492.55855606972295
+51.01367212498543
  20
-257.75000000000017
+378.6285927045407
  30
 0.0
  11
-493.05855606972295
+51.013672124985426
  21
-257.75000000000017
+369.87619756818043
  31
 0.0
   0
@@ -4913,15 +5451,15 @@ LINE
   8
 cut
  10
-493.05855606972295
+51.013672124985426
  20
-257.75000000000017
+369.87619756818043
  30
 0.0
  11
-493.05855606972295
+68.51846239770595
  21
-278.25000000000017
+369.87619756818043
  31
 0.0
   0
@@ -4931,15 +5469,15 @@ LINE
   8
 cut
  10
-493.05855606972295
+68.51846239770595
  20
-278.25000000000017
+369.87619756818043
  30
 0.0
  11
-492.55855606972295
+68.51846239770595
  21
-278.25000000000017
+378.6285927045407
  31
 0.0
   0
@@ -4949,15 +5487,15 @@ LINE
   8
 cut
  10
-416.1542780348615
+21.798749656897446
  20
-301.0000000000001
+277.4879208023067
  30
 0.0
  11
-416.1542780348615
+26.83554914835048
  21
-298.0000000000001
+294.7738435039605
  31
 0.0
   0
@@ -4967,15 +5505,15 @@ LINE
   8
 cut
  10
-416.1542780348615
+26.83554914835048
  20
-298.0000000000001
+294.7738435039605
  30
 0.0
  11
-434.1542780348615
+26.3555123792512
  21
-298.0000000000001
+294.9137173768343
  31
 0.0
   0
@@ -4985,15 +5523,15 @@ LINE
   8
 cut
  10
-434.1542780348615
+26.3555123792512
  20
-298.0000000000001
+294.9137173768343
  30
 0.0
  11
-434.1542780348615
+21.318712887798156
  21
-301.0000000000001
+277.62779467518055
  31
 0.0
   0
@@ -5003,15 +5541,15 @@ LINE
   8
 cut
  10
-434.1542780348615
+21.318712887798156
  20
-301.0000000000001
+277.62779467518055
  30
 0.0
  11
-416.1542780348615
+21.798749656897446
  21
-301.0000000000001
+277.4879208023067
  31
 0.0
   0
@@ -5021,15 +5559,15 @@ LINE
   8
 cut
  10
-420.6542780348614
+26.835549148350342
  20
-399.5000000000001
+206.22615649604003
  30
 0.0
  11
-420.6542780348614
+21.798749656897346
  21
-394.50000000000017
+223.51207919769385
  31
 0.0
   0
@@ -5039,15 +5577,15 @@ LINE
   8
 cut
  10
-420.6542780348614
+21.798749656897346
  20
-394.50000000000017
+223.51207919769385
  30
 0.0
  11
-429.65427803486136
+21.31871288779806
  21
-394.50000000000017
+223.37220532482002
  31
 0.0
   0
@@ -5057,15 +5595,15 @@ LINE
   8
 cut
  10
-429.65427803486136
+21.31871288779806
  20
-394.50000000000017
+223.37220532482002
  30
 0.0
  11
-429.65427803486136
+26.355512379251053
  21
-399.5000000000001
+206.08628262316617
  31
 0.0
   0
@@ -5075,15 +5613,15 @@ LINE
   8
 cut
  10
-102.50000000000001
+26.355512379251053
  20
-321.33333333333337
+206.08628262316617
  30
 0.0
  11
-114.16666666666667
+26.835549148350342
  21
-321.33333333333337
+206.22615649604003
  31
 0.0
   0
@@ -5093,15 +5631,15 @@ LINE
   8
 cut
  10
-114.16666666666667
+68.51846239770559
  20
-321.33333333333337
+122.37140729545976
  30
 0.0
  11
-114.16666666666667
+68.51846239770562
  21
-344.6666666666667
+131.12380243182005
  31
 0.0
   0
@@ -5111,15 +5649,15 @@ LINE
   8
 cut
  10
-114.16666666666667
+68.51846239770562
  20
-344.6666666666667
+131.12380243182005
  30
 0.0
  11
-102.50000000000001
+51.01367212498507
  21
-344.6666666666667
+131.12380243182008
  31
 0.0
   0
@@ -5129,15 +5667,15 @@ LINE
   8
 cut
  10
-112.5
+51.01367212498507
  20
-258.0
+131.12380243182008
  30
 0.0
  11
-112.5
+51.01367212498506
  21
-253.00000000000003
+122.3714072954598
  31
 0.0
   0
@@ -5147,15 +5685,15 @@ LINE
   8
 cut
  10
-112.5
+272.52804294314706
  20
-253.00000000000003
+378.6285927045405
  30
 0.0
  11
-117.5
+272.52804294314706
  21
-258.0
+369.87619756818015
  31
 0.0
   0
@@ -5165,15 +5703,15 @@ LINE
   8
 cut
  10
-117.5
+272.52804294314706
  20
-258.0
+369.87619756818015
  30
 0.0
  11
-117.5
+290.03283321586764
  21
-278.0
+369.87619756818015
  31
 0.0
   0
@@ -5183,15 +5721,15 @@ LINE
   8
 cut
  10
-117.5
+290.03283321586764
  20
-278.0
+369.87619756818015
  30
 0.0
  11
-112.5
+290.03283321586764
  21
-283.0
+378.6285927045405
  31
 0.0
   0
@@ -5201,15 +5739,15 @@ LINE
   8
 cut
  10
-112.5
+511.3550614105758
  20
-283.0
+105.00000000000001
  30
 0.0
  11
-112.5
+449.7007833757143
  21
-278.0
+105.00000000000001
  31
 0.0
   0
@@ -5219,33 +5757,35 @@ LINE
   8
 cut
  10
-108.91666666666669
+449.7007833757143
  20
-148.75000000000003
+166.0
  30
 0.0
  11
-97.08333333333336
+511.3550614105758
  21
-148.75000000000003
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-45
  10
-97.08333333333336
+449.7007833757143
  20
-148.75000000000003
+166.0
  30
 0.0
  11
-97.08333333333336
+449.7007833757143
  21
-148.25
+105.00000000000001
  31
 0.0
   0
@@ -5255,15 +5795,15 @@ LINE
   8
 cut
  10
-97.08333333333336
+521.3550614105757
  20
-148.25
+105.00000000000001
  30
 0.0
  11
-108.91666666666669
+511.3550614105758
  21
-148.25
+105.00000000000001
  31
 0.0
   0
@@ -5273,15 +5813,15 @@ LINE
   8
 cut
  10
-108.91666666666669
+521.3550614105757
  20
-148.25
+166.0
  30
 0.0
  11
-108.91666666666669
+521.3550614105757
  21
-148.75000000000003
+105.00000000000001
  31
 0.0
   0
@@ -5291,15 +5831,15 @@ LINE
   8
 cut
  10
-1.2500000000000002
+511.3550614105758
  20
-149.00000000000003
+166.0
  30
 0.0
  11
-1.2500000000000002
+521.3550614105757
  21
-146.50000000000003
+166.0
  31
 0.0
   0
@@ -5309,51 +5849,55 @@ LINE
   8
 cut
  10
-1.2500000000000002
+422.7007833757143
  20
-146.50000000000003
+166.0
  30
 0.0
  11
-3.7500000000000004
+449.7007833757143
  21
-149.00000000000003
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-45
  10
-3.7500000000000004
+422.7007833757143
  20
-149.00000000000003
+105.00000000000001
  30
 0.0
  11
-3.7500000000000004
+422.7007833757143
  21
-157.0
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-3.7500000000000004
+449.7007833757143
  20
-157.0
+105.00000000000001
  30
 0.0
  11
-1.2500000000000002
+422.7007833757143
  21
-159.5
+105.00000000000001
  31
 0.0
   0
@@ -5363,15 +5907,15 @@ LINE
   8
 cut
  10
-1.2500000000000002
+361.0465053408529
  20
-159.5
+166.0
  30
 0.0
  11
-1.2500000000000002
+422.7007833757143
  21
-157.0
+166.0
  31
 0.0
   0
@@ -5381,15 +5925,15 @@ LINE
   8
 cut
  10
-97.00000000000001
+422.7007833757143
  20
-184.00000000000003
+105.00000000000001
  30
 0.0
  11
-97.00000000000001
+361.0465053408529
  21
-180.0
+105.00000000000001
  31
 0.0
   0
@@ -5399,15 +5943,15 @@ LINE
   8
 cut
  10
-97.00000000000001
+351.0465053408529
  20
-180.0
+166.0
  30
 0.0
  11
-109.00000000000001
+361.0465053408529
  21
-180.0
+166.0
  31
 0.0
   0
@@ -5417,15 +5961,15 @@ LINE
   8
 cut
  10
-109.00000000000001
+351.0465053408529
  20
-180.0
+105.00000000000001
  30
 0.0
  11
-109.00000000000001
+351.0465053408529
  21
-184.00000000000003
+166.0
  31
 0.0
   0
@@ -5435,15 +5979,15 @@ LINE
   8
 cut
  10
-109.00000000000001
+361.0465053408529
  20
-184.00000000000003
+105.00000000000001
  30
 0.0
  11
-97.00000000000001
+351.0465053408529
  21
-184.00000000000003
+105.00000000000001
  31
 0.0
   0
@@ -5453,15 +5997,15 @@ LINE
   8
 cut
  10
-98.50000000000001
+449.7007833757143
  20
-172.00000000000003
+105.00000000000001
  30
 0.0
  11
-98.50000000000001
+449.7007833757143
  21
-168.0
+88.00000000000001
  31
 0.0
   0
@@ -5471,33 +6015,35 @@ LINE
   8
 cut
  10
-98.50000000000001
+422.7007833757143
  20
-168.0
+88.00000000000001
  30
 0.0
  11
-107.50000000000001
+422.7007833757143
  21
-168.0
+105.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-107.50000000000001
+449.7007833757143
  20
-168.0
+88.00000000000001
  30
 0.0
  11
-107.50000000000001
+422.7007833757143
  21
-172.00000000000003
+88.00000000000001
  31
 0.0
   0
@@ -5507,15 +6053,15 @@ LINE
   8
 cut
  10
-107.50000000000001
+449.7007833757143
  20
-172.00000000000003
+88.00000000000001
  30
 0.0
  11
-98.50000000000001
+449.7007833757143
  21
-172.00000000000003
+27.000000000000004
  31
 0.0
   0
@@ -5525,33 +6071,35 @@ LINE
   8
 cut
  10
-97.00000000000001
+422.7007833757143
  20
-208.50000000000003
+27.000000000000004
  30
 0.0
  11
-97.00000000000001
+422.7007833757143
  21
-185.50000000000003
+88.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-97.00000000000001
+449.7007833757143
  20
-185.50000000000003
+27.000000000000004
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-185.50000000000003
+27.000000000000004
  31
 0.0
   0
@@ -5561,15 +6109,15 @@ LINE
   8
 cut
  10
-109.00000000000001
+449.7007833757143
  20
-185.50000000000003
+27.000000000000004
  30
 0.0
  11
-109.00000000000001
+449.7007833757143
  21
-208.50000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5579,33 +6127,35 @@ LINE
   8
 cut
  10
-109.00000000000001
+422.7007833757143
  20
-208.50000000000003
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+422.7007833757143
  21
-208.50000000000003
+27.000000000000004
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-97.00000000000001
+422.7007833757143
  20
-214.0
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+449.7007833757143
  21
-210.00000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5615,15 +6165,15 @@ LINE
   8
 cut
  10
-97.00000000000001
+422.7007833757143
  20
-210.00000000000003
+0.0
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-210.00000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5633,15 +6183,15 @@ LINE
   8
 cut
  10
-109.00000000000001
+449.7007833757143
  20
-210.00000000000003
+0.0
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-214.0
+0.0
  31
 0.0
   0
@@ -5651,15 +6201,15 @@ LINE
   8
 cut
  10
-109.00000000000001
+449.7007833757143
  20
-214.0
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+449.7007833757143
  21
-214.0
+0.0
  31
 0.0
   0
@@ -5669,15 +6219,15 @@ LINE
   8
 cut
  10
-97.33333333333336
+518.8550614105758
  20
-236.50000000000003
+154.90909090909093
  30
 0.0
  11
-97.33333333333336
+513.8550614105758
  21
-231.50000000000003
+154.90909090909093
  31
 0.0
   0
@@ -5687,15 +6237,15 @@ LINE
   8
 cut
  10
-97.33333333333336
+513.8550614105758
  20
-231.50000000000003
+154.90909090909093
  30
 0.0
  11
-108.66666666666669
+513.8550614105758
  21
-231.50000000000003
+143.8181818181818
  31
 0.0
   0
@@ -5705,15 +6255,15 @@ LINE
   8
 cut
  10
-108.66666666666669
+513.8550614105758
  20
-231.50000000000003
+143.8181818181818
  30
 0.0
  11
-108.66666666666669
+518.8550614105758
  21
-236.50000000000003
+143.8181818181818
  31
 0.0
   0
@@ -5723,15 +6273,15 @@ LINE
   8
 cut
  10
-65.36137800081468
+518.8550614105758
  20
-113.00000000000001
+127.1818181818182
  30
 0.0
  11
-65.36137800081468
+513.8550614105758
  21
-102.00000000000001
+127.1818181818182
  31
 0.0
   0
@@ -5741,15 +6291,15 @@ LINE
   8
 cut
  10
-65.36137800081468
+513.8550614105758
  20
-102.00000000000001
+127.1818181818182
  30
 0.0
  11
-78.36137800081468
+513.8550614105758
  21
-102.00000000000001
+116.09090909090911
  31
 0.0
   0
@@ -5759,15 +6309,15 @@ LINE
   8
 cut
  10
-78.36137800081468
+513.8550614105758
  20
-102.00000000000001
+116.09090909090911
  30
 0.0
  11
-78.36137800081468
+518.8550614105758
  21
-113.00000000000001
+116.09090909090911
  31
 0.0
   0
@@ -5777,15 +6327,15 @@ LINE
   8
 cut
  10
-78.36137800081468
+445.2007833757143
  20
-113.00000000000001
+102.50000000000001
  30
 0.0
  11
-65.36137800081468
+445.2007833757143
  21
-113.00000000000001
+108.50000000000001
  31
 0.0
   0
@@ -5795,15 +6345,15 @@ LINE
   8
 cut
  10
-66.8613780008147
+445.2007833757143
  20
-81.50000000000001
+108.50000000000001
  30
 0.0
  11
-66.8613780008147
+427.2007833757143
  21
-75.50000000000001
+108.50000000000001
  31
 0.0
   0
@@ -5813,15 +6363,15 @@ LINE
   8
 cut
  10
-66.8613780008147
+427.2007833757143
  20
-75.50000000000001
+108.50000000000001
  30
 0.0
  11
-76.8613780008147
+427.2007833757143
  21
-75.50000000000001
+102.50000000000001
  31
 0.0
   0
@@ -5831,15 +6381,15 @@ LINE
   8
 cut
  10
-76.8613780008147
+427.2007833757143
  20
-75.50000000000001
+102.50000000000001
  30
 0.0
  11
-76.8613780008147
+445.2007833757143
  21
-81.50000000000001
+102.50000000000001
  31
 0.0
   0
@@ -5849,15 +6399,15 @@ LINE
   8
 cut
  10
-76.8613780008147
+431.4507833757143
  20
-81.50000000000001
+158.25000000000003
  30
 0.0
  11
-66.8613780008147
+440.9507833757143
  21
-81.50000000000001
+158.25000000000003
  31
 0.0
   0
@@ -5867,15 +6417,15 @@ LINE
   8
 cut
  10
-16.222756001629364
+440.9507833757143
  20
-81.0909090909091
+158.25000000000003
  30
 0.0
  11
-21.222756001629367
+440.9507833757143
  21
-81.0909090909091
+158.75000000000003
  31
 0.0
   0
@@ -5885,15 +6435,15 @@ LINE
   8
 cut
  10
-21.222756001629367
+440.9507833757143
  20
-81.0909090909091
+158.75000000000003
  30
 0.0
  11
-21.222756001629367
+431.4507833757143
  21
-92.18181818181819
+158.75000000000003
  31
 0.0
   0
@@ -5903,15 +6453,15 @@ LINE
   8
 cut
  10
-21.222756001629367
+431.4507833757143
  20
-92.18181818181819
+158.75000000000003
  30
 0.0
  11
-16.222756001629364
+431.4507833757143
  21
-92.18181818181819
+158.25000000000003
  31
 0.0
   0
@@ -5921,15 +6471,15 @@ LINE
   8
 cut
  10
-16.222756001629364
+353.54650534085283
  20
-108.81818181818183
+116.09090909090911
  30
 0.0
  11
-21.222756001629367
+358.54650534085283
  21
-108.81818181818183
+116.09090909090911
  31
 0.0
   0
@@ -5939,15 +6489,15 @@ LINE
   8
 cut
  10
-21.222756001629367
+358.54650534085283
  20
-108.81818181818183
+116.09090909090911
  30
 0.0
  11
-21.222756001629367
+358.54650534085283
  21
-119.90909090909092
+127.18181818181822
  31
 0.0
   0
@@ -5957,15 +6507,15 @@ LINE
   8
 cut
  10
-21.222756001629367
+358.54650534085283
  20
-119.90909090909092
+127.18181818181822
  30
 0.0
  11
-16.222756001629364
+353.54650534085283
  21
-119.90909090909092
+127.18181818181822
  31
 0.0
   0
@@ -5975,15 +6525,15 @@ LINE
   8
 cut
  10
-75.86137800081468
+353.54650534085283
  20
-62.50000000000001
+143.81818181818184
  30
 0.0
  11
-75.86137800081468
+358.54650534085283
  21
-67.50000000000001
+143.81818181818184
  31
 0.0
   0
@@ -5993,15 +6543,15 @@ LINE
   8
 cut
  10
-75.86137800081468
+358.54650534085283
  20
-67.50000000000001
+143.81818181818184
  30
 0.0
  11
-67.86137800081468
+358.54650534085283
  21
-67.50000000000001
+154.90909090909093
  31
 0.0
   0
@@ -6011,15 +6561,15 @@ LINE
   8
 cut
  10
-67.86137800081468
+358.54650534085283
  20
-67.50000000000001
+154.90909090909093
  30
 0.0
  11
-67.86137800081468
+353.54650534085283
  21
-62.50000000000001
+154.90909090909093
  31
 0.0
   0
@@ -6029,15 +6579,15 @@ LINE
   8
 cut
  10
-67.86137800081468
+440.7007833757143
  20
-138.5
+2.5000000000000004
  30
 0.0
  11
-67.86137800081468
+440.7007833757143
  21
-133.5
+7.500000000000001
  31
 0.0
   0
@@ -6047,15 +6597,15 @@ LINE
   8
 cut
  10
-67.86137800081468
+440.7007833757143
  20
-133.5
+7.500000000000001
  30
 0.0
  11
-75.86137800081468
+431.7007833757143
  21
-133.5
+7.500000000000001
  31
 0.0
   0
@@ -6065,15 +6615,15 @@ LINE
   8
 cut
  10
-75.86137800081468
+431.7007833757143
  20
-133.5
+7.500000000000001
  30
 0.0
  11
-75.86137800081468
+431.7007833757143
  21
-138.5
+2.5000000000000004
  31
 0.0
   0
@@ -6085,15 +6635,15 @@ DOTTED
   8
 90
  10
-543.3085560697231
+564.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6105,15 +6655,15 @@ DOTTED
   8
 90
  10
-604.308556069723
+625.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6125,15 +6675,15 @@ DOTTED
   8
 90
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6145,15 +6695,15 @@ DOTTED
   8
 90
  10
-543.3085560697231
+564.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6163,15 +6713,15 @@ LINE
   8
 cut
  10
-543.3085560697231
+564.3550614105757
  20
-165.00000000000003
+116.50000000000001
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6181,15 +6731,15 @@ LINE
   8
 cut
  10
-603.308556069723
+624.3550614105758
  20
-165.00000000000003
+116.50000000000001
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-165.00000000000003
+116.50000000000001
  31
 0.0
   0
@@ -6199,15 +6749,15 @@ LINE
   8
 cut
  10
-603.308556069723
+624.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-603.308556069723
+624.3550614105758
  21
-165.00000000000003
+116.50000000000001
  31
 0.0
   0
@@ -6217,15 +6767,15 @@ LINE
   8
 cut
  10
-611.308556069723
+632.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6235,15 +6785,15 @@ LINE
   8
 cut
  10
-611.308556069723
+632.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-611.308556069723
+632.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6253,15 +6803,15 @@ LINE
   8
 cut
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-611.308556069723
+632.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6273,15 +6823,15 @@ DOTTED
   8
 90
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6291,15 +6841,15 @@ LINE
   8
 cut
  10
-544.3085560697231
+565.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6311,15 +6861,15 @@ DOTTED
   8
 90
  10
-544.3085560697231
+565.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-544.3085560697231
+565.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6329,15 +6879,15 @@ LINE
   8
 cut
  10
-628.3085560697231
+649.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6349,15 +6899,15 @@ DOTTED
   8
 90
  10
-628.3085560697231
+649.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6367,15 +6917,15 @@ LINE
   8
 cut
  10
-604.308556069723
+625.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6385,15 +6935,15 @@ LINE
   8
 cut
  10
-688.3085560697231
+709.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6403,15 +6953,15 @@ LINE
   8
 cut
  10
-688.3085560697231
+709.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-688.3085560697231
+709.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6421,15 +6971,15 @@ LINE
   8
 cut
  10
-628.3085560697231
+649.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-688.3085560697231
+709.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6439,15 +6989,15 @@ LINE
   8
 cut
  10
-544.3085560697231
+565.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6457,15 +7007,15 @@ LINE
   8
 cut
  10
-520.3085560697231
+541.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-544.3085560697231
+565.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6477,15 +7027,15 @@ DOTTED
   8
 90
  10
-520.3085560697231
+541.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6495,15 +7045,15 @@ LINE
   8
 cut
  10
-510.308556069723
+531.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6513,15 +7063,15 @@ LINE
   8
 cut
  10
-510.308556069723
+531.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-510.308556069723
+531.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6531,15 +7081,15 @@ LINE
   8
 cut
  10
-520.3085560697231
+541.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-510.308556069723
+531.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6549,15 +7099,15 @@ LINE
   8
 cut
  10
-536.308556069723
+557.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6567,15 +7117,15 @@ LINE
   8
 cut
  10
-536.308556069723
+557.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-536.308556069723
+557.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6585,15 +7135,15 @@ LINE
   8
 cut
  10
-543.3085560697231
+564.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-536.308556069723
+557.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6603,15 +7153,15 @@ LINE
   8
 cut
  10
-592.3994651606322
+613.4459705014848
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-595.8994651606321
+616.9459705014849
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6621,15 +7171,15 @@ LINE
   8
 cut
  10
-595.8994651606321
+616.9459705014849
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-592.3994651606322
+613.4459705014848
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6639,15 +7189,15 @@ LINE
   8
 cut
  10
-592.3994651606322
+613.4459705014848
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-581.4903742515411
+602.5368795923939
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6657,15 +7207,15 @@ LINE
   8
 cut
  10
-581.4903742515411
+602.5368795923939
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-577.9903742515413
+599.0368795923939
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6675,15 +7225,15 @@ LINE
   8
 cut
  10
-577.9903742515413
+599.0368795923939
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-581.4903742515411
+602.5368795923939
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6693,15 +7243,15 @@ LINE
   8
 cut
  10
-565.1267378879049
+586.1732432287575
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-568.6267378879048
+589.6732432287577
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6711,15 +7261,15 @@ LINE
   8
 cut
  10
-568.6267378879048
+589.6732432287577
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-565.1267378879049
+586.1732432287575
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6729,15 +7279,15 @@ LINE
   8
 cut
  10
-565.1267378879049
+586.1732432287575
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-554.2176469788138
+575.2641523196667
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6747,15 +7297,15 @@ LINE
   8
 cut
  10
-554.2176469788138
+575.2641523196667
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-550.717646978814
+571.7641523196666
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6765,15 +7315,15 @@ LINE
   8
 cut
  10
-550.717646978814
+571.7641523196666
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-554.2176469788138
+575.2641523196667
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6783,15 +7333,15 @@ LINE
   8
 cut
  10
-609.5585560697231
+630.6050614105758
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-606.058556069723
+627.1050614105758
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
@@ -6801,15 +7351,15 @@ LINE
   8
 cut
  10
-606.058556069723
+627.1050614105758
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-606.058556069723
+627.1050614105758
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -6819,15 +7369,15 @@ LINE
   8
 cut
  10
-606.058556069723
+627.1050614105758
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-609.5585560697231
+630.6050614105758
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -6837,15 +7387,15 @@ LINE
   8
 cut
  10
-551.8085560697231
+572.8550614105758
  20
-247.50000000000003
+199.00000000000003
  30
 0.0
  11
-551.8085560697231
+572.8550614105758
  21
-229.50000000000003
+181.00000000000003
  31
 0.0
   0
@@ -6855,15 +7405,15 @@ LINE
   8
 cut
  10
-551.8085560697231
+572.8550614105758
  20
-229.50000000000003
+181.00000000000003
  30
 0.0
  11
-586.8085560697231
+607.8550614105758
  21
-229.50000000000003
+181.00000000000003
  31
 0.0
   0
@@ -6873,15 +7423,15 @@ LINE
   8
 cut
  10
-586.8085560697231
+607.8550614105758
  20
-229.50000000000003
+181.00000000000003
  30
 0.0
  11
-586.8085560697231
+607.8550614105758
  21
-247.50000000000003
+199.00000000000003
  31
 0.0
   0
@@ -6891,15 +7441,15 @@ LINE
   8
 cut
  10
-586.8085560697231
+607.8550614105758
  20
-247.50000000000003
+199.00000000000003
  30
 0.0
  11
-551.8085560697231
+572.8550614105758
  21
-247.50000000000003
+199.00000000000003
  31
 0.0
   0
@@ -6909,15 +7459,15 @@ LINE
   8
 cut
  10
-604.8085560697231
+625.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-604.8085560697231
+625.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -6927,15 +7477,15 @@ LINE
   8
 cut
  10
-604.8085560697231
+625.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-607.8085560697231
+628.8550614105757
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -6945,15 +7495,15 @@ LINE
   8
 cut
  10
-607.8085560697231
+628.8550614105757
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-607.8085560697231
+628.8550614105757
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -6963,15 +7513,15 @@ LINE
   8
 cut
  10
-607.8085560697231
+628.8550614105757
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-604.8085560697231
+625.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -6981,15 +7531,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -6999,15 +7549,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -7017,15 +7567,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -7035,15 +7585,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -7053,15 +7603,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -7071,15 +7621,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -7089,15 +7639,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7107,15 +7657,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7125,15 +7675,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -7143,15 +7693,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -7161,15 +7711,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7179,15 +7729,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7197,15 +7747,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7215,15 +7765,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7233,15 +7783,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7251,15 +7801,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7269,15 +7819,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7287,15 +7837,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7305,15 +7855,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7323,15 +7873,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7341,15 +7891,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7359,15 +7909,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7377,15 +7927,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7395,15 +7945,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7413,15 +7963,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7431,15 +7981,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7449,15 +7999,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7467,15 +8017,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7485,15 +8035,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7503,15 +8053,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7521,15 +8071,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7539,15 +8089,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7557,15 +8107,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7575,15 +8125,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7593,15 +8143,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7611,15 +8161,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7629,15 +8179,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7647,15 +8197,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7665,15 +8215,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7683,15 +8233,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7701,15 +8251,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7719,15 +8269,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7737,15 +8287,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7755,15 +8305,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7773,15 +8323,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7791,15 +8341,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7809,15 +8359,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7827,15 +8377,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7845,15 +8395,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7863,15 +8413,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7881,15 +8431,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7899,15 +8449,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7917,15 +8467,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7935,15 +8485,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7953,15 +8503,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7971,15 +8521,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7989,15 +8539,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -8007,15 +8557,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -8025,15 +8575,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -8043,15 +8593,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -8061,15 +8611,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8079,15 +8629,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8097,15 +8647,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8115,15 +8665,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8133,15 +8683,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8151,15 +8701,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8169,15 +8719,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8187,15 +8737,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8205,15 +8755,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8223,15 +8773,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8241,15 +8791,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8259,15 +8809,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8277,15 +8827,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8295,15 +8845,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8313,15 +8863,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8331,15 +8881,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8349,15 +8899,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8367,15 +8917,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8385,15 +8935,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8403,15 +8953,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8421,15 +8971,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8439,15 +8989,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8457,15 +9007,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8475,15 +9025,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8493,15 +9043,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8511,15 +9061,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8529,15 +9079,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8547,15 +9097,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8565,15 +9115,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8583,15 +9133,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8601,15 +9151,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8619,15 +9169,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8637,15 +9187,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8655,15 +9205,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8673,15 +9223,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8691,15 +9241,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8709,15 +9259,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8727,15 +9277,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8745,15 +9295,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8763,15 +9313,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8781,15 +9331,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8799,15 +9349,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8817,15 +9367,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8835,15 +9385,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8853,15 +9403,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8871,15 +9421,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8889,15 +9439,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8907,15 +9457,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8925,15 +9475,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8943,15 +9493,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8961,15 +9511,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8979,15 +9529,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8997,15 +9547,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -9015,15 +9565,15 @@ LINE
   8
 cut
  10
-625.8085560697231
+646.8550614105757
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -9033,15 +9583,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -9051,15 +9601,15 @@ LINE
   8
 cut
  10
-626.8085560697231
+647.8550614105757
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -9069,15 +9619,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -9087,15 +9637,15 @@ LINE
   8
 cut
  10
-605.8085560697231
+626.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -9105,15 +9655,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -9123,15 +9673,15 @@ LINE
   8
 cut
  10
-606.8085560697231
+627.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -9141,15 +9691,15 @@ LINE
   8
 cut
  10
-624.8085560697231
+645.8550614105758
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-624.8085560697231
+645.8550614105758
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -9159,15 +9709,15 @@ LINE
   8
 cut
  10
-624.8085560697231
+645.8550614105758
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-627.8085560697231
+648.8550614105757
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -9177,15 +9727,15 @@ LINE
   8
 cut
  10
-627.8085560697231
+648.8550614105757
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-627.8085560697231
+648.8550614105757
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -9195,15 +9745,15 @@ LINE
   8
 cut
  10
-627.8085560697231
+648.8550614105757
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-624.8085560697231
+645.8550614105758
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -9213,15 +9763,15 @@ LINE
   8
 cut
  10
-620.5585560697231
+641.6050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -9231,15 +9781,15 @@ LINE
   8
 cut
  10
-612.0585560697231
+633.1050614105757
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -9249,15 +9799,15 @@ LINE
   8
 cut
  10
-612.0585560697231
+633.1050614105757
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -9267,15 +9817,15 @@ LINE
   8
 cut
  10
-620.5585560697231
+641.6050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -9285,15 +9835,15 @@ LINE
   8
 cut
  10
-612.0585560697231
+633.1050614105757
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -9303,15 +9853,15 @@ LINE
   8
 cut
  10
-620.5585560697231
+641.6050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -9321,15 +9871,15 @@ LINE
   8
 cut
  10
-620.5585560697231
+641.6050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -9339,15 +9889,15 @@ LINE
   8
 cut
  10
-612.0585560697231
+633.1050614105757
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -9357,15 +9907,15 @@ LINE
   8
 cut
  10
-643.3085560697231
+664.3550614105758
  20
-247.00000000000003
+198.50000000000003
  30
 0.0
  11
-643.3085560697231
+664.3550614105758
  21
-234.00000000000003
+185.50000000000003
  31
 0.0
   0
@@ -9375,15 +9925,15 @@ LINE
   8
 cut
  10
-643.3085560697231
+664.3550614105758
  20
-234.00000000000003
+185.50000000000003
  30
 0.0
  11
-673.3085560697231
+694.3550614105757
  21
-234.00000000000003
+185.50000000000003
  31
 0.0
   0
@@ -9393,15 +9943,15 @@ LINE
   8
 cut
  10
-673.3085560697231
+694.3550614105757
  20
-234.00000000000003
+185.50000000000003
  30
 0.0
  11
-673.3085560697231
+694.3550614105757
  21
-247.00000000000003
+198.50000000000003
  31
 0.0
   0
@@ -9411,15 +9961,15 @@ LINE
   8
 cut
  10
-673.3085560697231
+694.3550614105757
  20
-247.00000000000003
+198.50000000000003
  30
 0.0
  11
-643.3085560697231
+664.3550614105758
  21
-247.00000000000003
+198.50000000000003
  31
 0.0
   0
@@ -9429,15 +9979,15 @@ LINE
   8
 cut
  10
-650.3767378879048
+671.4232432287575
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-638.967646978814
+660.0141523196667
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9447,15 +9997,15 @@ LINE
   8
 cut
  10
-638.967646978814
+660.0141523196667
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-638.967646978814
+660.0141523196667
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9465,15 +10015,15 @@ LINE
   8
 cut
  10
-638.967646978814
+660.0141523196667
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-650.3767378879048
+671.4232432287575
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9483,15 +10033,15 @@ LINE
   8
 cut
  10
-650.3767378879048
+671.4232432287575
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-650.3767378879048
+671.4232432287575
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9501,15 +10051,15 @@ LINE
   8
 cut
  10
-677.6494651606322
+698.6959705014849
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-666.2403742515412
+687.2868795923938
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9519,15 +10069,15 @@ LINE
   8
 cut
  10
-666.2403742515412
+687.2868795923938
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-666.2403742515412
+687.2868795923938
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9537,15 +10087,15 @@ LINE
   8
 cut
  10
-666.2403742515412
+687.2868795923938
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-677.6494651606322
+698.6959705014849
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9555,15 +10105,15 @@ LINE
   8
 cut
  10
-677.6494651606322
+698.6959705014849
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-677.6494651606322
+698.6959705014849
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9573,15 +10123,15 @@ LINE
   8
 cut
  10
-680.558556069723
+701.6050614105758
  20
-218.43181818181822
+169.93181818181822
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-206.84090909090912
+158.3409090909091
  31
 0.0
   0
@@ -9591,15 +10141,15 @@ LINE
   8
 cut
  10
-680.558556069723
+701.6050614105758
  20
-206.84090909090912
+158.3409090909091
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-206.84090909090912
+158.3409090909091
  31
 0.0
   0
@@ -9609,15 +10159,15 @@ LINE
   8
 cut
  10
-681.058556069723
+702.1050614105758
  20
-206.84090909090912
+158.3409090909091
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-218.43181818181822
+169.93181818181822
  31
 0.0
   0
@@ -9627,15 +10177,15 @@ LINE
   8
 cut
  10
-681.058556069723
+702.1050614105758
  20
-218.43181818181822
+169.93181818181822
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-218.43181818181822
+169.93181818181822
  31
 0.0
   0
@@ -9645,15 +10195,15 @@ LINE
   8
 cut
  10
-680.558556069723
+701.6050614105758
  20
-246.15909090909093
+197.65909090909093
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-234.5681818181818
+186.06818181818184
  31
 0.0
   0
@@ -9663,15 +10213,15 @@ LINE
   8
 cut
  10
-680.558556069723
+701.6050614105758
  20
-234.5681818181818
+186.06818181818184
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-234.5681818181818
+186.06818181818184
  31
 0.0
   0
@@ -9681,15 +10231,15 @@ LINE
   8
 cut
  10
-681.058556069723
+702.1050614105758
  20
-234.5681818181818
+186.06818181818184
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-246.15909090909093
+197.65909090909093
  31
 0.0
   0
@@ -9699,15 +10249,15 @@ LINE
   8
 cut
  10
-681.058556069723
+702.1050614105758
  20
-246.15909090909093
+197.65909090909093
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-246.15909090909093
+197.65909090909093
  31
 0.0
   0
@@ -9717,15 +10267,15 @@ LINE
   8
 cut
  10
-520.8085560697231
+541.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-520.8085560697231
+541.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -9735,15 +10285,15 @@ LINE
   8
 cut
  10
-520.8085560697231
+541.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-523.8085560697231
+544.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -9753,15 +10303,15 @@ LINE
   8
 cut
  10
-523.8085560697231
+544.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-523.8085560697231
+544.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -9771,15 +10321,15 @@ LINE
   8
 cut
  10
-523.8085560697231
+544.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-520.8085560697231
+541.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -9789,15 +10339,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -9807,15 +10357,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -9825,15 +10375,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -9843,15 +10393,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -9861,15 +10411,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9879,15 +10429,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9897,15 +10447,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9915,15 +10465,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9933,15 +10483,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9951,15 +10501,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9969,15 +10519,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9987,15 +10537,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -10005,15 +10555,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -10023,15 +10573,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -10041,15 +10591,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -10059,15 +10609,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -10077,15 +10627,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -10095,15 +10645,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -10113,15 +10663,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -10131,15 +10681,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -10149,15 +10699,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10167,15 +10717,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10185,15 +10735,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10203,15 +10753,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10221,15 +10771,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10239,15 +10789,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10257,15 +10807,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10275,15 +10825,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10293,15 +10843,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10311,15 +10861,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10329,15 +10879,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10347,15 +10897,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10365,15 +10915,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10383,15 +10933,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10401,15 +10951,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10419,15 +10969,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10437,15 +10987,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10455,15 +11005,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10473,15 +11023,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10491,15 +11041,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10509,15 +11059,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10527,15 +11077,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10545,15 +11095,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10563,15 +11113,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10581,15 +11131,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10599,15 +11149,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10617,15 +11167,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10635,15 +11185,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10653,15 +11203,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10671,15 +11221,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10689,15 +11239,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10707,15 +11257,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10725,15 +11275,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10743,15 +11293,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10761,15 +11311,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10779,15 +11329,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10797,15 +11347,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10815,15 +11365,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10833,15 +11383,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10851,15 +11401,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10869,15 +11419,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10887,15 +11437,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10905,15 +11455,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10923,15 +11473,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10941,15 +11491,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10959,15 +11509,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10977,15 +11527,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10995,15 +11545,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -11013,15 +11563,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -11031,15 +11581,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -11049,15 +11599,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -11067,15 +11617,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -11085,15 +11635,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -11103,15 +11653,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -11121,15 +11671,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -11139,15 +11689,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -11157,15 +11707,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11175,15 +11725,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11193,15 +11743,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11211,15 +11761,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11229,15 +11779,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11247,15 +11797,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11265,15 +11815,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11283,15 +11833,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11301,15 +11851,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11319,15 +11869,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11337,15 +11887,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11355,15 +11905,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11373,15 +11923,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11391,15 +11941,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11409,15 +11959,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11427,15 +11977,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11445,15 +11995,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11463,15 +12013,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11481,15 +12031,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11499,15 +12049,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11517,15 +12067,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11535,15 +12085,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11553,15 +12103,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11571,15 +12121,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11589,15 +12139,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11607,15 +12157,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11625,15 +12175,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11643,15 +12193,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11661,15 +12211,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11679,15 +12229,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11697,15 +12247,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11715,15 +12265,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11733,15 +12283,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11751,15 +12301,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11769,15 +12319,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11787,15 +12337,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11805,15 +12355,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11823,15 +12373,15 @@ LINE
   8
 cut
  10
-541.8085560697231
+562.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11841,15 +12391,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11859,15 +12409,15 @@ LINE
   8
 cut
  10
-542.8085560697231
+563.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11877,15 +12427,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -11895,15 +12445,15 @@ LINE
   8
 cut
  10
-521.808556069723
+542.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -11913,15 +12463,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -11931,15 +12481,15 @@ LINE
   8
 cut
  10
-522.808556069723
+543.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -11949,15 +12499,15 @@ LINE
   8
 cut
  10
-540.808556069723
+561.8550614105758
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-540.808556069723
+561.8550614105758
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -11967,15 +12517,15 @@ LINE
   8
 cut
  10
-540.808556069723
+561.8550614105758
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-543.8085560697231
+564.8550614105757
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -11985,15 +12535,15 @@ LINE
   8
 cut
  10
-543.8085560697231
+564.8550614105757
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-543.8085560697231
+564.8550614105757
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -12003,15 +12553,15 @@ LINE
   8
 cut
  10
-543.8085560697231
+564.8550614105757
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-540.808556069723
+561.8550614105758
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -12021,15 +12571,15 @@ LINE
   8
 cut
  10
-536.558556069723
+557.6050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -12039,15 +12589,15 @@ LINE
   8
 cut
  10
-528.0585560697231
+549.1050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -12057,15 +12607,15 @@ LINE
   8
 cut
  10
-528.0585560697231
+549.1050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -12075,15 +12625,15 @@ LINE
   8
 cut
  10
-536.558556069723
+557.6050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -12093,15 +12643,15 @@ LINE
   8
 cut
  10
-528.0585560697231
+549.1050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -12111,15 +12661,15 @@ LINE
   8
 cut
  10
-536.558556069723
+557.6050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -12129,15 +12679,15 @@ LINE
   8
 cut
  10
-536.558556069723
+557.6050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -12147,15 +12697,15 @@ LINE
   8
 cut
  10
-528.0585560697231
+549.1050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -12165,15 +12715,15 @@ LINE
   8
 cut
  10
-512.808556069723
+533.8550614105758
  20
-207.09090909090912
+158.59090909090912
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-207.09090909090912
+158.59090909090912
  31
 0.0
   0
@@ -12183,15 +12733,15 @@ LINE
   8
 cut
  10
-517.808556069723
+538.8550614105758
  20
-207.09090909090912
+158.59090909090912
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-218.1818181818182
+169.68181818181822
  31
 0.0
   0
@@ -12201,15 +12751,15 @@ LINE
   8
 cut
  10
-517.808556069723
+538.8550614105758
  20
-218.1818181818182
+169.68181818181822
  30
 0.0
  11
-512.808556069723
+533.8550614105758
  21
-218.1818181818182
+169.68181818181822
  31
 0.0
   0
@@ -12219,15 +12769,15 @@ LINE
   8
 cut
  10
-512.808556069723
+533.8550614105758
  20
-234.81818181818184
+186.31818181818184
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-234.81818181818184
+186.31818181818184
  31
 0.0
   0
@@ -12237,15 +12787,15 @@ LINE
   8
 cut
  10
-517.808556069723
+538.8550614105758
  20
-234.81818181818184
+186.31818181818184
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-245.90909090909093
+197.40909090909093
  31
 0.0
   0
@@ -12255,15 +12805,15 @@ LINE
   8
 cut
  10
-517.808556069723
+538.8550614105758
  20
-245.90909090909093
+197.40909090909093
  30
 0.0
  11
-512.808556069723
+533.8550614105758
  21
-245.90909090909093
+197.40909090909093
  31
 0.0
   0
@@ -12273,15 +12823,15 @@ LINE
   8
 cut
  10
-538.0585560697231
+559.1050614105758
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-541.5585560697231
+562.6050614105757
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -12291,15 +12841,15 @@ LINE
   8
 cut
  10
-541.5585560697231
+562.6050614105757
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-541.5585560697231
+562.6050614105757
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
@@ -12309,15 +12859,15 @@ LINE
   8
 cut
  10
-541.5585560697231
+562.6050614105757
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-538.0585560697231
+559.1050614105758
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
index 0b6e553daf44b36710fa232908ac7670b6b545ec..382bdbd318bc40eb9fb9d2d379642a30dc286563 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
@@ -937,6 +937,204 @@ MVIEW
 1002
 }
   0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+194.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+101.50000000000001
+ 31
+0.0
+  0
 LINE
   6
 DOTTED
@@ -945,15 +1143,33 @@ DOTTED
   8
 0
  10
-280.00000000000006
+160.02325267042647
  20
-70.00000000000001
+101.50000000000001
  30
 0.0
  11
-280.00000000000006
+160.02325267042647
  21
-298.00000000000006
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+65.5
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+101.50000000000001
  31
 0.0
   0
@@ -965,15 +1181,159 @@ DOTTED
   8
 0
  10
-190.00000000000003
+160.02325267042647
+ 20
+65.5
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+65.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+65.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+65.5
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
  20
-70.00000000000001
+20.5
  30
 0.0
  11
-190.00000000000003
+160.02325267042647
  21
-298.00000000000006
+65.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+15.500000000000004
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+15.500000000000004
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+15.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+20.5
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+15.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+140.02325267042644
+ 21
+101.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.02325267042644
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -985,15 +1345,51 @@ DOTTED
   8
 0
  10
-235.00000000000003
+140.02325267042644
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+140.02325267042644
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.02325267042644
  20
-70.00000000000001
+101.50000000000001
  30
 0.0
  11
-190.00000000000003
+116.02325267042646
  21
-70.00000000000001
+101.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.02325267042646
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+140.02325267042644
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -1005,15 +1401,15 @@ DOTTED
   8
 0
  10
-280.00000000000006
+116.02325267042646
  20
-70.00000000000001
+101.50000000000001
  30
 0.0
  11
-235.00000000000003
+116.02325267042646
  21
-70.00000000000001
+135.50000000000003
  31
 0.0
   0
@@ -1023,15 +1419,15 @@ LINE
   8
 0
  10
-260.0
+116.02325267042646
  20
--2.8421709430404014e-14
+101.50000000000001
  30
 0.0
  11
-190.00000000000003
+96.02325267042644
  21
--2.8421709430404014e-14
+101.50000000000001
  31
 0.0
   0
@@ -1041,15 +1437,15 @@ LINE
   8
 0
  10
-235.00000000000003
+96.02325267042644
  20
--2.8421709430404014e-14
+135.50000000000003
  30
 0.0
  11
-260.0
+116.02325267042646
  21
--2.8421709430404014e-14
+135.50000000000003
  31
 0.0
   0
@@ -1061,15 +1457,69 @@ DOTTED
   8
 0
  10
-190.00000000000003
+96.02325267042644
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+96.02325267042644
+ 21
+101.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
  20
-70.0
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+96.02325267042644
  21
--2.8421709430404014e-14
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.02325267042644
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+101.50000000000001
  31
 0.0
   0
@@ -1081,15 +1531,15 @@ DOTTED
   8
 0
  10
-190.00000000000003
+194.02325267042647
  20
-70.0
+99.36137800081471
  30
 0.0
  11
-120.00000000000003
+255.02325267042647
  21
--2.8421709430404014e-14
+99.36137800081471
  31
 0.0
   0
@@ -1099,15 +1549,53 @@ LINE
   8
 0
  10
-190.00000000000003
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+99.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
+ 20
+99.36137800081471
+ 30
+0.0
+ 11
+194.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+255.02325267042647
  20
--2.8421709430404014e-14
+75.36137800081471
  30
 0.0
  11
-120.00000000000003
+194.02325267042647
  21
--2.8421709430404014e-14
+75.36137800081471
  31
 0.0
   0
@@ -1119,35 +1607,141 @@ DOTTED
   8
 0
  10
-120.00000000000001
+255.02325267042647
+ 20
+75.36137800081471
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+99.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
+ 20
+39.22275600162939
+ 30
+0.0
+ 11
+194.02325267042647
+ 21
+75.36137800081472
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+75.36137800081472
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+39.22275600162939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
+ 20
+29.222756001629396
+ 30
+0.0
+ 11
+194.02325267042647
+ 21
+39.22275600162939
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+29.222756001629396
+ 30
+0.0
+ 11
+194.02325267042647
+ 21
+29.222756001629396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+39.22275600162939
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+29.222756001629396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.02325267042653
  20
-70.0
+75.36137800081471
  30
 0.0
  11
-120.00000000000001
+255.02325267042647
  21
-0.0
+75.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-190.00000000000003
+265.02325267042653
  20
-70.00000000000001
+99.36137800081471
  30
 0.0
  11
-120.00000000000001
+265.02325267042653
  21
-70.0
+75.36137800081471
  31
 0.0
   0
@@ -1157,15 +1751,15 @@ LINE
   8
 0
  10
-96.66666666666666
+255.02325267042647
  20
-70.0
+99.36137800081471
  30
 0.0
  11
-120.00000000000001
+265.02325267042653
  21
-70.0
+99.36137800081471
  31
 0.0
   0
@@ -1175,15 +1769,15 @@ LINE
   8
 0
  10
-96.66666666666669
+184.02325267042647
  20
-0.0
+99.36137800081471
  30
 0.0
  11
-96.66666666666666
+194.02325267042647
  21
-70.0
+99.36137800081471
  31
 0.0
   0
@@ -1193,35 +1787,33 @@ LINE
   8
 0
  10
-120.00000000000003
+184.02325267042647
  20
-0.0
+75.36137800081471
  30
 0.0
  11
-96.66666666666669
+184.02325267042647
  21
-0.0
+99.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-120.0
+194.02325267042647
  20
-298.00000000000006
+75.36137800081471
  30
 0.0
  11
-190.00000000000003
+184.02325267042647
  21
-298.00000000000006
+75.36137800081471
  31
 0.0
   0
@@ -1233,15 +1825,15 @@ DOTTED
   8
 0
  10
-119.99999999999999
+255.02325267042647
  20
-368.00000000000006
+205.50000000000003
  30
 0.0
  11
-190.00000000000003
+86.02325267042646
  21
-298.00000000000006
+205.50000000000003
  31
 0.0
   0
@@ -1253,33 +1845,35 @@ DOTTED
   8
 0
  10
-119.99999999999999
+255.02325267042647
  20
-368.00000000000006
+205.50000000000003
  30
 0.0
  11
-120.0
+255.02325267042647
  21
-298.00000000000006
+135.50000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-119.99999999999999
+255.02325267042647
  20
-368.00000000000006
+135.50000000000003
  30
 0.0
  11
-190.0
+307.53762348858805
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1291,15 +1885,15 @@ DOTTED
   8
 0
  10
-190.0
+255.02325267042647
  20
-368.00000000000006
+205.50000000000003
  30
 0.0
  11
-190.00000000000003
+307.53762348858805
  21
-298.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1309,15 +1903,15 @@ LINE
   8
 0
  10
-259.99999999999994
+255.02325267042647
  20
-368.00000000000006
+117.99520972727949
  30
 0.0
  11
-235.0
+255.02325267042647
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1327,35 +1921,33 @@ LINE
   8
 0
  10
-190.0
+307.53762348858805
  20
-368.00000000000006
+117.99520972727949
  30
 0.0
  11
-259.99999999999994
+255.02325267042647
  21
-368.00000000000006
+117.99520972727949
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-190.00000000000003
+307.53762348858805
  20
-298.00000000000006
+135.50000000000003
  30
 0.0
  11
-235.00000000000003
+307.53762348858805
  21
-298.00000000000006
+117.99520972727949
  31
 0.0
   0
@@ -1367,15 +1959,15 @@ DOTTED
   8
 0
  10
-235.00000000000003
+255.02325267042647
  20
-298.00000000000006
+205.50000000000003
  30
 0.0
  11
-280.00000000000006
+322.2284003443256
  21
-298.00000000000006
+185.91765779766357
  31
 0.0
   0
@@ -1385,15 +1977,15 @@ LINE
   8
 0
  10
-210.00000000000003
+322.2284003443256
  20
-368.00000000000006
+185.91765779766357
  30
 0.0
  11
-280.00000000000006
+307.53762348858805
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1403,35 +1995,33 @@ LINE
   8
 0
  10
-235.0
+336.91917720006325
  20
-368.00000000000006
+236.33531559532716
  30
 0.0
  11
-210.00000000000003
+322.2284003443256
  21
-368.00000000000006
+185.91765779766357
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-280.00000000000006
+341.0465053408527
  20
-298.00000000000006
+250.50000000000003
  30
 0.0
  11
-280.00000000000006
+336.91917720006325
  21
-368.00000000000006
+236.33531559532716
  31
 0.0
   0
@@ -1443,33 +2033,35 @@ DOTTED
   8
 0
  10
-280.00000000000006
+341.0465053408527
  20
-298.00000000000006
+250.50000000000003
  30
 0.0
  11
-350.0
+255.02325267042647
  21
-368.00000000000006
+205.50000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-280.00000000000006
+255.0232526704265
  20
-368.00000000000006
+250.50000000000003
  30
 0.0
  11
-350.0
+255.02325267042647
  21
-368.00000000000006
+205.50000000000003
  31
 0.0
   0
@@ -1481,15 +2073,15 @@ DOTTED
   8
 0
  10
-350.0
+255.02325267042653
  20
-298.0000000000001
+295.5
  30
 0.0
  11
-350.0
+255.0232526704265
  21
-368.00000000000006
+250.50000000000006
  31
 0.0
   0
@@ -1501,33 +2093,35 @@ DOTTED
   8
 0
  10
-280.00000000000006
+341.0465053408528
  20
-298.00000000000006
+250.50000000000003
  30
 0.0
  11
-350.0
+255.02325267042653
  21
-298.0000000000001
+295.50000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-373.3333333333333
+322.22840034432573
  20
-298.0000000000001
+315.08234220233646
  30
 0.0
  11
-350.0
+255.0232526704265
  21
-298.0000000000001
+295.50000000000006
  31
 0.0
   0
@@ -1537,15 +2131,15 @@ LINE
   8
 0
  10
-373.33333333333326
+336.9191772000633
  20
-368.00000000000006
+264.6646844046729
  30
 0.0
  11
-373.3333333333333
+341.0465053408527
  21
-298.0000000000001
+250.50000000000003
  31
 0.0
   0
@@ -1555,35 +2149,33 @@ LINE
   8
 0
  10
-349.99999999999994
+322.22840034432573
  20
-368.00000000000006
+315.08234220233646
  30
 0.0
  11
-373.33333333333326
+336.9191772000633
  21
-368.00000000000006
+264.6646844046729
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-350.00000000000006
+307.53762348858817
  20
-70.0
+365.50000000000006
  30
 0.0
  11
-280.0000000000001
+322.22840034432573
  21
-69.99999999999997
+315.0823422023364
  31
 0.0
   0
@@ -1595,15 +2187,15 @@ DOTTED
   8
 0
  10
-350.00000000000006
+307.53762348858817
  20
--2.8421709430404014e-14
+365.50000000000006
  30
 0.0
  11
-280.0000000000001
+255.02325267042653
  21
-69.99999999999996
+295.50000000000006
  31
 0.0
   0
@@ -1615,33 +2207,15 @@ DOTTED
   8
 0
  10
-350.00000000000006
- 20
--2.8421709430404014e-14
- 30
-0.0
- 11
-350.00000000000006
- 21
-69.99999999999999
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-350.00000000000006
+255.0232526704266
  20
--2.8421709430404014e-14
+365.5000000000001
  30
 0.0
  11
-280.00000000000017
+255.0232526704265
  21
--5.684341886080803e-14
+295.5
  31
 0.0
   0
@@ -1653,33 +2227,35 @@ DOTTED
   8
 0
  10
-280.00000000000017
+307.53762348858817
  20
--5.684341886080803e-14
+365.50000000000006
  30
 0.0
  11
-280.0000000000001
+255.0232526704266
  21
-69.99999999999997
+365.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-210.0000000000001
+255.02325267042653
  20
--1.1368683772161605e-13
+295.5
  30
 0.0
  11
-235.00000000000009
+86.02325267042642
  21
--8.526512829121203e-14
+295.50000000000017
  31
 0.0
   0
@@ -1689,15 +2265,15 @@ LINE
   8
 0
  10
-280.0000000000001
+194.02325267042656
  20
--5.684341886080803e-14
+365.50000000000017
  30
 0.0
  11
-210.0000000000001
+255.0232526704266
  21
--1.1368683772161605e-13
+365.5000000000001
  31
 0.0
   0
@@ -1707,15 +2283,15 @@ LINE
   8
 0
  10
-373.33333333333337
+86.02325267042649
  20
-0.0
+365.5000000000003
  30
 0.0
  11
-350.00000000000006
+86.02325267042649
  21
-0.0
+365.5000000000003
  31
 0.0
   0
@@ -1725,15 +2301,15 @@ LINE
   8
 0
  10
-373.33333333333337
+255.0232526704266
  20
-70.00000000000003
+365.5000000000001
  30
 0.0
  11
-373.33333333333337
+255.0232526704266
  21
-0.0
+365.5000000000001
  31
 0.0
   0
@@ -1743,15 +2319,15 @@ LINE
   8
 0
  10
-350.00000000000006
+255.0232526704266
  20
-70.00000000000001
+365.5000000000001
  30
 0.0
  11
-373.33333333333337
+194.02325267042656
  21
-70.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -1761,15 +2337,15 @@ LINE
   8
 0
  10
-350.0
+255.0232526704266
  20
-298.0000000000001
+365.5000000000001
  30
 0.0
  11
-350.0
+255.0232526704266
  21
-298.0000000000001
+365.5000000000001
  31
 0.0
   0
@@ -1779,15 +2355,15 @@ LINE
   8
 0
  10
-350.00000000000006
+86.0232526704265
  20
-70.0
+365.5000000000003
  30
 0.0
  11
-350.00000000000006
+86.0232526704265
  21
-70.0
+365.5000000000003
  31
 0.0
   0
@@ -1797,15 +2373,15 @@ LINE
   8
 0
  10
-350.0
+194.02325267042656
  20
-131.0
+365.50000000000017
  30
 0.0
  11
-350.00000000000006
+255.0232526704266
  21
-70.0
+365.5000000000001
  31
 0.0
   0
@@ -1815,15 +2391,15 @@ LINE
   8
 0
  10
-350.0
+184.02325267042656
  20
-141.0
+365.50000000000017
  30
 0.0
  11
-350.0
+194.02325267042656
  21
-131.0
+365.50000000000017
  31
 0.0
   0
@@ -1833,15 +2409,15 @@ LINE
   8
 0
  10
-350.0
+86.02325267042649
  20
-238.00000000000003
+365.5000000000003
  30
 0.0
  11
-350.0
+160.02325267042656
  21
-165.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -1851,15 +2427,15 @@ LINE
   8
 0
  10
-350.0
+86.02325267042649
  20
-238.00000000000003
+365.5000000000003
  30
 0.0
  11
-350.0
+86.02325267042649
  21
-238.00000000000003
+365.5000000000003
  31
 0.0
   0
@@ -1869,15 +2445,15 @@ LINE
   8
 0
  10
-350.00000000000006
+255.0232526704266
  20
-70.0
+365.5000000000001
  30
 0.0
  11
-350.00000000000006
+255.0232526704266
  21
-70.0
+365.5000000000001
  31
 0.0
   0
@@ -1887,15 +2463,15 @@ LINE
   8
 0
  10
-384.00000000000006
+184.0232526704266
  20
-141.0
+399.5000000000001
  30
 0.0
  11
-350.0
+184.02325267042656
  21
-141.0
+365.50000000000017
  31
 0.0
   0
@@ -1907,15 +2483,15 @@ DOTTED
   8
 0
  10
-350.0
+160.02325267042656
  20
-165.00000000000003
+365.50000000000017
  30
 0.0
  11
-384.00000000000006
+160.0232526704266
  21
-165.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -1925,15 +2501,15 @@ LINE
   8
 0
  10
-420.00000000000006
+184.02325267042661
  20
-141.00000000000003
+435.50000000000017
  30
 0.0
  11
-384.00000000000006
+184.0232526704266
  21
-141.0
+399.5000000000001
  31
 0.0
   0
@@ -1945,15 +2521,15 @@ DOTTED
   8
 0
  10
-420.00000000000006
+184.02325267042661
  20
-141.00000000000003
+435.50000000000017
  30
 0.0
  11
-420.00000000000006
+160.0232526704266
  21
-165.00000000000006
+435.50000000000017
  31
 0.0
   0
@@ -1963,15 +2539,15 @@ LINE
   8
 0
  10
-384.00000000000006
+160.02325267042656
  20
-165.00000000000006
+399.5000000000001
  30
 0.0
  11
-420.00000000000006
+160.0232526704266
  21
-165.00000000000006
+435.50000000000017
  31
 0.0
   0
@@ -1981,15 +2557,15 @@ LINE
   8
 0
  10
-420.00000000000006
+160.0232526704266
  20
-165.00000000000006
+435.50000000000017
  30
 0.0
  11
-465.00000000000006
+160.02325267042661
  21
-165.00000000000009
+480.50000000000017
  31
 0.0
   0
@@ -1999,15 +2575,15 @@ LINE
   8
 0
  10
-465.00000000000006
+184.02325267042667
  20
-141.00000000000006
+480.50000000000017
  30
 0.0
  11
-420.00000000000006
+184.02325267042661
  21
-141.00000000000003
+435.50000000000017
  31
 0.0
   0
@@ -2017,15 +2593,15 @@ LINE
   8
 0
  10
-465.00000000000006
+160.02325267042661
  20
-165.00000000000009
+480.50000000000017
  30
 0.0
  11
-465.00000000000006
+184.02325267042667
  21
-141.00000000000006
+480.50000000000017
  31
 0.0
   0
@@ -2035,15 +2611,15 @@ LINE
   8
 0
  10
-350.0
+160.02325267042656
  20
-165.00000000000003
+365.50000000000017
  30
 0.0
  11
-350.0
+140.0232526704265
  21
-185.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -2053,15 +2629,15 @@ LINE
   8
 0
  10
-384.00000000000006
+140.02325267042653
  20
-185.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+160.02325267042656
  21
-165.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2073,15 +2649,15 @@ DOTTED
   8
 0
  10
-350.0
+140.0232526704265
  20
-185.00000000000003
+365.50000000000017
  30
 0.0
  11
-384.00000000000006
+140.02325267042653
  21
-185.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2091,15 +2667,15 @@ LINE
   8
 0
  10
-350.0
+140.02325267042653
  20
-185.00000000000003
+365.50000000000017
  30
 0.0
  11
-350.0
+116.02325267042652
  21
-209.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -2109,15 +2685,15 @@ LINE
   8
 0
  10
-384.00000000000006
+116.02325267042656
  20
-209.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+140.02325267042656
  21
-185.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2129,15 +2705,15 @@ DOTTED
   8
 0
  10
-350.0
+116.02325267042652
  20
-209.00000000000003
+365.50000000000017
  30
 0.0
  11
-384.00000000000006
+116.02325267042656
  21
-209.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2147,15 +2723,15 @@ LINE
   8
 0
  10
-350.0
+116.02325267042652
  20
-209.00000000000006
+365.50000000000017
  30
 0.0
  11
-350.0
+96.02325267042652
  21
-229.00000000000006
+365.50000000000017
  31
 0.0
   0
@@ -2165,15 +2741,15 @@ LINE
   8
 0
  10
-384.00000000000006
+96.02325267042654
  20
-229.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+116.02325267042654
  21
-209.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2185,51 +2761,15 @@ DOTTED
   8
 0
  10
-384.00000000000006
- 20
-229.00000000000006
- 30
-0.0
- 11
-350.0
- 21
-229.00000000000006
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-384.00000000000006
- 20
-239.00000000000006
- 30
-0.0
- 11
-384.00000000000006
- 21
-229.00000000000006
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-350.0
+96.02325267042654
  20
-239.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+96.02325267042652
  21
-239.00000000000006
+365.50000000000017
  31
 0.0
   0
@@ -2239,15 +2779,15 @@ LINE
   8
 0
  10
-350.0
+86.02325267042654
  20
-229.00000000000006
+399.5000000000001
  30
 0.0
  11
-350.0
+96.02325267042654
  21
-239.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2257,15 +2797,15 @@ LINE
   8
 0
  10
-350.0
+86.02325267042652
  20
-298.00000000000006
+365.50000000000017
  30
 0.0
  11
-411.65427803486153
+86.02325267042654
  21
-298.0000000000001
+399.5000000000001
  31
 0.0
   0
@@ -2275,15 +2815,15 @@ LINE
   8
 0
  10
-411.65427803486153
+96.02325267042652
  20
-238.00000000000009
+365.50000000000017
  30
 0.0
  11
-350.0
+86.02325267042652
  21
-238.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -2295,33 +2835,15 @@ DOTTED
   8
 0
  10
-411.65427803486153
- 20
-238.00000000000009
- 30
-0.0
- 11
-411.65427803486153
- 21
-298.0000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-438.65427803486153
+86.0232526704264
  20
-238.00000000000009
+295.50000000000017
  30
 0.0
  11
-411.65427803486153
+86.02325267042649
  21
-238.00000000000009
+365.5000000000002
  31
 0.0
   0
@@ -2333,15 +2855,15 @@ DOTTED
   8
 0
  10
-438.65427803486153
+86.02325267042649
  20
-298.0000000000001
+365.5000000000003
  30
 0.0
  11
-438.65427803486153
+33.508881852264885
  21
-238.00000000000009
+365.5000000000003
  31
 0.0
   0
@@ -2353,15 +2875,15 @@ DOTTED
   8
 0
  10
-411.65427803486153
+86.0232526704264
  20
-298.0000000000001
+295.5000000000002
  30
 0.0
  11
-438.65427803486153
+33.508881852264885
  21
-298.0000000000001
+365.5000000000003
  31
 0.0
   0
@@ -2371,15 +2893,15 @@ LINE
   8
 0
  10
-500.30855606972295
+86.0232526704265
  20
-238.0000000000001
+383.00479027272075
  30
 0.0
  11
-438.65427803486153
+86.02325267042649
  21
-238.00000000000009
+365.5000000000003
  31
 0.0
   0
@@ -2389,15 +2911,15 @@ LINE
   8
 0
  10
-500.30855606972295
+33.5088818522649
  20
-298.00000000000017
+383.00479027272087
  30
 0.0
  11
-500.30855606972295
+86.0232526704265
  21
-238.0000000000001
+383.00479027272075
  31
 0.0
   0
@@ -2407,33 +2929,35 @@ LINE
   8
 0
  10
-438.6542780348615
+33.508881852264885
  20
-298.0000000000001
+365.5000000000003
  30
 0.0
  11
-500.30855606972295
+33.5088818522649
  21
-298.00000000000017
+383.00479027272087
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-411.6542780348615
+86.0232526704264
  20
-298.0000000000001
+295.50000000000017
  30
 0.0
  11
-411.6542780348615
+18.81810499652724
  21
-315.0000000000001
+315.08234220233675
  31
 0.0
   0
@@ -2443,35 +2967,33 @@ LINE
   8
 0
  10
-438.6542780348615
+18.81810499652724
  20
-315.00000000000017
+315.08234220233675
  30
 0.0
  11
-438.6542780348615
+33.508881852264885
  21
-298.0000000000001
+365.5000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-411.6542780348615
+4.127328140789602
  20
-315.0000000000001
+264.6646844046731
  30
 0.0
  11
-438.6542780348615
+18.81810499652724
  21
-315.00000000000017
+315.08234220233675
  31
 0.0
   0
@@ -2481,33 +3003,35 @@ LINE
   8
 0
  10
-411.6542780348615
+2.8421709430404014e-14
  20
-315.0000000000001
+250.50000000000028
  30
 0.0
  11
-411.6542780348615
+4.127328140789602
  21
-375.00000000000017
+264.6646844046731
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-438.6542780348615
+2.8421709430404014e-14
  20
-375.00000000000017
+250.50000000000028
  30
 0.0
  11
-438.6542780348615
+86.02325267042642
  21
-315.00000000000017
+295.50000000000017
  31
 0.0
   0
@@ -2519,51 +3043,55 @@ DOTTED
   8
 0
  10
-411.6542780348615
+86.02325267042637
  20
-375.00000000000017
+250.50000000000017
  30
 0.0
  11
-438.6542780348615
+86.02325267042642
  21
-375.00000000000017
+295.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-411.6542780348614
+86.0232526704263
  20
-375.00000000000017
+205.50000000000017
  30
 0.0
  11
-411.6542780348614
+86.02325267042636
  21
-392.00000000000017
+250.5000000000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-438.65427803486136
+1.4210854715202007e-14
  20
-392.00000000000017
+250.5000000000003
  30
 0.0
  11
-438.65427803486136
+86.0232526704263
  21
-375.00000000000017
+205.50000000000014
  31
 0.0
   0
@@ -2575,15 +3103,15 @@ DOTTED
   8
 0
  10
-438.65427803486136
+18.818104996527044
  20
-392.00000000000017
+185.91765779766385
  30
 0.0
  11
-411.6542780348614
+86.02325267042629
  21
-392.00000000000017
+205.50000000000014
  31
 0.0
   0
@@ -2593,15 +3121,15 @@ LINE
   8
 0
  10
-438.65427803486136
+4.127328140789545
  20
-402.00000000000017
+236.33531559532744
  30
 0.0
  11
-438.65427803486136
+0.0
  21
-392.00000000000017
+250.5000000000003
  31
 0.0
   0
@@ -2611,15 +3139,15 @@ LINE
   8
 0
  10
-411.6542780348614
+18.818104996527044
  20
-402.00000000000017
+185.91765779766385
  30
 0.0
  11
-438.65427803486136
+4.127328140789545
  21
-402.00000000000017
+236.33531559532744
  31
 0.0
   0
@@ -2629,69 +3157,75 @@ LINE
   8
 0
  10
-411.6542780348614
+33.50888185226453
  20
-392.00000000000017
+135.50000000000023
  30
 0.0
  11
-411.6542780348614
+18.818104996527044
  21
-402.00000000000017
+185.91765779766385
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-96.66666666666666
+33.50888185226453
  20
-368.00000000000006
+135.50000000000023
  30
 0.0
  11
-120.0
+86.02325267042629
  21
-368.00000000000006
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-96.66666666666666
+86.02325267042616
  20
-298.00000000000006
+135.5000000000001
  30
 0.0
  11
-96.66666666666666
+86.02325267042632
  21
-368.00000000000006
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-120.0
+33.508881852264544
  20
-298.00000000000006
+135.50000000000023
  30
 0.0
  11
-96.66666666666666
+86.02325267042616
  21
-298.00000000000006
+135.5000000000001
  31
 0.0
   0
@@ -2701,15 +3235,15 @@ LINE
   8
 0
  10
-120.00000000000001
+33.50888185226451
  20
-70.00000000000001
+117.9952097272797
  30
 0.0
  11
-120.00000000000001
+33.50888185226454
  21
-70.00000000000001
+135.50000000000023
  31
 0.0
   0
@@ -2719,15 +3253,15 @@ LINE
   8
 0
  10
-120.0
+86.02325267042612
  20
-298.00000000000006
+117.9952097272796
  30
 0.0
  11
-120.0
+33.50888185226451
  21
-298.00000000000006
+117.9952097272797
  31
 0.0
   0
@@ -2737,15 +3271,15 @@ LINE
   8
 0
  10
-110.0
+86.02325267042615
  20
-298.00000000000006
+135.5000000000001
  30
 0.0
  11
-120.0
+86.02325267042612
  21
-298.00000000000006
+117.9952097272796
  31
 0.0
   0
@@ -2755,15 +3289,15 @@ LINE
   8
 0
  10
-110.0
+307.5376234885882
  20
-238.00000000000003
+383.0047902727206
  30
 0.0
  11
-110.0
+307.53762348858817
  21
-298.00000000000006
+365.50000000000006
  31
 0.0
   0
@@ -2773,15 +3307,15 @@ LINE
   8
 0
  10
-120.0
+255.02325267042661
  20
-238.00000000000003
+383.00479027272064
  30
 0.0
  11
-110.0
+307.5376234885882
  21
-238.00000000000003
+383.0047902727206
  31
 0.0
   0
@@ -2791,15 +3325,15 @@ LINE
   8
 0
  10
-120.0
+255.0232526704266
  20
-165.00000000000003
+365.5000000000001
  30
 0.0
  11
-120.0
+255.02325267042661
  21
-238.00000000000003
+383.00479027272064
  31
 0.0
   0
@@ -2809,15 +3343,15 @@ LINE
   8
 0
  10
-120.00000000000001
+232.5914344886083
  20
-131.0
+127.75000000000001
  30
 0.0
  11
-120.0
+244.18234357951738
  21
-141.0
+127.75000000000001
  31
 0.0
   0
@@ -2827,15 +3361,15 @@ LINE
   8
 0
  10
-120.00000000000001
+244.18234357951738
  20
-70.00000000000001
+127.75000000000001
  30
 0.0
  11
-120.00000000000001
+244.18234357951738
  21
-70.00000000000001
+128.25000000000003
  31
 0.0
   0
@@ -2845,15 +3379,15 @@ LINE
   8
 0
  10
-120.0
+244.18234357951738
  20
-238.00000000000003
+128.25000000000003
  30
 0.0
  11
-120.0
+232.5914344886083
  21
-238.00000000000003
+128.25000000000003
  31
 0.0
   0
@@ -2863,35 +3397,33 @@ LINE
   8
 0
  10
-120.00000000000001
+232.5914344886083
  20
-141.0
+128.25000000000003
  30
 0.0
  11
-86.00000000000001
+232.5914344886083
  21
-141.0
+127.75000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-86.00000000000001
+204.86416176133557
  20
-165.00000000000003
+127.75000000000001
  30
 0.0
  11
-120.00000000000001
+216.45507085224466
  21
-165.00000000000003
+127.75000000000001
  31
 0.0
   0
@@ -2901,35 +3433,33 @@ LINE
   8
 0
  10
-50.0
+216.45507085224466
  20
-165.00000000000003
+127.75000000000001
  30
 0.0
  11
-86.00000000000001
+216.45507085224466
  21
-165.00000000000003
+128.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-50.0
+216.45507085224466
  20
-165.00000000000003
+128.25000000000003
  30
 0.0
  11
-50.0
+204.86416176133557
  21
-141.0
+128.25000000000003
  31
 0.0
   0
@@ -2939,15 +3469,15 @@ LINE
   8
 0
  10
-86.00000000000001
+204.86416176133557
  20
-141.0
+128.25000000000003
  30
 0.0
  11
-50.0
+204.86416176133557
  21
-141.0
+127.75000000000001
  31
 0.0
   0
@@ -2957,15 +3487,15 @@ LINE
   8
 0
  10
-50.0
+176.27325267042647
  20
-141.0
+124.41666666666669
  30
 0.0
  11
-5.000000000000001
+176.27325267042647
  21
-141.0
+112.58333333333334
  31
 0.0
   0
@@ -2975,15 +3505,15 @@ LINE
   8
 0
  10
-5.000000000000001
+176.27325267042647
  20
-165.00000000000003
+112.58333333333334
  30
 0.0
  11
-50.0
+176.77325267042644
  21
-165.00000000000003
+112.58333333333334
  31
 0.0
   0
@@ -2993,15 +3523,15 @@ LINE
   8
 0
  10
-0.0
+176.77325267042644
  20
-165.00000000000003
+112.58333333333334
  30
 0.0
  11
-5.000000000000001
+176.77325267042644
  21
-165.00000000000003
+124.41666666666669
  31
 0.0
   0
@@ -3011,15 +3541,15 @@ LINE
   8
 0
  10
-0.0
+176.77325267042644
  20
-141.0
+124.41666666666669
  30
 0.0
  11
-0.0
+176.27325267042647
  21
-165.00000000000003
+124.41666666666669
  31
 0.0
   0
@@ -3029,15 +3559,15 @@ LINE
   8
 0
  10
-5.000000000000001
+176.02325267042647
  20
-141.0
+16.750000000000004
  30
 0.0
  11
-0.0
+178.52325267042647
  21
-141.0
+16.750000000000004
  31
 0.0
   0
@@ -3047,15 +3577,15 @@ LINE
   8
 0
  10
-86.00000000000001
+178.52325267042647
  20
-165.00000000000003
+16.750000000000004
  30
 0.0
  11
-86.00000000000001
+176.02325267042647
  21
-185.00000000000003
+19.250000000000004
  31
 0.0
   0
@@ -3065,35 +3595,33 @@ LINE
   8
 0
  10
-120.00000000000001
+176.02325267042647
  20
-185.00000000000003
+19.250000000000004
  30
 0.0
  11
-120.00000000000001
+168.02325267042644
  21
-165.00000000000003
+19.250000000000004
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-86.00000000000001
+168.02325267042644
  20
-185.00000000000003
+19.250000000000004
  30
 0.0
  11
-120.00000000000001
+165.52325267042644
  21
-185.00000000000003
+16.750000000000004
  31
 0.0
   0
@@ -3103,15 +3631,15 @@ LINE
   8
 0
  10
-86.00000000000001
+165.52325267042644
  20
-185.00000000000003
+16.750000000000004
  30
 0.0
  11
-86.00000000000001
+168.02325267042644
  21
-209.00000000000003
+16.750000000000004
  31
 0.0
   0
@@ -3121,35 +3649,33 @@ LINE
   8
 0
  10
-120.00000000000001
+141.02325267042647
  20
-209.00000000000003
+112.50000000000001
  30
 0.0
  11
-120.00000000000001
+145.02325267042644
  21
-185.00000000000003
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-86.00000000000001
+145.02325267042644
  20
-209.00000000000003
+112.50000000000001
  30
 0.0
  11
-120.00000000000001
+145.02325267042644
  21
-209.00000000000003
+124.50000000000001
  31
 0.0
   0
@@ -3159,15 +3685,15 @@ LINE
   8
 0
  10
-86.00000000000001
+145.02325267042644
  20
-209.00000000000003
+124.50000000000001
  30
 0.0
  11
-86.00000000000001
+141.02325267042647
  21
-229.00000000000003
+124.50000000000001
  31
 0.0
   0
@@ -3177,35 +3703,33 @@ LINE
   8
 0
  10
-120.00000000000001
+141.02325267042647
  20
-229.00000000000003
+124.50000000000001
  30
 0.0
  11
-120.00000000000001
+141.02325267042647
  21
-209.00000000000003
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-120.00000000000001
+153.02325267042647
  20
-229.00000000000003
+114.00000000000001
  30
 0.0
  11
-86.00000000000001
+157.02325267042647
  21
-229.00000000000003
+114.00000000000001
  31
 0.0
   0
@@ -3215,15 +3739,15 @@ LINE
   8
 0
  10
-120.00000000000001
+157.02325267042647
  20
-239.00000000000003
+114.00000000000001
  30
 0.0
  11
-120.00000000000001
+157.02325267042647
  21
-229.00000000000003
+123.00000000000001
  31
 0.0
   0
@@ -3233,15 +3757,15 @@ LINE
   8
 0
  10
-86.00000000000001
+157.02325267042647
  20
-239.00000000000003
+123.00000000000001
  30
 0.0
  11
-120.00000000000001
+153.02325267042647
  21
-239.00000000000003
+123.00000000000001
  31
 0.0
   0
@@ -3251,35 +3775,33 @@ LINE
   8
 0
  10
-86.00000000000001
+153.02325267042647
  20
-229.00000000000003
+123.00000000000001
  30
 0.0
  11
-86.00000000000001
+153.02325267042647
  21
-239.00000000000003
+114.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-83.86137800081468
+116.52325267042646
  20
-131.0
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+139.52325267042647
  21
-70.00000000000001
+112.50000000000001
  31
 0.0
   0
@@ -3289,15 +3811,15 @@ LINE
   8
 0
  10
-120.00000000000001
+139.52325267042647
  20
-70.00000000000001
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+139.52325267042647
  21
-70.00000000000001
+124.50000000000001
  31
 0.0
   0
@@ -3307,55 +3829,51 @@ LINE
   8
 0
  10
-83.86137800081468
+139.52325267042647
  20
-131.0
+124.50000000000001
  30
 0.0
  11
-120.0
+116.52325267042646
  21
-131.0
+124.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-59.86137800081469
+116.52325267042646
  20
-70.00000000000001
+124.50000000000001
  30
 0.0
  11
-59.86137800081469
+116.52325267042646
  21
-131.0
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-59.86137800081469
+111.02325267042646
  20
-70.00000000000001
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+115.02325267042646
  21
-70.00000000000001
+112.50000000000001
  31
 0.0
   0
@@ -3365,15 +3883,15 @@ LINE
   8
 0
  10
-23.722756001629364
+115.02325267042646
  20
-131.0
+112.50000000000001
  30
 0.0
  11
-59.86137800081469
+115.02325267042646
  21
-131.0
+124.50000000000001
  31
 0.0
   0
@@ -3383,15 +3901,15 @@ LINE
   8
 0
  10
-59.86137800081469
+115.02325267042646
  20
-70.0
+124.50000000000001
  30
 0.0
  11
-23.722756001629364
+111.02325267042646
  21
-70.0
+124.50000000000001
  31
 0.0
   0
@@ -3401,15 +3919,15 @@ LINE
   8
 0
  10
-13.722756001629365
+111.02325267042646
  20
-131.0
+124.50000000000001
  30
 0.0
  11
-23.722756001629364
+111.02325267042646
  21
-131.0
+112.50000000000001
  31
 0.0
   0
@@ -3419,15 +3937,15 @@ LINE
   8
 0
  10
-13.722756001629365
+88.52325267042646
  20
-70.0
+112.83333333333336
  30
 0.0
  11
-13.722756001629365
+93.52325267042646
  21
-131.0
+112.83333333333336
  31
 0.0
   0
@@ -3437,15 +3955,15 @@ LINE
   8
 0
  10
-23.722756001629364
+93.52325267042646
  20
-70.0
+112.83333333333336
  30
 0.0
  11
-13.722756001629365
+93.52325267042646
  21
-70.0
+124.16666666666669
  31
 0.0
   0
@@ -3455,15 +3973,15 @@ LINE
   8
 0
  10
-59.86137800081469
+93.52325267042646
  20
-60.00000000000001
+124.16666666666669
  30
 0.0
  11
-59.86137800081469
+88.52325267042646
  21
-70.00000000000001
+124.16666666666669
  31
 0.0
   0
@@ -3473,15 +3991,15 @@ LINE
   8
 0
  10
-83.86137800081468
+212.02325267042647
  20
-60.00000000000001
+80.86137800081471
  30
 0.0
  11
-59.86137800081469
+223.02325267042647
  21
-60.00000000000001
+80.86137800081471
  31
 0.0
   0
@@ -3491,15 +4009,15 @@ LINE
   8
 0
  10
-83.86137800081468
+223.02325267042647
  20
-70.00000000000001
+80.86137800081471
  30
 0.0
  11
-83.86137800081468
+223.02325267042647
  21
-60.00000000000001
+93.86137800081471
  31
 0.0
   0
@@ -3509,15 +4027,15 @@ LINE
   8
 0
  10
-83.86137800081468
+223.02325267042647
  20
-141.0
+93.86137800081471
  30
 0.0
  11
-83.86137800081468
+212.02325267042647
  21
-131.0
+93.86137800081471
  31
 0.0
   0
@@ -3527,15 +4045,15 @@ LINE
   8
 0
  10
-59.86137800081469
+212.02325267042647
  20
-141.0
+93.86137800081471
  30
 0.0
  11
-83.86137800081468
+212.02325267042647
  21
-141.0
+80.86137800081471
  31
 0.0
   0
@@ -3545,15 +4063,15 @@ LINE
   8
 0
  10
-59.86137800081469
+243.52325267042647
  20
-131.0
+82.36137800081471
  30
 0.0
  11
-59.86137800081469
+249.52325267042647
  21
-141.0
+82.36137800081471
  31
 0.0
   0
@@ -3563,15 +4081,15 @@ LINE
   8
 0
  10
-236.91666666666669
+249.52325267042647
  20
-17.74999999999997
+82.36137800081471
  30
 0.0
  11
-213.08333333333334
+249.52325267042647
  21
-17.74999999999997
+92.36137800081471
  31
 0.0
   0
@@ -3581,15 +4099,15 @@ LINE
   8
 0
  10
-213.08333333333334
+249.52325267042647
  20
-17.74999999999997
+92.36137800081471
  30
 0.0
  11
-213.08333333333334
+243.52325267042647
  21
-17.249999999999975
+92.36137800081471
  31
 0.0
   0
@@ -3599,15 +4117,15 @@ LINE
   8
 0
  10
-213.08333333333334
+243.52325267042647
  20
-17.249999999999975
+92.36137800081471
  30
 0.0
  11
-236.91666666666669
+243.52325267042647
  21
-17.249999999999975
+82.36137800081471
  31
 0.0
   0
@@ -3617,15 +4135,15 @@ LINE
   8
 0
  10
-236.91666666666669
+243.93234357951738
  20
-17.249999999999975
+31.722756001629396
  30
 0.0
  11
-236.91666666666669
+243.93234357951738
  21
-17.74999999999997
+36.7227560016294
  31
 0.0
   0
@@ -3635,15 +4153,15 @@ LINE
   8
 0
  10
-102.50000000000001
+243.93234357951738
  20
-23.333333333333318
+36.7227560016294
  30
 0.0
  11
-114.1666666666667
+232.8414344886083
  21
-23.333333333333318
+36.7227560016294
  31
 0.0
   0
@@ -3653,15 +4171,15 @@ LINE
   8
 0
  10
-114.1666666666667
+232.8414344886083
  20
-23.333333333333318
+36.7227560016294
  30
 0.0
  11
-114.16666666666669
+232.8414344886083
  21
-46.66666666666666
+31.722756001629396
  31
 0.0
   0
@@ -3671,15 +4189,15 @@ LINE
   8
 0
  10
-114.16666666666669
+216.20507085224466
  20
-46.66666666666666
+31.722756001629396
  30
 0.0
  11
-102.50000000000004
+216.20507085224466
  21
-46.66666666666666
+36.7227560016294
  31
 0.0
   0
@@ -3689,15 +4207,15 @@ LINE
   8
 0
  10
-213.08333333333334
+216.20507085224466
  20
-350.25
+36.7227560016294
  30
 0.0
  11
-236.91666666666666
+205.11416176133554
  21
-350.25
+36.7227560016294
  31
 0.0
   0
@@ -3707,15 +4225,15 @@ LINE
   8
 0
  10
-236.91666666666666
+205.11416176133554
  20
-350.25
+36.7227560016294
  30
 0.0
  11
-236.91666666666666
+205.11416176133554
  21
-350.75
+31.722756001629396
  31
 0.0
   0
@@ -3725,15 +4243,15 @@ LINE
   8
 0
  10
-236.91666666666666
+262.52325267042653
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-213.08333333333334
+257.52325267042653
  21
-350.75
+91.36137800081471
  31
 0.0
   0
@@ -3743,15 +4261,15 @@ LINE
   8
 0
  10
-213.08333333333334
+257.52325267042653
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-213.08333333333334
+257.52325267042653
  21
-350.25
+83.36137800081471
  31
 0.0
   0
@@ -3761,15 +4279,15 @@ LINE
   8
 0
  10
-233.08333333333334
+257.52325267042653
  20
-350.25
+83.36137800081471
  30
 0.0
  11
-256.9166666666667
+262.52325267042653
  21
-350.25
+83.36137800081471
  31
 0.0
   0
@@ -3779,15 +4297,15 @@ LINE
   8
 0
  10
-256.9166666666667
+186.52325267042647
  20
-350.25
+83.36137800081471
  30
 0.0
  11
-256.9166666666667
+191.52325267042647
  21
-350.75
+83.36137800081471
  31
 0.0
   0
@@ -3797,15 +4315,15 @@ LINE
   8
 0
  10
-256.9166666666667
+191.52325267042647
  20
-350.75
+83.36137800081471
  30
 0.0
  11
-233.08333333333334
+191.52325267042647
  21
-350.75
+91.36137800081471
  31
 0.0
   0
@@ -3815,15 +4333,15 @@ LINE
   8
 0
  10
-233.08333333333334
+191.52325267042647
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-233.08333333333334
+186.52325267042647
  21
-350.25
+91.36137800081471
  31
 0.0
   0
@@ -3833,15 +4351,15 @@ LINE
   8
 0
  10
-367.5
+290.0328332158675
  20
-344.6666666666668
+122.37140729545962
  30
 0.0
  11
-355.83333333333337
+290.0328332158675
  21
-344.6666666666668
+131.12380243181985
  31
 0.0
   0
@@ -3851,15 +4369,15 @@ LINE
   8
 0
  10
-355.83333333333337
+290.0328332158675
  20
-344.6666666666668
+131.12380243181985
  30
 0.0
  11
-355.83333333333337
+272.52804294314694
  21
-321.3333333333334
+131.12380243181988
  31
 0.0
   0
@@ -3869,15 +4387,15 @@ LINE
   8
 0
  10
-355.83333333333337
+272.52804294314694
  20
-321.3333333333334
+131.12380243181988
  30
 0.0
  11
-367.50000000000006
+272.52804294314694
  21
-321.3333333333334
+122.37140729545962
  31
 0.0
   0
@@ -3887,15 +4405,15 @@ LINE
   8
 0
  10
-256.91666666666674
+319.2477556839554
  20
-17.749999999999915
+223.5120791976936
  30
 0.0
  11
-233.08333333333343
+314.2109561925024
  21
-17.74999999999989
+206.22615649603978
  31
 0.0
   0
@@ -3905,15 +4423,15 @@ LINE
   8
 0
  10
-233.08333333333343
+314.2109561925024
  20
-17.74999999999989
+206.22615649603978
  30
 0.0
  11
-233.08333333333343
+314.69099296160164
  21
-17.249999999999886
+206.08628262316594
  31
 0.0
   0
@@ -3923,15 +4441,15 @@ LINE
   8
 0
  10
-233.08333333333343
+314.69099296160164
  20
-17.249999999999886
+206.08628262316594
  30
 0.0
  11
-256.91666666666674
+319.72779245305475
  21
-17.24999999999992
+223.37220532481973
  31
 0.0
   0
@@ -3941,15 +4459,15 @@ LINE
   8
 0
  10
-256.91666666666674
+319.72779245305475
  20
-17.24999999999992
+223.37220532481973
  30
 0.0
  11
-256.91666666666674
+319.2477556839554
  21
-17.749999999999915
+223.5120791976936
  31
 0.0
   0
@@ -3959,15 +4477,15 @@ LINE
   8
 0
  10
-367.5000000000001
+314.21095619250247
  20
-46.66666666666669
+294.77384350396034
  30
 0.0
  11
-355.8333333333334
+319.24775568395546
  21
-46.66666666666666
+277.4879208023065
  31
 0.0
   0
@@ -3977,15 +4495,15 @@ LINE
   8
 0
  10
-355.8333333333334
+319.24775568395546
  20
-46.66666666666666
+277.4879208023065
  30
 0.0
  11
-355.8333333333334
+319.72779245305475
  21
-23.333333333333346
+277.6277946751803
  31
 0.0
   0
@@ -3995,15 +4513,15 @@ LINE
   8
 0
  10
-355.8333333333334
+319.72779245305475
  20
-23.333333333333346
+277.6277946751803
  30
 0.0
  11
-367.50000000000006
+314.69099296160164
  21
-23.333333333333346
+294.91371737683414
  31
 0.0
   0
@@ -4013,15 +4531,15 @@ LINE
   8
 0
  10
-342.2500000000001
+314.69099296160164
  20
-92.43181818181819
+294.91371737683414
  30
 0.0
  11
-342.2500000000001
+314.21095619250247
  21
-80.84090909090908
+294.77384350396034
  31
 0.0
   0
@@ -4031,15 +4549,15 @@ LINE
   8
 0
  10
-342.2500000000001
+216.45507085224477
  20
-80.84090909090908
+373.25000000000017
  30
 0.0
  11
-342.7500000000001
+204.86416176133565
  21
-80.84090909090908
+373.25000000000017
  31
 0.0
   0
@@ -4049,15 +4567,15 @@ LINE
   8
 0
  10
-342.7500000000001
+204.86416176133565
  20
-80.84090909090908
+373.25000000000017
  30
 0.0
  11
-342.7500000000001
+204.86416176133565
  21
-92.43181818181819
+372.7500000000001
  31
 0.0
   0
@@ -4067,15 +4585,15 @@ LINE
   8
 0
  10
-342.7500000000001
+204.86416176133565
  20
-92.43181818181819
+372.7500000000001
  30
 0.0
  11
-342.2500000000001
+216.45507085224477
  21
-92.43181818181819
+372.7500000000001
  31
 0.0
   0
@@ -4085,15 +4603,15 @@ LINE
   8
 0
  10
-342.25000000000006
+216.45507085224477
  20
-120.15909090909092
+372.7500000000001
  30
 0.0
  11
-342.25000000000006
+216.45507085224477
  21
-108.56818181818183
+373.25000000000017
  31
 0.0
   0
@@ -4103,15 +4621,15 @@ LINE
   8
 0
  10
-342.25000000000006
+244.1823435795175
  20
-108.56818181818183
+373.25000000000006
  30
 0.0
  11
-342.75000000000006
+232.5914344886084
  21
-108.56818181818183
+373.25000000000017
  31
 0.0
   0
@@ -4121,15 +4639,15 @@ LINE
   8
 0
  10
-342.75000000000006
+232.5914344886084
  20
-108.56818181818183
+373.25000000000017
  30
 0.0
  11
-342.75000000000006
+232.5914344886084
  21
-120.15909090909092
+372.7500000000001
  31
 0.0
   0
@@ -4139,15 +4657,15 @@ LINE
   8
 0
  10
-342.75000000000006
+232.5914344886084
  20
-120.15909090909092
+372.7500000000001
  30
 0.0
  11
-342.25000000000006
+244.1823435795175
  21
-120.15909090909092
+372.75000000000006
  31
 0.0
   0
@@ -4157,15 +4675,15 @@ LINE
   8
 0
  10
-372.9166666666667
+244.1823435795175
  20
-148.75000000000003
+372.75000000000006
  30
 0.0
  11
-361.0833333333334
+244.1823435795175
  21
-148.75000000000003
+373.25000000000006
  31
 0.0
   0
@@ -4175,15 +4693,15 @@ LINE
   8
 0
  10
-361.0833333333334
+232.5914344886084
  20
-148.75000000000003
+357.75000000000017
  30
 0.0
  11
-361.0833333333334
+244.1823435795175
  21
-148.25
+357.7500000000001
  31
 0.0
   0
@@ -4193,15 +4711,15 @@ LINE
   8
 0
  10
-361.0833333333334
+244.1823435795175
  20
-148.25
+357.7500000000001
  30
 0.0
  11
-372.9166666666667
+244.1823435795175
  21
-148.25
+358.2500000000001
  31
 0.0
   0
@@ -4211,15 +4729,15 @@ LINE
   8
 0
  10
-372.9166666666667
+244.1823435795175
  20
-148.25
+358.2500000000001
  30
 0.0
  11
-372.9166666666667
+232.5914344886084
  21
-148.75000000000003
+358.25000000000017
  31
 0.0
   0
@@ -4229,15 +4747,15 @@ LINE
   8
 0
  10
-461.00000000000006
+232.5914344886084
  20
-157.25000000000009
+358.25000000000017
  30
 0.0
  11
-461.00000000000006
+232.5914344886084
  21
-148.75000000000009
+357.75000000000017
  31
 0.0
   0
@@ -4247,15 +4765,15 @@ LINE
   8
 0
  10
-461.00000000000006
+204.86416176133562
  20
-148.75000000000009
+357.75000000000017
  30
 0.0
  11
-461.50000000000006
+216.45507085224475
  21
-148.75000000000009
+357.75000000000017
  31
 0.0
   0
@@ -4265,15 +4783,15 @@ LINE
   8
 0
  10
-461.50000000000006
+216.45507085224475
  20
-148.75000000000009
+357.75000000000017
  30
 0.0
  11
-461.50000000000006
+216.45507085224475
  21
-157.25000000000009
+358.25000000000017
  31
 0.0
   0
@@ -4283,15 +4801,15 @@ LINE
   8
 0
  10
-461.50000000000006
+216.45507085224475
  20
-157.25000000000009
+358.25000000000017
  30
 0.0
  11
-461.00000000000006
+204.86416176133562
  21
-157.25000000000009
+358.25000000000017
  31
 0.0
   0
@@ -4301,15 +4819,15 @@ LINE
   8
 0
  10
-361.00000000000006
+204.86416176133562
  20
-184.00000000000003
+358.25000000000017
  30
 0.0
  11
-361.00000000000006
+204.86416176133562
  21
-180.00000000000006
+357.75000000000017
  31
 0.0
   0
@@ -4319,15 +4837,15 @@ LINE
   8
 0
  10
-361.00000000000006
+176.27325267042653
  20
-180.00000000000006
+388.4166666666668
  30
 0.0
  11
-373.0
+176.27325267042653
  21
-180.00000000000006
+376.5833333333335
  31
 0.0
   0
@@ -4337,15 +4855,15 @@ LINE
   8
 0
  10
-373.0
+176.27325267042653
  20
-180.00000000000006
+376.5833333333335
  30
 0.0
  11
-373.0
+176.77325267042653
  21
-184.00000000000003
+376.5833333333335
  31
 0.0
   0
@@ -4355,15 +4873,15 @@ LINE
   8
 0
  10
-373.0
+176.77325267042653
  20
-184.00000000000003
+376.5833333333335
  30
 0.0
  11
-361.00000000000006
+176.77325267042653
  21
-184.00000000000003
+388.4166666666668
  31
 0.0
   0
@@ -4373,15 +4891,15 @@ LINE
   8
 0
  10
-362.50000000000006
+176.77325267042653
  20
-172.00000000000003
+388.4166666666668
  30
 0.0
  11
-362.50000000000006
+176.27325267042653
  21
-168.0
+388.4166666666668
  31
 0.0
   0
@@ -4391,15 +4909,15 @@ LINE
   8
 0
  10
-362.50000000000006
+167.77325267042664
  20
-168.0
+476.50000000000017
  30
 0.0
  11
-371.50000000000006
+176.27325267042661
  21
-168.00000000000003
+476.50000000000017
  31
 0.0
   0
@@ -4409,15 +4927,15 @@ LINE
   8
 0
  10
-371.50000000000006
+176.27325267042661
  20
-168.00000000000003
+476.50000000000017
  30
 0.0
  11
-371.50000000000006
+176.27325267042661
  21
-172.00000000000006
+477.00000000000017
  31
 0.0
   0
@@ -4427,15 +4945,15 @@ LINE
   8
 0
  10
-371.50000000000006
+176.27325267042661
  20
-172.00000000000006
+477.00000000000017
  30
 0.0
  11
-362.50000000000006
+167.77325267042664
  21
-172.00000000000003
+477.00000000000017
  31
 0.0
   0
@@ -4445,15 +4963,15 @@ LINE
   8
 0
  10
-361.00000000000006
+167.77325267042664
  20
-208.50000000000006
+477.00000000000017
  30
 0.0
  11
-361.00000000000006
+167.77325267042664
  21
-185.50000000000006
+476.50000000000017
  31
 0.0
   0
@@ -4463,15 +4981,15 @@ LINE
   8
 0
  10
-361.00000000000006
+141.02325267042656
  20
-185.50000000000006
+376.50000000000017
  30
 0.0
  11
-373.0
+145.02325267042653
  21
-185.50000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4481,15 +4999,15 @@ LINE
   8
 0
  10
-373.0
+145.02325267042653
  20
-185.50000000000006
+376.50000000000017
  30
 0.0
  11
-373.0
+145.02325267042653
  21
-208.50000000000006
+388.50000000000017
  31
 0.0
   0
@@ -4499,15 +5017,15 @@ LINE
   8
 0
  10
-373.0
+145.02325267042653
  20
-208.50000000000006
+388.50000000000017
  30
 0.0
  11
-361.00000000000006
+141.02325267042656
  21
-208.50000000000006
+388.50000000000017
  31
 0.0
   0
@@ -4517,15 +5035,15 @@ LINE
   8
 0
  10
-361.00000000000006
+141.02325267042656
  20
-214.00000000000006
+388.50000000000017
  30
 0.0
  11
-361.00000000000006
+141.02325267042656
  21
-210.00000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4535,15 +5053,15 @@ LINE
   8
 0
  10
-361.00000000000006
+153.02325267042656
  20
-210.00000000000006
+378.00000000000017
  30
 0.0
  11
-373.0
+157.02325267042656
  21
-210.00000000000006
+378.00000000000017
  31
 0.0
   0
@@ -4553,15 +5071,15 @@ LINE
   8
 0
  10
-373.0
+157.02325267042656
  20
-210.00000000000006
+378.00000000000017
  30
 0.0
  11
-373.0
+157.02325267042656
  21
-214.00000000000006
+387.00000000000017
  31
 0.0
   0
@@ -4571,15 +5089,15 @@ LINE
   8
 0
  10
-373.0
+157.02325267042656
  20
-214.00000000000006
+387.00000000000017
  30
 0.0
  11
-361.00000000000006
+153.02325267042656
  21
-214.00000000000006
+387.00000000000017
  31
 0.0
   0
@@ -4589,15 +5107,15 @@ LINE
   8
 0
  10
-361.3333333333334
+153.02325267042656
  20
-236.50000000000003
+387.00000000000017
  30
 0.0
  11
-361.3333333333334
+153.02325267042656
  21
-231.50000000000006
+378.00000000000017
  31
 0.0
   0
@@ -4607,15 +5125,15 @@ LINE
   8
 0
  10
-361.3333333333334
+116.52325267042653
  20
-231.50000000000006
+376.50000000000017
  30
 0.0
  11
-372.6666666666667
+139.52325267042656
  21
-231.50000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4625,15 +5143,15 @@ LINE
   8
 0
  10
-372.6666666666667
+139.52325267042656
  20
-231.50000000000006
+376.50000000000017
  30
 0.0
  11
-372.6666666666667
+139.52325267042656
  21
-236.50000000000003
+388.50000000000017
  31
 0.0
   0
@@ -4643,15 +5161,15 @@ LINE
   8
 0
  10
-416.15427803486153
+139.52325267042656
  20
-297.5000000000001
+388.50000000000017
  30
 0.0
  11
-416.15427803486153
+116.52325267042654
  21
-294.5000000000001
+388.50000000000017
  31
 0.0
   0
@@ -4661,15 +5179,15 @@ LINE
   8
 0
  10
-416.15427803486153
+116.52325267042654
  20
-294.5000000000001
+388.50000000000017
  30
 0.0
  11
-434.15427803486153
+116.52325267042653
  21
-294.5000000000001
+376.50000000000017
  31
 0.0
   0
@@ -4679,15 +5197,15 @@ LINE
   8
 0
  10
-434.15427803486153
+111.02325267042653
  20
-294.5000000000001
+376.50000000000017
  30
 0.0
  11
-434.15427803486153
+115.02325267042653
  21
-297.5000000000001
+376.50000000000017
  31
 0.0
   0
@@ -4697,15 +5215,15 @@ LINE
   8
 0
  10
-434.15427803486153
+115.02325267042653
  20
-297.5000000000001
+376.50000000000017
  30
 0.0
  11
-416.15427803486153
+115.02325267042653
  21
-297.5000000000001
+388.50000000000017
  31
 0.0
   0
@@ -4715,15 +5233,15 @@ LINE
   8
 0
  10
-429.90427803486153
+115.02325267042653
  20
-245.75000000000009
+388.50000000000017
  30
 0.0
  11
-420.40427803486153
+111.02325267042654
  21
-245.75000000000009
+388.50000000000017
  31
 0.0
   0
@@ -4733,15 +5251,15 @@ LINE
   8
 0
  10
-420.40427803486153
+111.02325267042654
  20
-245.75000000000009
+388.50000000000017
  30
 0.0
  11
-420.40427803486153
+111.02325267042653
  21
-245.25000000000009
+376.50000000000017
  31
 0.0
   0
@@ -4751,15 +5269,15 @@ LINE
   8
 0
  10
-420.40427803486153
+88.52325267042652
  20
-245.25000000000009
+376.8333333333335
  30
 0.0
  11
-429.90427803486153
+93.5232526704265
  21
-245.25000000000009
+376.8333333333335
  31
 0.0
   0
@@ -4769,15 +5287,15 @@ LINE
   8
 0
  10
-429.90427803486153
+93.5232526704265
  20
-245.25000000000009
+376.8333333333335
  30
 0.0
  11
-429.90427803486153
+93.52325267042652
  21
-245.75000000000009
+388.16666666666686
  31
 0.0
   0
@@ -4787,15 +5305,15 @@ LINE
   8
 0
  10
-492.55855606972295
+93.52325267042652
  20
-278.25000000000017
+388.16666666666686
  30
 0.0
  11
-492.55855606972295
+88.52325267042653
  21
-257.75000000000017
+388.16666666666686
  31
 0.0
   0
@@ -4805,15 +5323,15 @@ LINE
   8
 0
  10
-492.55855606972295
+51.01367212498543
  20
-257.75000000000017
+378.6285927045407
  30
 0.0
  11
-493.05855606972295
+51.013672124985426
  21
-257.75000000000017
+369.87619756818043
  31
 0.0
   0
@@ -4823,15 +5341,15 @@ LINE
   8
 0
  10
-493.05855606972295
+51.013672124985426
  20
-257.75000000000017
+369.87619756818043
  30
 0.0
  11
-493.05855606972295
+68.51846239770595
  21
-278.25000000000017
+369.87619756818043
  31
 0.0
   0
@@ -4841,15 +5359,15 @@ LINE
   8
 0
  10
-493.05855606972295
+68.51846239770595
  20
-278.25000000000017
+369.87619756818043
  30
 0.0
  11
-492.55855606972295
+68.51846239770595
  21
-278.25000000000017
+378.6285927045407
  31
 0.0
   0
@@ -4859,15 +5377,15 @@ LINE
   8
 0
  10
-416.1542780348615
+21.798749656897446
  20
-301.0000000000001
+277.4879208023067
  30
 0.0
  11
-416.1542780348615
+26.83554914835048
  21
-298.0000000000001
+294.7738435039605
  31
 0.0
   0
@@ -4877,15 +5395,15 @@ LINE
   8
 0
  10
-416.1542780348615
+26.83554914835048
  20
-298.0000000000001
+294.7738435039605
  30
 0.0
  11
-434.1542780348615
+26.3555123792512
  21
-298.0000000000001
+294.9137173768343
  31
 0.0
   0
@@ -4895,15 +5413,15 @@ LINE
   8
 0
  10
-434.1542780348615
+26.3555123792512
  20
-298.0000000000001
+294.9137173768343
  30
 0.0
  11
-434.1542780348615
+21.318712887798156
  21
-301.0000000000001
+277.62779467518055
  31
 0.0
   0
@@ -4913,15 +5431,15 @@ LINE
   8
 0
  10
-434.1542780348615
+21.318712887798156
  20
-301.0000000000001
+277.62779467518055
  30
 0.0
  11
-416.1542780348615
+21.798749656897446
  21
-301.0000000000001
+277.4879208023067
  31
 0.0
   0
@@ -4931,15 +5449,15 @@ LINE
   8
 0
  10
-420.6542780348614
+26.835549148350342
  20
-399.5000000000001
+206.22615649604003
  30
 0.0
  11
-420.6542780348614
+21.798749656897346
  21
-394.50000000000017
+223.51207919769385
  31
 0.0
   0
@@ -4949,15 +5467,15 @@ LINE
   8
 0
  10
-420.6542780348614
+21.798749656897346
  20
-394.50000000000017
+223.51207919769385
  30
 0.0
  11
-429.65427803486136
+21.31871288779806
  21
-394.50000000000017
+223.37220532482002
  31
 0.0
   0
@@ -4967,15 +5485,15 @@ LINE
   8
 0
  10
-429.65427803486136
+21.31871288779806
  20
-394.50000000000017
+223.37220532482002
  30
 0.0
  11
-429.65427803486136
+26.355512379251053
  21
-399.5000000000001
+206.08628262316617
  31
 0.0
   0
@@ -4985,15 +5503,15 @@ LINE
   8
 0
  10
-102.50000000000001
+26.355512379251053
  20
-321.33333333333337
+206.08628262316617
  30
 0.0
  11
-114.16666666666667
+26.835549148350342
  21
-321.33333333333337
+206.22615649604003
  31
 0.0
   0
@@ -5003,15 +5521,15 @@ LINE
   8
 0
  10
-114.16666666666667
+68.51846239770559
  20
-321.33333333333337
+122.37140729545976
  30
 0.0
  11
-114.16666666666667
+68.51846239770562
  21
-344.6666666666667
+131.12380243182005
  31
 0.0
   0
@@ -5021,15 +5539,15 @@ LINE
   8
 0
  10
-114.16666666666667
+68.51846239770562
  20
-344.6666666666667
+131.12380243182005
  30
 0.0
  11
-102.50000000000001
+51.01367212498507
  21
-344.6666666666667
+131.12380243182008
  31
 0.0
   0
@@ -5039,15 +5557,15 @@ LINE
   8
 0
  10
-112.5
+51.01367212498507
  20
-258.0
+131.12380243182008
  30
 0.0
  11
-112.5
+51.01367212498506
  21
-253.00000000000003
+122.3714072954598
  31
 0.0
   0
@@ -5057,15 +5575,15 @@ LINE
   8
 0
  10
-112.5
+272.52804294314706
  20
-253.00000000000003
+378.6285927045405
  30
 0.0
  11
-117.5
+272.52804294314706
  21
-258.0
+369.87619756818015
  31
 0.0
   0
@@ -5075,15 +5593,15 @@ LINE
   8
 0
  10
-117.5
+272.52804294314706
  20
-258.0
+369.87619756818015
  30
 0.0
  11
-117.5
+290.03283321586764
  21
-278.0
+369.87619756818015
  31
 0.0
   0
@@ -5093,15 +5611,15 @@ LINE
   8
 0
  10
-117.5
+290.03283321586764
  20
-278.0
+369.87619756818015
  30
 0.0
  11
-112.5
+290.03283321586764
  21
-283.0
+378.6285927045405
  31
 0.0
   0
@@ -5111,15 +5629,15 @@ LINE
   8
 0
  10
-112.5
+511.3550614105758
  20
-283.0
+105.00000000000001
  30
 0.0
  11
-112.5
+449.7007833757143
  21
-278.0
+105.00000000000001
  31
 0.0
   0
@@ -5129,33 +5647,35 @@ LINE
   8
 0
  10
-108.91666666666669
+449.7007833757143
  20
-148.75000000000003
+166.0
  30
 0.0
  11
-97.08333333333336
+511.3550614105758
  21
-148.75000000000003
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-97.08333333333336
+449.7007833757143
  20
-148.75000000000003
+166.0
  30
 0.0
  11
-97.08333333333336
+449.7007833757143
  21
-148.25
+105.00000000000001
  31
 0.0
   0
@@ -5165,15 +5685,15 @@ LINE
   8
 0
  10
-97.08333333333336
+521.3550614105757
  20
-148.25
+105.00000000000001
  30
 0.0
  11
-108.91666666666669
+511.3550614105758
  21
-148.25
+105.00000000000001
  31
 0.0
   0
@@ -5183,15 +5703,15 @@ LINE
   8
 0
  10
-108.91666666666669
+521.3550614105757
  20
-148.25
+166.0
  30
 0.0
  11
-108.91666666666669
+521.3550614105757
  21
-148.75000000000003
+105.00000000000001
  31
 0.0
   0
@@ -5201,15 +5721,15 @@ LINE
   8
 0
  10
-1.2500000000000002
+511.3550614105758
  20
-149.00000000000003
+166.0
  30
 0.0
  11
-1.2500000000000002
+521.3550614105757
  21
-146.50000000000003
+166.0
  31
 0.0
   0
@@ -5219,51 +5739,55 @@ LINE
   8
 0
  10
-1.2500000000000002
+422.7007833757143
  20
-146.50000000000003
+166.0
  30
 0.0
  11
-3.7500000000000004
+449.7007833757143
  21
-149.00000000000003
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-3.7500000000000004
+422.7007833757143
  20
-149.00000000000003
+105.00000000000001
  30
 0.0
  11
-3.7500000000000004
+422.7007833757143
  21
-157.0
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-3.7500000000000004
+449.7007833757143
  20
-157.0
+105.00000000000001
  30
 0.0
  11
-1.2500000000000002
+422.7007833757143
  21
-159.5
+105.00000000000001
  31
 0.0
   0
@@ -5273,15 +5797,15 @@ LINE
   8
 0
  10
-1.2500000000000002
+361.0465053408529
  20
-159.5
+166.0
  30
 0.0
  11
-1.2500000000000002
+422.7007833757143
  21
-157.0
+166.0
  31
 0.0
   0
@@ -5291,15 +5815,15 @@ LINE
   8
 0
  10
-97.00000000000001
+422.7007833757143
  20
-184.00000000000003
+105.00000000000001
  30
 0.0
  11
-97.00000000000001
+361.0465053408529
  21
-180.0
+105.00000000000001
  31
 0.0
   0
@@ -5309,15 +5833,15 @@ LINE
   8
 0
  10
-97.00000000000001
+351.0465053408529
  20
-180.0
+166.0
  30
 0.0
  11
-109.00000000000001
+361.0465053408529
  21
-180.0
+166.0
  31
 0.0
   0
@@ -5327,15 +5851,15 @@ LINE
   8
 0
  10
-109.00000000000001
+351.0465053408529
  20
-180.0
+105.00000000000001
  30
 0.0
  11
-109.00000000000001
+351.0465053408529
  21
-184.00000000000003
+166.0
  31
 0.0
   0
@@ -5345,15 +5869,15 @@ LINE
   8
 0
  10
-109.00000000000001
+361.0465053408529
  20
-184.00000000000003
+105.00000000000001
  30
 0.0
  11
-97.00000000000001
+351.0465053408529
  21
-184.00000000000003
+105.00000000000001
  31
 0.0
   0
@@ -5363,15 +5887,15 @@ LINE
   8
 0
  10
-98.50000000000001
+449.7007833757143
  20
-172.00000000000003
+105.00000000000001
  30
 0.0
  11
-98.50000000000001
+449.7007833757143
  21
-168.0
+88.00000000000001
  31
 0.0
   0
@@ -5381,33 +5905,35 @@ LINE
   8
 0
  10
-98.50000000000001
+422.7007833757143
  20
-168.0
+88.00000000000001
  30
 0.0
  11
-107.50000000000001
+422.7007833757143
  21
-168.0
+105.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-107.50000000000001
+449.7007833757143
  20
-168.0
+88.00000000000001
  30
 0.0
  11
-107.50000000000001
+422.7007833757143
  21
-172.00000000000003
+88.00000000000001
  31
 0.0
   0
@@ -5417,15 +5943,15 @@ LINE
   8
 0
  10
-107.50000000000001
+449.7007833757143
  20
-172.00000000000003
+88.00000000000001
  30
 0.0
  11
-98.50000000000001
+449.7007833757143
  21
-172.00000000000003
+27.000000000000004
  31
 0.0
   0
@@ -5435,33 +5961,35 @@ LINE
   8
 0
  10
-97.00000000000001
+422.7007833757143
  20
-208.50000000000003
+27.000000000000004
  30
 0.0
  11
-97.00000000000001
+422.7007833757143
  21
-185.50000000000003
+88.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-97.00000000000001
+449.7007833757143
  20
-185.50000000000003
+27.000000000000004
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-185.50000000000003
+27.000000000000004
  31
 0.0
   0
@@ -5471,15 +5999,15 @@ LINE
   8
 0
  10
-109.00000000000001
+449.7007833757143
  20
-185.50000000000003
+27.000000000000004
  30
 0.0
  11
-109.00000000000001
+449.7007833757143
  21
-208.50000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5489,33 +6017,35 @@ LINE
   8
 0
  10
-109.00000000000001
+422.7007833757143
  20
-208.50000000000003
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+422.7007833757143
  21
-208.50000000000003
+27.000000000000004
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-97.00000000000001
+422.7007833757143
  20
-214.0
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+449.7007833757143
  21
-210.00000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5525,15 +6055,15 @@ LINE
   8
 0
  10
-97.00000000000001
+422.7007833757143
  20
-210.00000000000003
+0.0
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-210.00000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5543,15 +6073,15 @@ LINE
   8
 0
  10
-109.00000000000001
+449.7007833757143
  20
-210.00000000000003
+0.0
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-214.0
+0.0
  31
 0.0
   0
@@ -5561,15 +6091,15 @@ LINE
   8
 0
  10
-109.00000000000001
+449.7007833757143
  20
-214.0
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+449.7007833757143
  21
-214.0
+0.0
  31
 0.0
   0
@@ -5579,15 +6109,15 @@ LINE
   8
 0
  10
-97.33333333333336
+518.8550614105758
  20
-236.50000000000003
+154.90909090909093
  30
 0.0
  11
-97.33333333333336
+513.8550614105758
  21
-231.50000000000003
+154.90909090909093
  31
 0.0
   0
@@ -5597,15 +6127,15 @@ LINE
   8
 0
  10
-97.33333333333336
+513.8550614105758
  20
-231.50000000000003
+154.90909090909093
  30
 0.0
  11
-108.66666666666669
+513.8550614105758
  21
-231.50000000000003
+143.8181818181818
  31
 0.0
   0
@@ -5615,15 +6145,15 @@ LINE
   8
 0
  10
-108.66666666666669
+513.8550614105758
  20
-231.50000000000003
+143.8181818181818
  30
 0.0
  11
-108.66666666666669
+518.8550614105758
  21
-236.50000000000003
+143.8181818181818
  31
 0.0
   0
@@ -5633,15 +6163,15 @@ LINE
   8
 0
  10
-65.36137800081468
+518.8550614105758
  20
-113.00000000000001
+127.1818181818182
  30
 0.0
  11
-65.36137800081468
+513.8550614105758
  21
-102.00000000000001
+127.1818181818182
  31
 0.0
   0
@@ -5651,15 +6181,15 @@ LINE
   8
 0
  10
-65.36137800081468
+513.8550614105758
  20
-102.00000000000001
+127.1818181818182
  30
 0.0
  11
-78.36137800081468
+513.8550614105758
  21
-102.00000000000001
+116.09090909090911
  31
 0.0
   0
@@ -5669,15 +6199,15 @@ LINE
   8
 0
  10
-78.36137800081468
+513.8550614105758
  20
-102.00000000000001
+116.09090909090911
  30
 0.0
  11
-78.36137800081468
+518.8550614105758
  21
-113.00000000000001
+116.09090909090911
  31
 0.0
   0
@@ -5687,15 +6217,15 @@ LINE
   8
 0
  10
-78.36137800081468
+445.2007833757143
  20
-113.00000000000001
+102.50000000000001
  30
 0.0
  11
-65.36137800081468
+445.2007833757143
  21
-113.00000000000001
+108.50000000000001
  31
 0.0
   0
@@ -5705,15 +6235,15 @@ LINE
   8
 0
  10
-66.8613780008147
+445.2007833757143
  20
-81.50000000000001
+108.50000000000001
  30
 0.0
  11
-66.8613780008147
+427.2007833757143
  21
-75.50000000000001
+108.50000000000001
  31
 0.0
   0
@@ -5723,15 +6253,15 @@ LINE
   8
 0
  10
-66.8613780008147
+427.2007833757143
  20
-75.50000000000001
+108.50000000000001
  30
 0.0
  11
-76.8613780008147
+427.2007833757143
  21
-75.50000000000001
+102.50000000000001
  31
 0.0
   0
@@ -5741,15 +6271,15 @@ LINE
   8
 0
  10
-76.8613780008147
+427.2007833757143
  20
-75.50000000000001
+102.50000000000001
  30
 0.0
  11
-76.8613780008147
+445.2007833757143
  21
-81.50000000000001
+102.50000000000001
  31
 0.0
   0
@@ -5759,15 +6289,15 @@ LINE
   8
 0
  10
-76.8613780008147
+431.4507833757143
  20
-81.50000000000001
+158.25000000000003
  30
 0.0
  11
-66.8613780008147
+440.9507833757143
  21
-81.50000000000001
+158.25000000000003
  31
 0.0
   0
@@ -5777,15 +6307,15 @@ LINE
   8
 0
  10
-16.222756001629364
+440.9507833757143
  20
-81.0909090909091
+158.25000000000003
  30
 0.0
  11
-21.222756001629367
+440.9507833757143
  21
-81.0909090909091
+158.75000000000003
  31
 0.0
   0
@@ -5795,15 +6325,15 @@ LINE
   8
 0
  10
-21.222756001629367
+440.9507833757143
  20
-81.0909090909091
+158.75000000000003
  30
 0.0
  11
-21.222756001629367
+431.4507833757143
  21
-92.18181818181819
+158.75000000000003
  31
 0.0
   0
@@ -5813,15 +6343,15 @@ LINE
   8
 0
  10
-21.222756001629367
+431.4507833757143
  20
-92.18181818181819
+158.75000000000003
  30
 0.0
  11
-16.222756001629364
+431.4507833757143
  21
-92.18181818181819
+158.25000000000003
  31
 0.0
   0
@@ -5831,15 +6361,15 @@ LINE
   8
 0
  10
-16.222756001629364
+353.54650534085283
  20
-108.81818181818183
+116.09090909090911
  30
 0.0
  11
-21.222756001629367
+358.54650534085283
  21
-108.81818181818183
+116.09090909090911
  31
 0.0
   0
@@ -5849,15 +6379,15 @@ LINE
   8
 0
  10
-21.222756001629367
+358.54650534085283
  20
-108.81818181818183
+116.09090909090911
  30
 0.0
  11
-21.222756001629367
+358.54650534085283
  21
-119.90909090909092
+127.18181818181822
  31
 0.0
   0
@@ -5867,15 +6397,15 @@ LINE
   8
 0
  10
-21.222756001629367
+358.54650534085283
  20
-119.90909090909092
+127.18181818181822
  30
 0.0
  11
-16.222756001629364
+353.54650534085283
  21
-119.90909090909092
+127.18181818181822
  31
 0.0
   0
@@ -5885,15 +6415,15 @@ LINE
   8
 0
  10
-75.86137800081468
+353.54650534085283
  20
-62.50000000000001
+143.81818181818184
  30
 0.0
  11
-75.86137800081468
+358.54650534085283
  21
-67.50000000000001
+143.81818181818184
  31
 0.0
   0
@@ -5903,15 +6433,15 @@ LINE
   8
 0
  10
-75.86137800081468
+358.54650534085283
  20
-67.50000000000001
+143.81818181818184
  30
 0.0
  11
-67.86137800081468
+358.54650534085283
  21
-67.50000000000001
+154.90909090909093
  31
 0.0
   0
@@ -5921,15 +6451,15 @@ LINE
   8
 0
  10
-67.86137800081468
+358.54650534085283
  20
-67.50000000000001
+154.90909090909093
  30
 0.0
  11
-67.86137800081468
+353.54650534085283
  21
-62.50000000000001
+154.90909090909093
  31
 0.0
   0
@@ -5939,15 +6469,15 @@ LINE
   8
 0
  10
-67.86137800081468
+440.7007833757143
  20
-138.5
+2.5000000000000004
  30
 0.0
  11
-67.86137800081468
+440.7007833757143
  21
-133.5
+7.500000000000001
  31
 0.0
   0
@@ -5957,15 +6487,15 @@ LINE
   8
 0
  10
-67.86137800081468
+440.7007833757143
  20
-133.5
+7.500000000000001
  30
 0.0
  11
-75.86137800081468
+431.7007833757143
  21
-133.5
+7.500000000000001
  31
 0.0
   0
@@ -5975,15 +6505,15 @@ LINE
   8
 0
  10
-75.86137800081468
+431.7007833757143
  20
-133.5
+7.500000000000001
  30
 0.0
  11
-75.86137800081468
+431.7007833757143
  21
-138.5
+2.5000000000000004
  31
 0.0
   0
@@ -5995,15 +6525,15 @@ DOTTED
   8
 0
  10
-543.3085560697231
+564.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6015,15 +6545,15 @@ DOTTED
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6035,15 +6565,15 @@ DOTTED
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6055,15 +6585,15 @@ DOTTED
   8
 0
  10
-543.3085560697231
+564.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6073,15 +6603,15 @@ LINE
   8
 0
  10
-543.3085560697231
+564.3550614105757
  20
-165.00000000000003
+116.50000000000001
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6091,15 +6621,15 @@ LINE
   8
 0
  10
-603.308556069723
+624.3550614105758
  20
-165.00000000000003
+116.50000000000001
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-165.00000000000003
+116.50000000000001
  31
 0.0
   0
@@ -6109,15 +6639,15 @@ LINE
   8
 0
  10
-603.308556069723
+624.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-603.308556069723
+624.3550614105758
  21
-165.00000000000003
+116.50000000000001
  31
 0.0
   0
@@ -6127,15 +6657,15 @@ LINE
   8
 0
  10
-611.308556069723
+632.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6145,15 +6675,15 @@ LINE
   8
 0
  10
-611.308556069723
+632.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-611.308556069723
+632.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6163,15 +6693,15 @@ LINE
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-611.308556069723
+632.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6183,15 +6713,15 @@ DOTTED
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6201,15 +6731,15 @@ LINE
   8
 0
  10
-544.3085560697231
+565.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6221,15 +6751,15 @@ DOTTED
   8
 0
  10
-544.3085560697231
+565.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-544.3085560697231
+565.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6239,15 +6769,15 @@ LINE
   8
 0
  10
-628.3085560697231
+649.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6259,15 +6789,15 @@ DOTTED
   8
 0
  10
-628.3085560697231
+649.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6277,15 +6807,15 @@ LINE
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6295,15 +6825,15 @@ LINE
   8
 0
  10
-688.3085560697231
+709.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6313,15 +6843,15 @@ LINE
   8
 0
  10
-688.3085560697231
+709.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-688.3085560697231
+709.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6331,15 +6861,15 @@ LINE
   8
 0
  10
-628.3085560697231
+649.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-688.3085560697231
+709.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6349,15 +6879,15 @@ LINE
   8
 0
  10
-544.3085560697231
+565.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6367,15 +6897,15 @@ LINE
   8
 0
  10
-520.3085560697231
+541.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-544.3085560697231
+565.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6387,15 +6917,15 @@ DOTTED
   8
 0
  10
-520.3085560697231
+541.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6405,15 +6935,15 @@ LINE
   8
 0
  10
-510.308556069723
+531.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6423,15 +6953,15 @@ LINE
   8
 0
  10
-510.308556069723
+531.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-510.308556069723
+531.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6441,15 +6971,15 @@ LINE
   8
 0
  10
-520.3085560697231
+541.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-510.308556069723
+531.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6459,15 +6989,15 @@ LINE
   8
 0
  10
-536.308556069723
+557.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6477,15 +7007,15 @@ LINE
   8
 0
  10
-536.308556069723
+557.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-536.308556069723
+557.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6495,15 +7025,15 @@ LINE
   8
 0
  10
-543.3085560697231
+564.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-536.308556069723
+557.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6513,15 +7043,15 @@ LINE
   8
 0
  10
-592.3994651606322
+613.4459705014848
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-595.8994651606321
+616.9459705014849
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6531,15 +7061,15 @@ LINE
   8
 0
  10
-595.8994651606321
+616.9459705014849
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-592.3994651606322
+613.4459705014848
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6549,15 +7079,15 @@ LINE
   8
 0
  10
-592.3994651606322
+613.4459705014848
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-581.4903742515411
+602.5368795923939
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6567,15 +7097,15 @@ LINE
   8
 0
  10
-581.4903742515411
+602.5368795923939
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-577.9903742515413
+599.0368795923939
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6585,15 +7115,15 @@ LINE
   8
 0
  10
-577.9903742515413
+599.0368795923939
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-581.4903742515411
+602.5368795923939
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6603,15 +7133,15 @@ LINE
   8
 0
  10
-565.1267378879049
+586.1732432287575
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-568.6267378879048
+589.6732432287577
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6621,15 +7151,15 @@ LINE
   8
 0
  10
-568.6267378879048
+589.6732432287577
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-565.1267378879049
+586.1732432287575
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6639,15 +7169,15 @@ LINE
   8
 0
  10
-565.1267378879049
+586.1732432287575
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-554.2176469788138
+575.2641523196667
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6657,15 +7187,15 @@ LINE
   8
 0
  10
-554.2176469788138
+575.2641523196667
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-550.717646978814
+571.7641523196666
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6675,15 +7205,15 @@ LINE
   8
 0
  10
-550.717646978814
+571.7641523196666
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-554.2176469788138
+575.2641523196667
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6693,15 +7223,15 @@ LINE
   8
 0
  10
-609.5585560697231
+630.6050614105758
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-606.058556069723
+627.1050614105758
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
@@ -6711,15 +7241,15 @@ LINE
   8
 0
  10
-606.058556069723
+627.1050614105758
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-606.058556069723
+627.1050614105758
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -6729,15 +7259,15 @@ LINE
   8
 0
  10
-606.058556069723
+627.1050614105758
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-609.5585560697231
+630.6050614105758
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -6747,15 +7277,15 @@ LINE
   8
 0
  10
-551.8085560697231
+572.8550614105758
  20
-247.50000000000003
+199.00000000000003
  30
 0.0
  11
-551.8085560697231
+572.8550614105758
  21
-229.50000000000003
+181.00000000000003
  31
 0.0
   0
@@ -6765,15 +7295,15 @@ LINE
   8
 0
  10
-551.8085560697231
+572.8550614105758
  20
-229.50000000000003
+181.00000000000003
  30
 0.0
  11
-586.8085560697231
+607.8550614105758
  21
-229.50000000000003
+181.00000000000003
  31
 0.0
   0
@@ -6783,15 +7313,15 @@ LINE
   8
 0
  10
-586.8085560697231
+607.8550614105758
  20
-229.50000000000003
+181.00000000000003
  30
 0.0
  11
-586.8085560697231
+607.8550614105758
  21
-247.50000000000003
+199.00000000000003
  31
 0.0
   0
@@ -6801,15 +7331,15 @@ LINE
   8
 0
  10
-586.8085560697231
+607.8550614105758
  20
-247.50000000000003
+199.00000000000003
  30
 0.0
  11
-551.8085560697231
+572.8550614105758
  21
-247.50000000000003
+199.00000000000003
  31
 0.0
   0
@@ -6819,15 +7349,15 @@ LINE
   8
 0
  10
-604.8085560697231
+625.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-604.8085560697231
+625.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -6837,15 +7367,15 @@ LINE
   8
 0
  10
-604.8085560697231
+625.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-607.8085560697231
+628.8550614105757
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -6855,15 +7385,15 @@ LINE
   8
 0
  10
-607.8085560697231
+628.8550614105757
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-607.8085560697231
+628.8550614105757
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -6873,15 +7403,15 @@ LINE
   8
 0
  10
-607.8085560697231
+628.8550614105757
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-604.8085560697231
+625.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -6891,15 +7421,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -6909,15 +7439,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -6927,15 +7457,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -6945,15 +7475,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -6963,15 +7493,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -6981,15 +7511,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -6999,15 +7529,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7017,15 +7547,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7035,15 +7565,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -7053,15 +7583,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -7071,15 +7601,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7089,15 +7619,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7107,15 +7637,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7125,15 +7655,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7143,15 +7673,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7161,15 +7691,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7179,15 +7709,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7197,15 +7727,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7215,15 +7745,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7233,15 +7763,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7251,15 +7781,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7269,15 +7799,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7287,15 +7817,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7305,15 +7835,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7323,15 +7853,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7341,15 +7871,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7359,15 +7889,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7377,15 +7907,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7395,15 +7925,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7413,15 +7943,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7431,15 +7961,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7449,15 +7979,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7467,15 +7997,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7485,15 +8015,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7503,15 +8033,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7521,15 +8051,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7539,15 +8069,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7557,15 +8087,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7575,15 +8105,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7593,15 +8123,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7611,15 +8141,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7629,15 +8159,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7647,15 +8177,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7665,15 +8195,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7683,15 +8213,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7701,15 +8231,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7719,15 +8249,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7737,15 +8267,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7755,15 +8285,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7773,15 +8303,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7791,15 +8321,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7809,15 +8339,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7827,15 +8357,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7845,15 +8375,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7863,15 +8393,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7881,15 +8411,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7899,15 +8429,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7917,15 +8447,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7935,15 +8465,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7953,15 +8483,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7971,15 +8501,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -7989,15 +8519,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8007,15 +8537,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8025,15 +8555,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8043,15 +8573,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8061,15 +8591,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8079,15 +8609,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8097,15 +8627,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8115,15 +8645,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8133,15 +8663,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8151,15 +8681,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8169,15 +8699,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8187,15 +8717,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8205,15 +8735,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8223,15 +8753,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8241,15 +8771,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8259,15 +8789,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8277,15 +8807,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8295,15 +8825,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8313,15 +8843,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8331,15 +8861,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8349,15 +8879,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8367,15 +8897,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8385,15 +8915,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8403,15 +8933,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8421,15 +8951,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8439,15 +8969,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8457,15 +8987,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8475,15 +9005,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8493,15 +9023,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8511,15 +9041,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8529,15 +9059,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8547,15 +9077,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8565,15 +9095,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8583,15 +9113,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8601,15 +9131,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8619,15 +9149,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8637,15 +9167,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8655,15 +9185,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8673,15 +9203,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8691,15 +9221,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8709,15 +9239,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8727,15 +9257,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8745,15 +9275,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8763,15 +9293,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8781,15 +9311,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8799,15 +9329,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8817,15 +9347,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8835,15 +9365,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8853,15 +9383,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8871,15 +9401,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8889,15 +9419,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8907,15 +9437,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8925,15 +9455,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8943,15 +9473,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8961,15 +9491,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8979,15 +9509,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -8997,15 +9527,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -9015,15 +9545,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -9033,15 +9563,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -9051,15 +9581,15 @@ LINE
   8
 0
  10
-624.8085560697231
+645.8550614105758
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-624.8085560697231
+645.8550614105758
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -9069,15 +9599,15 @@ LINE
   8
 0
  10
-624.8085560697231
+645.8550614105758
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-627.8085560697231
+648.8550614105757
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -9087,15 +9617,15 @@ LINE
   8
 0
  10
-627.8085560697231
+648.8550614105757
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-627.8085560697231
+648.8550614105757
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -9105,15 +9635,15 @@ LINE
   8
 0
  10
-627.8085560697231
+648.8550614105757
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-624.8085560697231
+645.8550614105758
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -9123,15 +9653,15 @@ LINE
   8
 0
  10
-620.5585560697231
+641.6050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -9141,15 +9671,15 @@ LINE
   8
 0
  10
-612.0585560697231
+633.1050614105757
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -9159,15 +9689,15 @@ LINE
   8
 0
  10
-612.0585560697231
+633.1050614105757
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -9177,15 +9707,15 @@ LINE
   8
 0
  10
-620.5585560697231
+641.6050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -9195,15 +9725,15 @@ LINE
   8
 0
  10
-612.0585560697231
+633.1050614105757
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -9213,15 +9743,15 @@ LINE
   8
 0
  10
-620.5585560697231
+641.6050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -9231,15 +9761,15 @@ LINE
   8
 0
  10
-620.5585560697231
+641.6050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -9249,15 +9779,15 @@ LINE
   8
 0
  10
-612.0585560697231
+633.1050614105757
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -9267,15 +9797,15 @@ LINE
   8
 0
  10
-643.3085560697231
+664.3550614105758
  20
-247.00000000000003
+198.50000000000003
  30
 0.0
  11
-643.3085560697231
+664.3550614105758
  21
-234.00000000000003
+185.50000000000003
  31
 0.0
   0
@@ -9285,15 +9815,15 @@ LINE
   8
 0
  10
-643.3085560697231
+664.3550614105758
  20
-234.00000000000003
+185.50000000000003
  30
 0.0
  11
-673.3085560697231
+694.3550614105757
  21
-234.00000000000003
+185.50000000000003
  31
 0.0
   0
@@ -9303,15 +9833,15 @@ LINE
   8
 0
  10
-673.3085560697231
+694.3550614105757
  20
-234.00000000000003
+185.50000000000003
  30
 0.0
  11
-673.3085560697231
+694.3550614105757
  21
-247.00000000000003
+198.50000000000003
  31
 0.0
   0
@@ -9321,15 +9851,15 @@ LINE
   8
 0
  10
-673.3085560697231
+694.3550614105757
  20
-247.00000000000003
+198.50000000000003
  30
 0.0
  11
-643.3085560697231
+664.3550614105758
  21
-247.00000000000003
+198.50000000000003
  31
 0.0
   0
@@ -9339,15 +9869,15 @@ LINE
   8
 0
  10
-650.3767378879048
+671.4232432287575
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-638.967646978814
+660.0141523196667
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9357,15 +9887,15 @@ LINE
   8
 0
  10
-638.967646978814
+660.0141523196667
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-638.967646978814
+660.0141523196667
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9375,15 +9905,15 @@ LINE
   8
 0
  10
-638.967646978814
+660.0141523196667
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-650.3767378879048
+671.4232432287575
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9393,15 +9923,15 @@ LINE
   8
 0
  10
-650.3767378879048
+671.4232432287575
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-650.3767378879048
+671.4232432287575
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9411,15 +9941,15 @@ LINE
   8
 0
  10
-677.6494651606322
+698.6959705014849
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-666.2403742515412
+687.2868795923938
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9429,15 +9959,15 @@ LINE
   8
 0
  10
-666.2403742515412
+687.2868795923938
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-666.2403742515412
+687.2868795923938
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9447,15 +9977,15 @@ LINE
   8
 0
  10
-666.2403742515412
+687.2868795923938
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-677.6494651606322
+698.6959705014849
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9465,15 +9995,15 @@ LINE
   8
 0
  10
-677.6494651606322
+698.6959705014849
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-677.6494651606322
+698.6959705014849
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9483,15 +10013,15 @@ LINE
   8
 0
  10
-680.558556069723
+701.6050614105758
  20
-218.43181818181822
+169.93181818181822
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-206.84090909090912
+158.3409090909091
  31
 0.0
   0
@@ -9501,15 +10031,15 @@ LINE
   8
 0
  10
-680.558556069723
+701.6050614105758
  20
-206.84090909090912
+158.3409090909091
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-206.84090909090912
+158.3409090909091
  31
 0.0
   0
@@ -9519,15 +10049,15 @@ LINE
   8
 0
  10
-681.058556069723
+702.1050614105758
  20
-206.84090909090912
+158.3409090909091
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-218.43181818181822
+169.93181818181822
  31
 0.0
   0
@@ -9537,15 +10067,15 @@ LINE
   8
 0
  10
-681.058556069723
+702.1050614105758
  20
-218.43181818181822
+169.93181818181822
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-218.43181818181822
+169.93181818181822
  31
 0.0
   0
@@ -9555,15 +10085,15 @@ LINE
   8
 0
  10
-680.558556069723
+701.6050614105758
  20
-246.15909090909093
+197.65909090909093
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-234.5681818181818
+186.06818181818184
  31
 0.0
   0
@@ -9573,15 +10103,15 @@ LINE
   8
 0
  10
-680.558556069723
+701.6050614105758
  20
-234.5681818181818
+186.06818181818184
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-234.5681818181818
+186.06818181818184
  31
 0.0
   0
@@ -9591,15 +10121,15 @@ LINE
   8
 0
  10
-681.058556069723
+702.1050614105758
  20
-234.5681818181818
+186.06818181818184
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-246.15909090909093
+197.65909090909093
  31
 0.0
   0
@@ -9609,15 +10139,15 @@ LINE
   8
 0
  10
-681.058556069723
+702.1050614105758
  20
-246.15909090909093
+197.65909090909093
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-246.15909090909093
+197.65909090909093
  31
 0.0
   0
@@ -9627,15 +10157,15 @@ LINE
   8
 0
  10
-520.8085560697231
+541.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-520.8085560697231
+541.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -9645,15 +10175,15 @@ LINE
   8
 0
  10
-520.8085560697231
+541.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-523.8085560697231
+544.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -9663,15 +10193,15 @@ LINE
   8
 0
  10
-523.8085560697231
+544.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-523.8085560697231
+544.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -9681,15 +10211,15 @@ LINE
   8
 0
  10
-523.8085560697231
+544.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-520.8085560697231
+541.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -9699,15 +10229,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -9717,15 +10247,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -9735,15 +10265,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -9753,15 +10283,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -9771,15 +10301,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9789,15 +10319,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9807,15 +10337,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9825,15 +10355,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9843,15 +10373,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9861,15 +10391,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9879,15 +10409,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9897,15 +10427,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9915,15 +10445,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -9933,15 +10463,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -9951,15 +10481,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -9969,15 +10499,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -9987,15 +10517,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -10005,15 +10535,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -10023,15 +10553,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -10041,15 +10571,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -10059,15 +10589,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10077,15 +10607,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10095,15 +10625,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10113,15 +10643,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10131,15 +10661,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10149,15 +10679,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10167,15 +10697,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10185,15 +10715,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10203,15 +10733,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10221,15 +10751,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10239,15 +10769,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10257,15 +10787,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10275,15 +10805,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10293,15 +10823,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10311,15 +10841,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10329,15 +10859,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10347,15 +10877,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10365,15 +10895,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10383,15 +10913,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10401,15 +10931,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10419,15 +10949,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10437,15 +10967,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10455,15 +10985,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10473,15 +11003,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10491,15 +11021,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10509,15 +11039,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10527,15 +11057,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10545,15 +11075,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10563,15 +11093,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10581,15 +11111,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10599,15 +11129,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10617,15 +11147,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10635,15 +11165,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10653,15 +11183,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10671,15 +11201,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10689,15 +11219,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10707,15 +11237,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10725,15 +11255,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10743,15 +11273,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10761,15 +11291,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10779,15 +11309,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10797,15 +11327,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10815,15 +11345,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10833,15 +11363,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10851,15 +11381,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10869,15 +11399,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10887,15 +11417,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10905,15 +11435,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10923,15 +11453,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -10941,15 +11471,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -10959,15 +11489,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -10977,15 +11507,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -10995,15 +11525,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -11013,15 +11543,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -11031,15 +11561,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -11049,15 +11579,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -11067,15 +11597,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11085,15 +11615,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11103,15 +11633,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11121,15 +11651,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11139,15 +11669,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11157,15 +11687,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11175,15 +11705,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11193,15 +11723,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11211,15 +11741,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11229,15 +11759,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11247,15 +11777,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11265,15 +11795,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11283,15 +11813,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11301,15 +11831,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11319,15 +11849,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11337,15 +11867,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11355,15 +11885,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11373,15 +11903,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11391,15 +11921,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11409,15 +11939,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11427,15 +11957,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11445,15 +11975,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11463,15 +11993,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11481,15 +12011,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11499,15 +12029,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11517,15 +12047,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11535,15 +12065,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11553,15 +12083,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11571,15 +12101,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11589,15 +12119,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11607,15 +12137,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11625,15 +12155,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11643,15 +12173,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11661,15 +12191,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11679,15 +12209,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11697,15 +12227,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11715,15 +12245,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11733,15 +12263,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11751,15 +12281,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11769,15 +12299,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11787,15 +12317,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -11805,15 +12335,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -11823,15 +12353,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -11841,15 +12371,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -11859,15 +12389,15 @@ LINE
   8
 0
  10
-540.808556069723
+561.8550614105758
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-540.808556069723
+561.8550614105758
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -11877,15 +12407,15 @@ LINE
   8
 0
  10
-540.808556069723
+561.8550614105758
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-543.8085560697231
+564.8550614105757
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -11895,15 +12425,15 @@ LINE
   8
 0
  10
-543.8085560697231
+564.8550614105757
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-543.8085560697231
+564.8550614105757
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -11913,15 +12443,15 @@ LINE
   8
 0
  10
-543.8085560697231
+564.8550614105757
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-540.808556069723
+561.8550614105758
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -11931,15 +12461,15 @@ LINE
   8
 0
  10
-536.558556069723
+557.6050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -11949,15 +12479,15 @@ LINE
   8
 0
  10
-528.0585560697231
+549.1050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -11967,15 +12497,15 @@ LINE
   8
 0
  10
-528.0585560697231
+549.1050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -11985,15 +12515,15 @@ LINE
   8
 0
  10
-536.558556069723
+557.6050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -12003,15 +12533,15 @@ LINE
   8
 0
  10
-528.0585560697231
+549.1050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -12021,15 +12551,15 @@ LINE
   8
 0
  10
-536.558556069723
+557.6050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -12039,15 +12569,15 @@ LINE
   8
 0
  10
-536.558556069723
+557.6050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -12057,15 +12587,15 @@ LINE
   8
 0
  10
-528.0585560697231
+549.1050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -12075,15 +12605,15 @@ LINE
   8
 0
  10
-512.808556069723
+533.8550614105758
  20
-207.09090909090912
+158.59090909090912
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-207.09090909090912
+158.59090909090912
  31
 0.0
   0
@@ -12093,15 +12623,15 @@ LINE
   8
 0
  10
-517.808556069723
+538.8550614105758
  20
-207.09090909090912
+158.59090909090912
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-218.1818181818182
+169.68181818181822
  31
 0.0
   0
@@ -12111,15 +12641,15 @@ LINE
   8
 0
  10
-517.808556069723
+538.8550614105758
  20
-218.1818181818182
+169.68181818181822
  30
 0.0
  11
-512.808556069723
+533.8550614105758
  21
-218.1818181818182
+169.68181818181822
  31
 0.0
   0
@@ -12129,15 +12659,15 @@ LINE
   8
 0
  10
-512.808556069723
+533.8550614105758
  20
-234.81818181818184
+186.31818181818184
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-234.81818181818184
+186.31818181818184
  31
 0.0
   0
@@ -12147,15 +12677,15 @@ LINE
   8
 0
  10
-517.808556069723
+538.8550614105758
  20
-234.81818181818184
+186.31818181818184
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-245.90909090909093
+197.40909090909093
  31
 0.0
   0
@@ -12165,15 +12695,15 @@ LINE
   8
 0
  10
-517.808556069723
+538.8550614105758
  20
-245.90909090909093
+197.40909090909093
  30
 0.0
  11
-512.808556069723
+533.8550614105758
  21
-245.90909090909093
+197.40909090909093
  31
 0.0
   0
@@ -12183,15 +12713,15 @@ LINE
   8
 0
  10
-538.0585560697231
+559.1050614105758
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-541.5585560697231
+562.6050614105757
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -12201,15 +12731,15 @@ LINE
   8
 0
  10
-541.5585560697231
+562.6050614105757
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-541.5585560697231
+562.6050614105757
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
@@ -12219,15 +12749,15 @@ LINE
   8
 0
  10
-541.5585560697231
+562.6050614105757
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-538.0585560697231
+559.1050614105758
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
index e041b01a0d147f953a02f0c409543a93677e64ba..5b05bff0cf96e693866a2e1e5954238982b69e52 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
@@ -1,626 +1,655 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="402.000000mm" version="1.1" viewBox="0.000000 0.000000 688.308556 402.000000" width="688.308556mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="480.500000mm" version="1.1" viewBox="0.000000 0.000000 709.355061 480.500000" width="709.355061mm">
   <defs/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="280.00000000000006" y1="70.00000000000001" y2="298.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="190.00000000000003" y1="70.00000000000001" y2="298.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="235.00000000000003" x2="190.00000000000003" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="235.00000000000003" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="260.0" x2="190.00000000000003" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
-  <line stroke="#000000" x1="235.00000000000003" x2="260.0" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="190.00000000000003" y1="70.0" y2="-2.8421709430404014e-14"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="120.00000000000003" y1="70.0" y2="-2.8421709430404014e-14"/>
-  <line stroke="#000000" x1="190.00000000000003" x2="120.00000000000003" y1="-2.8421709430404014e-14" y2="-2.8421709430404014e-14"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="120.00000000000001" x2="120.00000000000001" y1="70.0" y2="0.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="120.00000000000001" y1="70.00000000000001" y2="70.0"/>
-  <line stroke="#000000" x1="96.66666666666666" x2="120.00000000000001" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="96.66666666666669" x2="96.66666666666666" y1="0.0" y2="70.0"/>
-  <line stroke="#000000" x1="120.00000000000003" x2="96.66666666666669" y1="0.0" y2="0.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="120.0" x2="190.00000000000003" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="119.99999999999999" x2="190.00000000000003" y1="368.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="119.99999999999999" x2="120.0" y1="368.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="119.99999999999999" x2="190.0" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.0" x2="190.00000000000003" y1="368.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="259.99999999999994" x2="235.0" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="190.0" x2="259.99999999999994" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.00000000000003" x2="235.00000000000003" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="235.00000000000003" x2="280.00000000000006" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="210.00000000000003" x2="280.00000000000006" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="235.0" x2="210.00000000000003" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="280.00000000000006" y1="298.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="350.0" y1="298.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="280.00000000000006" x2="350.0" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.0" x2="350.0" y1="298.0000000000001" y2="368.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000006" x2="350.0" y1="298.00000000000006" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="373.3333333333333" x2="350.0" y1="298.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="373.33333333333326" x2="373.3333333333333" y1="368.00000000000006" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="349.99999999999994" x2="373.33333333333326" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.00000000000006" x2="280.0000000000001" y1="70.0" y2="69.99999999999997"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.00000000000006" x2="280.0000000000001" y1="-2.8421709430404014e-14" y2="69.99999999999996"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.00000000000006" x2="350.00000000000006" y1="-2.8421709430404014e-14" y2="69.99999999999999"/>
-  <line stroke="#000000" x1="350.00000000000006" x2="280.00000000000017" y1="-2.8421709430404014e-14" y2="-5.684341886080803e-14"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="280.00000000000017" x2="280.0000000000001" y1="-5.684341886080803e-14" y2="69.99999999999997"/>
-  <line stroke="#000000" x1="210.0000000000001" x2="235.00000000000009" y1="-1.1368683772161605e-13" y2="-8.526512829121203e-14"/>
-  <line stroke="#000000" x1="280.0000000000001" x2="210.0000000000001" y1="-5.684341886080803e-14" y2="-1.1368683772161605e-13"/>
-  <line stroke="#000000" x1="373.33333333333337" x2="350.00000000000006" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="373.33333333333337" x2="373.33333333333337" y1="70.00000000000003" y2="0.0"/>
-  <line stroke="#000000" x1="350.00000000000006" x2="373.33333333333337" y1="70.00000000000001" y2="70.00000000000003"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="298.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="350.00000000000006" x2="350.00000000000006" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="350.0" x2="350.00000000000006" y1="131.0" y2="70.0"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="141.0" y2="131.0"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="238.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="238.00000000000003" y2="238.00000000000003"/>
-  <line stroke="#000000" x1="350.00000000000006" x2="350.00000000000006" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="350.0" y1="141.0" y2="141.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.0" x2="384.00000000000006" y1="165.00000000000003" y2="165.00000000000006"/>
-  <line stroke="#000000" x1="420.00000000000006" x2="384.00000000000006" y1="141.00000000000003" y2="141.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="420.00000000000006" x2="420.00000000000006" y1="141.00000000000003" y2="165.00000000000006"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="420.00000000000006" y1="165.00000000000006" y2="165.00000000000006"/>
-  <line stroke="#000000" x1="420.00000000000006" x2="465.00000000000006" y1="165.00000000000006" y2="165.00000000000009"/>
-  <line stroke="#000000" x1="465.00000000000006" x2="420.00000000000006" y1="141.00000000000006" y2="141.00000000000003"/>
-  <line stroke="#000000" x1="465.00000000000006" x2="465.00000000000006" y1="165.00000000000009" y2="141.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="165.00000000000003" y2="185.00000000000003"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="185.00000000000006" y2="165.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.0" x2="384.00000000000006" y1="185.00000000000003" y2="185.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="185.00000000000003" y2="209.00000000000003"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="209.00000000000006" y2="185.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="350.0" x2="384.00000000000006" y1="209.00000000000003" y2="209.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="209.00000000000006" y2="229.00000000000006"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="229.00000000000006" y2="209.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="384.00000000000006" x2="350.0" y1="229.00000000000006" y2="229.00000000000006"/>
-  <line stroke="#000000" x1="384.00000000000006" x2="384.00000000000006" y1="239.00000000000006" y2="229.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="384.00000000000006" y1="239.00000000000006" y2="239.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="350.0" y1="229.00000000000006" y2="239.00000000000006"/>
-  <line stroke="#000000" x1="350.0" x2="411.65427803486153" y1="298.00000000000006" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="411.65427803486153" x2="350.0" y1="238.00000000000009" y2="238.00000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="411.65427803486153" x2="411.65427803486153" y1="238.00000000000009" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="438.65427803486153" x2="411.65427803486153" y1="238.00000000000009" y2="238.00000000000009"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="438.65427803486153" x2="438.65427803486153" y1="298.0000000000001" y2="238.00000000000009"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="411.65427803486153" x2="438.65427803486153" y1="298.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#000000" x1="500.30855606972295" x2="438.65427803486153" y1="238.0000000000001" y2="238.00000000000009"/>
-  <line stroke="#000000" x1="500.30855606972295" x2="500.30855606972295" y1="298.00000000000017" y2="238.0000000000001"/>
-  <line stroke="#000000" x1="438.6542780348615" x2="500.30855606972295" y1="298.0000000000001" y2="298.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348615" x2="411.6542780348615" y1="298.0000000000001" y2="315.0000000000001"/>
-  <line stroke="#000000" x1="438.6542780348615" x2="438.6542780348615" y1="315.00000000000017" y2="298.0000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="411.6542780348615" x2="438.6542780348615" y1="315.0000000000001" y2="315.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348615" x2="411.6542780348615" y1="315.0000000000001" y2="375.00000000000017"/>
-  <line stroke="#000000" x1="438.6542780348615" x2="438.6542780348615" y1="375.00000000000017" y2="315.00000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="411.6542780348615" x2="438.6542780348615" y1="375.00000000000017" y2="375.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348614" x2="411.6542780348614" y1="375.00000000000017" y2="392.00000000000017"/>
-  <line stroke="#000000" x1="438.65427803486136" x2="438.65427803486136" y1="392.00000000000017" y2="375.00000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="438.65427803486136" x2="411.6542780348614" y1="392.00000000000017" y2="392.00000000000017"/>
-  <line stroke="#000000" x1="438.65427803486136" x2="438.65427803486136" y1="402.00000000000017" y2="392.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348614" x2="438.65427803486136" y1="402.00000000000017" y2="402.00000000000017"/>
-  <line stroke="#000000" x1="411.6542780348614" x2="411.6542780348614" y1="392.00000000000017" y2="402.00000000000017"/>
-  <line stroke="#000000" x1="96.66666666666666" x2="120.0" y1="368.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="96.66666666666666" x2="96.66666666666666" y1="298.00000000000006" y2="368.00000000000006"/>
-  <line stroke="#000000" x1="120.0" x2="96.66666666666666" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="120.0" x2="120.0" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="110.0" x2="120.0" y1="298.00000000000006" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="110.0" x2="110.0" y1="238.00000000000003" y2="298.00000000000006"/>
-  <line stroke="#000000" x1="120.0" x2="110.0" y1="238.00000000000003" y2="238.00000000000003"/>
-  <line stroke="#000000" x1="120.0" x2="120.0" y1="165.00000000000003" y2="238.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.0" y1="131.0" y2="141.0"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="120.0" x2="120.0" y1="238.00000000000003" y2="238.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="86.00000000000001" y1="141.0" y2="141.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.00000000000001" x2="120.00000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="50.0" x2="86.00000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="50.0" y1="165.00000000000003" y2="141.0"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="50.0" y1="141.0" y2="141.0"/>
-  <line stroke="#000000" x1="50.0" x2="5.000000000000001" y1="141.0" y2="141.0"/>
-  <line stroke="#000000" x1="5.000000000000001" x2="50.0" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="0.0" x2="5.000000000000001" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="141.0" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="5.000000000000001" x2="0.0" y1="141.0" y2="141.0"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="165.00000000000003" y2="185.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="185.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.00000000000001" x2="120.00000000000001" y1="185.00000000000003" y2="185.00000000000003"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="185.00000000000003" y2="209.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="209.00000000000003" y2="185.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.00000000000001" x2="120.00000000000001" y1="209.00000000000003" y2="209.00000000000003"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="209.00000000000003" y2="229.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="229.00000000000003" y2="209.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="120.00000000000001" x2="86.00000000000001" y1="229.00000000000003" y2="229.00000000000003"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="120.00000000000001" y1="239.00000000000003" y2="229.00000000000003"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="120.00000000000001" y1="239.00000000000003" y2="239.00000000000003"/>
-  <line stroke="#000000" x1="86.00000000000001" x2="86.00000000000001" y1="229.00000000000003" y2="239.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="83.86137800081468" x2="83.86137800081468" y1="131.0" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="120.00000000000001" x2="83.86137800081468" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="83.86137800081468" x2="120.0" y1="131.0" y2="131.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="59.86137800081469" x2="59.86137800081469" y1="70.00000000000001" y2="131.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="59.86137800081469" x2="83.86137800081468" y1="70.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="23.722756001629364" x2="59.86137800081469" y1="131.0" y2="131.0"/>
-  <line stroke="#000000" x1="59.86137800081469" x2="23.722756001629364" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="13.722756001629365" x2="23.722756001629364" y1="131.0" y2="131.0"/>
-  <line stroke="#000000" x1="13.722756001629365" x2="13.722756001629365" y1="70.0" y2="131.0"/>
-  <line stroke="#000000" x1="23.722756001629364" x2="13.722756001629365" y1="70.0" y2="70.0"/>
-  <line stroke="#000000" x1="59.86137800081469" x2="59.86137800081469" y1="60.00000000000001" y2="70.00000000000001"/>
-  <line stroke="#000000" x1="83.86137800081468" x2="59.86137800081469" y1="60.00000000000001" y2="60.00000000000001"/>
-  <line stroke="#000000" x1="83.86137800081468" x2="83.86137800081468" y1="70.00000000000001" y2="60.00000000000001"/>
-  <line stroke="#000000" x1="83.86137800081468" x2="83.86137800081468" y1="141.0" y2="131.0"/>
-  <line stroke="#000000" x1="59.86137800081469" x2="83.86137800081468" y1="141.0" y2="141.0"/>
-  <line stroke="#000000" x1="59.86137800081469" x2="59.86137800081469" y1="131.0" y2="141.0"/>
-  <line stroke="#888888" x1="236.91666666666669" x2="213.08333333333334" y1="17.74999999999997" y2="17.74999999999997"/>
-  <line stroke="#888888" x1="213.08333333333334" x2="213.08333333333334" y1="17.74999999999997" y2="17.249999999999975"/>
-  <line stroke="#888888" x1="213.08333333333334" x2="236.91666666666669" y1="17.249999999999975" y2="17.249999999999975"/>
-  <line stroke="#888888" x1="236.91666666666669" x2="236.91666666666669" y1="17.249999999999975" y2="17.74999999999997"/>
-  <line stroke="#888888" x1="102.50000000000001" x2="114.1666666666667" y1="23.333333333333318" y2="23.333333333333318"/>
-  <line stroke="#888888" x1="114.1666666666667" x2="114.16666666666669" y1="23.333333333333318" y2="46.66666666666666"/>
-  <line stroke="#888888" x1="114.16666666666669" x2="102.50000000000004" y1="46.66666666666666" y2="46.66666666666666"/>
-  <line stroke="#888888" x1="213.08333333333334" x2="236.91666666666666" y1="350.25" y2="350.25"/>
-  <line stroke="#888888" x1="236.91666666666666" x2="236.91666666666666" y1="350.25" y2="350.75"/>
-  <line stroke="#888888" x1="236.91666666666666" x2="213.08333333333334" y1="350.75" y2="350.75"/>
-  <line stroke="#888888" x1="213.08333333333334" x2="213.08333333333334" y1="350.75" y2="350.25"/>
-  <line stroke="#888888" x1="233.08333333333334" x2="256.9166666666667" y1="350.25" y2="350.25"/>
-  <line stroke="#888888" x1="256.9166666666667" x2="256.9166666666667" y1="350.25" y2="350.75"/>
-  <line stroke="#888888" x1="256.9166666666667" x2="233.08333333333334" y1="350.75" y2="350.75"/>
-  <line stroke="#888888" x1="233.08333333333334" x2="233.08333333333334" y1="350.75" y2="350.25"/>
-  <line stroke="#888888" x1="367.5" x2="355.83333333333337" y1="344.6666666666668" y2="344.6666666666668"/>
-  <line stroke="#888888" x1="355.83333333333337" x2="355.83333333333337" y1="344.6666666666668" y2="321.3333333333334"/>
-  <line stroke="#888888" x1="355.83333333333337" x2="367.50000000000006" y1="321.3333333333334" y2="321.3333333333334"/>
-  <line stroke="#888888" x1="256.91666666666674" x2="233.08333333333343" y1="17.749999999999915" y2="17.74999999999989"/>
-  <line stroke="#888888" x1="233.08333333333343" x2="233.08333333333343" y1="17.74999999999989" y2="17.249999999999886"/>
-  <line stroke="#888888" x1="233.08333333333343" x2="256.91666666666674" y1="17.249999999999886" y2="17.24999999999992"/>
-  <line stroke="#888888" x1="256.91666666666674" x2="256.91666666666674" y1="17.24999999999992" y2="17.749999999999915"/>
-  <line stroke="#888888" x1="367.5000000000001" x2="355.8333333333334" y1="46.66666666666669" y2="46.66666666666666"/>
-  <line stroke="#888888" x1="355.8333333333334" x2="355.8333333333334" y1="46.66666666666666" y2="23.333333333333346"/>
-  <line stroke="#888888" x1="355.8333333333334" x2="367.50000000000006" y1="23.333333333333346" y2="23.333333333333346"/>
-  <line stroke="#888888" x1="342.2500000000001" x2="342.2500000000001" y1="92.43181818181819" y2="80.84090909090908"/>
-  <line stroke="#888888" x1="342.2500000000001" x2="342.7500000000001" y1="80.84090909090908" y2="80.84090909090908"/>
-  <line stroke="#888888" x1="342.7500000000001" x2="342.7500000000001" y1="80.84090909090908" y2="92.43181818181819"/>
-  <line stroke="#888888" x1="342.7500000000001" x2="342.2500000000001" y1="92.43181818181819" y2="92.43181818181819"/>
-  <line stroke="#888888" x1="342.25000000000006" x2="342.25000000000006" y1="120.15909090909092" y2="108.56818181818183"/>
-  <line stroke="#888888" x1="342.25000000000006" x2="342.75000000000006" y1="108.56818181818183" y2="108.56818181818183"/>
-  <line stroke="#888888" x1="342.75000000000006" x2="342.75000000000006" y1="108.56818181818183" y2="120.15909090909092"/>
-  <line stroke="#888888" x1="342.75000000000006" x2="342.25000000000006" y1="120.15909090909092" y2="120.15909090909092"/>
-  <line stroke="#888888" x1="372.9166666666667" x2="361.0833333333334" y1="148.75000000000003" y2="148.75000000000003"/>
-  <line stroke="#888888" x1="361.0833333333334" x2="361.0833333333334" y1="148.75000000000003" y2="148.25"/>
-  <line stroke="#888888" x1="361.0833333333334" x2="372.9166666666667" y1="148.25" y2="148.25"/>
-  <line stroke="#888888" x1="372.9166666666667" x2="372.9166666666667" y1="148.25" y2="148.75000000000003"/>
-  <line stroke="#888888" x1="461.00000000000006" x2="461.00000000000006" y1="157.25000000000009" y2="148.75000000000009"/>
-  <line stroke="#888888" x1="461.00000000000006" x2="461.50000000000006" y1="148.75000000000009" y2="148.75000000000009"/>
-  <line stroke="#888888" x1="461.50000000000006" x2="461.50000000000006" y1="148.75000000000009" y2="157.25000000000009"/>
-  <line stroke="#888888" x1="461.50000000000006" x2="461.00000000000006" y1="157.25000000000009" y2="157.25000000000009"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="184.00000000000003" y2="180.00000000000006"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="180.00000000000006" y2="180.00000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="373.0" y1="180.00000000000006" y2="184.00000000000003"/>
-  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="184.00000000000003" y2="184.00000000000003"/>
-  <line stroke="#888888" x1="362.50000000000006" x2="362.50000000000006" y1="172.00000000000003" y2="168.0"/>
-  <line stroke="#888888" x1="362.50000000000006" x2="371.50000000000006" y1="168.0" y2="168.00000000000003"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="371.50000000000006" y1="168.00000000000003" y2="172.00000000000006"/>
-  <line stroke="#888888" x1="371.50000000000006" x2="362.50000000000006" y1="172.00000000000006" y2="172.00000000000003"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="208.50000000000006" y2="185.50000000000006"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="185.50000000000006" y2="185.50000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="373.0" y1="185.50000000000006" y2="208.50000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="208.50000000000006" y2="208.50000000000006"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="361.00000000000006" y1="214.00000000000006" y2="210.00000000000006"/>
-  <line stroke="#888888" x1="361.00000000000006" x2="373.0" y1="210.00000000000006" y2="210.00000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="373.0" y1="210.00000000000006" y2="214.00000000000006"/>
-  <line stroke="#888888" x1="373.0" x2="361.00000000000006" y1="214.00000000000006" y2="214.00000000000006"/>
-  <line stroke="#888888" x1="361.3333333333334" x2="361.3333333333334" y1="236.50000000000003" y2="231.50000000000006"/>
-  <line stroke="#888888" x1="361.3333333333334" x2="372.6666666666667" y1="231.50000000000006" y2="231.50000000000006"/>
-  <line stroke="#888888" x1="372.6666666666667" x2="372.6666666666667" y1="231.50000000000006" y2="236.50000000000003"/>
-  <line stroke="#888888" x1="416.15427803486153" x2="416.15427803486153" y1="297.5000000000001" y2="294.5000000000001"/>
-  <line stroke="#888888" x1="416.15427803486153" x2="434.15427803486153" y1="294.5000000000001" y2="294.5000000000001"/>
-  <line stroke="#888888" x1="434.15427803486153" x2="434.15427803486153" y1="294.5000000000001" y2="297.5000000000001"/>
-  <line stroke="#888888" x1="434.15427803486153" x2="416.15427803486153" y1="297.5000000000001" y2="297.5000000000001"/>
-  <line stroke="#888888" x1="429.90427803486153" x2="420.40427803486153" y1="245.75000000000009" y2="245.75000000000009"/>
-  <line stroke="#888888" x1="420.40427803486153" x2="420.40427803486153" y1="245.75000000000009" y2="245.25000000000009"/>
-  <line stroke="#888888" x1="420.40427803486153" x2="429.90427803486153" y1="245.25000000000009" y2="245.25000000000009"/>
-  <line stroke="#888888" x1="429.90427803486153" x2="429.90427803486153" y1="245.25000000000009" y2="245.75000000000009"/>
-  <line stroke="#888888" x1="492.55855606972295" x2="492.55855606972295" y1="278.25000000000017" y2="257.75000000000017"/>
-  <line stroke="#888888" x1="492.55855606972295" x2="493.05855606972295" y1="257.75000000000017" y2="257.75000000000017"/>
-  <line stroke="#888888" x1="493.05855606972295" x2="493.05855606972295" y1="257.75000000000017" y2="278.25000000000017"/>
-  <line stroke="#888888" x1="493.05855606972295" x2="492.55855606972295" y1="278.25000000000017" y2="278.25000000000017"/>
-  <line stroke="#888888" x1="416.1542780348615" x2="416.1542780348615" y1="301.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#888888" x1="416.1542780348615" x2="434.1542780348615" y1="298.0000000000001" y2="298.0000000000001"/>
-  <line stroke="#888888" x1="434.1542780348615" x2="434.1542780348615" y1="298.0000000000001" y2="301.0000000000001"/>
-  <line stroke="#888888" x1="434.1542780348615" x2="416.1542780348615" y1="301.0000000000001" y2="301.0000000000001"/>
-  <line stroke="#888888" x1="420.6542780348614" x2="420.6542780348614" y1="399.5000000000001" y2="394.50000000000017"/>
-  <line stroke="#888888" x1="420.6542780348614" x2="429.65427803486136" y1="394.50000000000017" y2="394.50000000000017"/>
-  <line stroke="#888888" x1="429.65427803486136" x2="429.65427803486136" y1="394.50000000000017" y2="399.5000000000001"/>
-  <line stroke="#888888" x1="102.50000000000001" x2="114.16666666666667" y1="321.33333333333337" y2="321.33333333333337"/>
-  <line stroke="#888888" x1="114.16666666666667" x2="114.16666666666667" y1="321.33333333333337" y2="344.6666666666667"/>
-  <line stroke="#888888" x1="114.16666666666667" x2="102.50000000000001" y1="344.6666666666667" y2="344.6666666666667"/>
-  <line stroke="#888888" x1="112.5" x2="112.5" y1="258.0" y2="253.00000000000003"/>
-  <line stroke="#888888" x1="112.5" x2="117.5" y1="253.00000000000003" y2="258.0"/>
-  <line stroke="#888888" x1="117.5" x2="117.5" y1="258.0" y2="278.0"/>
-  <line stroke="#888888" x1="117.5" x2="112.5" y1="278.0" y2="283.0"/>
-  <line stroke="#888888" x1="112.5" x2="112.5" y1="283.0" y2="278.0"/>
-  <line stroke="#888888" x1="108.91666666666669" x2="97.08333333333336" y1="148.75000000000003" y2="148.75000000000003"/>
-  <line stroke="#888888" x1="97.08333333333336" x2="97.08333333333336" y1="148.75000000000003" y2="148.25"/>
-  <line stroke="#888888" x1="97.08333333333336" x2="108.91666666666669" y1="148.25" y2="148.25"/>
-  <line stroke="#888888" x1="108.91666666666669" x2="108.91666666666669" y1="148.25" y2="148.75000000000003"/>
-  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="149.00000000000003" y2="146.50000000000003"/>
-  <line stroke="#888888" x1="1.2500000000000002" x2="3.7500000000000004" y1="146.50000000000003" y2="149.00000000000003"/>
-  <line stroke="#888888" x1="3.7500000000000004" x2="3.7500000000000004" y1="149.00000000000003" y2="157.0"/>
-  <line stroke="#888888" x1="3.7500000000000004" x2="1.2500000000000002" y1="157.0" y2="159.5"/>
-  <line stroke="#888888" x1="1.2500000000000002" x2="1.2500000000000002" y1="159.5" y2="157.0"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="184.00000000000003" y2="180.0"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="180.0" y2="180.0"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="180.0" y2="184.00000000000003"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="184.00000000000003" y2="184.00000000000003"/>
-  <line stroke="#888888" x1="98.50000000000001" x2="98.50000000000001" y1="172.00000000000003" y2="168.0"/>
-  <line stroke="#888888" x1="98.50000000000001" x2="107.50000000000001" y1="168.0" y2="168.0"/>
-  <line stroke="#888888" x1="107.50000000000001" x2="107.50000000000001" y1="168.0" y2="172.00000000000003"/>
-  <line stroke="#888888" x1="107.50000000000001" x2="98.50000000000001" y1="172.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="208.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="185.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="185.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="214.0" y2="210.00000000000003"/>
-  <line stroke="#888888" x1="97.00000000000001" x2="109.00000000000001" y1="210.00000000000003" y2="210.00000000000003"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="109.00000000000001" y1="210.00000000000003" y2="214.0"/>
-  <line stroke="#888888" x1="109.00000000000001" x2="97.00000000000001" y1="214.0" y2="214.0"/>
-  <line stroke="#888888" x1="97.33333333333336" x2="97.33333333333336" y1="236.50000000000003" y2="231.50000000000003"/>
-  <line stroke="#888888" x1="97.33333333333336" x2="108.66666666666669" y1="231.50000000000003" y2="231.50000000000003"/>
-  <line stroke="#888888" x1="108.66666666666669" x2="108.66666666666669" y1="231.50000000000003" y2="236.50000000000003"/>
-  <line stroke="#888888" x1="65.36137800081468" x2="65.36137800081468" y1="113.00000000000001" y2="102.00000000000001"/>
-  <line stroke="#888888" x1="65.36137800081468" x2="78.36137800081468" y1="102.00000000000001" y2="102.00000000000001"/>
-  <line stroke="#888888" x1="78.36137800081468" x2="78.36137800081468" y1="102.00000000000001" y2="113.00000000000001"/>
-  <line stroke="#888888" x1="78.36137800081468" x2="65.36137800081468" y1="113.00000000000001" y2="113.00000000000001"/>
-  <line stroke="#888888" x1="66.8613780008147" x2="66.8613780008147" y1="81.50000000000001" y2="75.50000000000001"/>
-  <line stroke="#888888" x1="66.8613780008147" x2="76.8613780008147" y1="75.50000000000001" y2="75.50000000000001"/>
-  <line stroke="#888888" x1="76.8613780008147" x2="76.8613780008147" y1="75.50000000000001" y2="81.50000000000001"/>
-  <line stroke="#888888" x1="76.8613780008147" x2="66.8613780008147" y1="81.50000000000001" y2="81.50000000000001"/>
-  <line stroke="#888888" x1="16.222756001629364" x2="21.222756001629367" y1="81.0909090909091" y2="81.0909090909091"/>
-  <line stroke="#888888" x1="21.222756001629367" x2="21.222756001629367" y1="81.0909090909091" y2="92.18181818181819"/>
-  <line stroke="#888888" x1="21.222756001629367" x2="16.222756001629364" y1="92.18181818181819" y2="92.18181818181819"/>
-  <line stroke="#888888" x1="16.222756001629364" x2="21.222756001629367" y1="108.81818181818183" y2="108.81818181818183"/>
-  <line stroke="#888888" x1="21.222756001629367" x2="21.222756001629367" y1="108.81818181818183" y2="119.90909090909092"/>
-  <line stroke="#888888" x1="21.222756001629367" x2="16.222756001629364" y1="119.90909090909092" y2="119.90909090909092"/>
-  <line stroke="#888888" x1="75.86137800081468" x2="75.86137800081468" y1="62.50000000000001" y2="67.50000000000001"/>
-  <line stroke="#888888" x1="75.86137800081468" x2="67.86137800081468" y1="67.50000000000001" y2="67.50000000000001"/>
-  <line stroke="#888888" x1="67.86137800081468" x2="67.86137800081468" y1="67.50000000000001" y2="62.50000000000001"/>
-  <line stroke="#888888" x1="67.86137800081468" x2="67.86137800081468" y1="138.5" y2="133.5"/>
-  <line stroke="#888888" x1="67.86137800081468" x2="75.86137800081468" y1="133.5" y2="133.5"/>
-  <line stroke="#888888" x1="75.86137800081468" x2="75.86137800081468" y1="133.5" y2="138.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.3085560697231" x2="604.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.308556069723" x2="604.308556069723" y1="172.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.308556069723" x2="543.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="543.3085560697231" x2="543.3085560697231" y1="196.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#000000" x1="543.3085560697231" x2="543.3085560697231" y1="165.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#000000" x1="603.308556069723" x2="543.3085560697231" y1="165.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="603.308556069723" x2="603.308556069723" y1="172.00000000000003" y2="165.00000000000003"/>
-  <line stroke="#000000" x1="611.308556069723" x2="604.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#000000" x1="611.308556069723" x2="611.308556069723" y1="196.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#000000" x1="604.308556069723" x2="611.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.308556069723" x2="604.308556069723" y1="196.00000000000003" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="544.3085560697231" x2="604.308556069723" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="544.3085560697231" x2="544.3085560697231" y1="196.00000000000003" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="628.3085560697231" x2="604.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="628.3085560697231" x2="628.3085560697231" y1="196.00000000000003" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="604.308556069723" x2="628.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="688.3085560697231" x2="628.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="688.3085560697231" x2="688.3085560697231" y1="257.00000000000006" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="628.3085560697231" x2="688.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="544.3085560697231" x2="520.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="520.3085560697231" x2="544.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="520.3085560697231" x2="520.3085560697231" y1="257.00000000000006" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="510.308556069723" x2="520.3085560697231" y1="257.00000000000006" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="510.308556069723" x2="510.308556069723" y1="196.00000000000003" y2="257.00000000000006"/>
-  <line stroke="#000000" x1="520.3085560697231" x2="510.308556069723" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="536.308556069723" x2="543.3085560697231" y1="196.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="536.308556069723" x2="536.308556069723" y1="172.00000000000003" y2="196.00000000000003"/>
-  <line stroke="#000000" x1="543.3085560697231" x2="536.308556069723" y1="172.00000000000003" y2="172.00000000000003"/>
-  <line stroke="#888888" x1="592.3994651606322" x2="595.8994651606321" y1="166.75000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="595.8994651606321" x2="592.3994651606322" y1="166.75000000000003" y2="170.25000000000003"/>
-  <line stroke="#888888" x1="592.3994651606322" x2="581.4903742515411" y1="170.25000000000003" y2="170.25000000000003"/>
-  <line stroke="#888888" x1="581.4903742515411" x2="577.9903742515413" y1="170.25000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="577.9903742515413" x2="581.4903742515411" y1="166.75000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="565.1267378879049" x2="568.6267378879048" y1="166.75000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="568.6267378879048" x2="565.1267378879049" y1="166.75000000000003" y2="170.25000000000003"/>
-  <line stroke="#888888" x1="565.1267378879049" x2="554.2176469788138" y1="170.25000000000003" y2="170.25000000000003"/>
-  <line stroke="#888888" x1="554.2176469788138" x2="550.717646978814" y1="170.25000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="550.717646978814" x2="554.2176469788138" y1="166.75000000000003" y2="166.75000000000003"/>
-  <line stroke="#888888" x1="609.5585560697231" x2="606.058556069723" y1="188.00000000000003" y2="188.00000000000003"/>
-  <line stroke="#888888" x1="606.058556069723" x2="606.058556069723" y1="188.00000000000003" y2="180.0"/>
-  <line stroke="#888888" x1="606.058556069723" x2="609.5585560697231" y1="180.0" y2="180.0"/>
-  <line stroke="#888888" x1="551.8085560697231" x2="551.8085560697231" y1="247.50000000000003" y2="229.50000000000003"/>
-  <line stroke="#888888" x1="551.8085560697231" x2="586.8085560697231" y1="229.50000000000003" y2="229.50000000000003"/>
-  <line stroke="#888888" x1="586.8085560697231" x2="586.8085560697231" y1="229.50000000000003" y2="247.50000000000003"/>
-  <line stroke="#888888" x1="586.8085560697231" x2="551.8085560697231" y1="247.50000000000003" y2="247.50000000000003"/>
-  <line stroke="#888888" x1="604.8085560697231" x2="604.8085560697231" y1="209.25" y2="206.25000000000003"/>
-  <line stroke="#888888" x1="604.8085560697231" x2="607.8085560697231" y1="206.25000000000003" y2="206.25000000000003"/>
-  <line stroke="#888888" x1="607.8085560697231" x2="607.8085560697231" y1="206.25000000000003" y2="209.25"/>
-  <line stroke="#888888" x1="607.8085560697231" x2="604.8085560697231" y1="209.25" y2="209.25"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="208.25000000000003" y2="207.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="207.25000000000003" y2="207.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="207.25000000000003" y2="208.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="208.25000000000003" y2="208.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="220.75" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="219.75000000000003" y2="220.75"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="220.75" y2="220.75"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="220.75" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="219.75000000000003" y2="220.75"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="220.75" y2="220.75"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="230.75000000000003" y2="229.75"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="229.75" y2="229.75"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="229.75" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="230.75000000000003" y2="229.75"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="229.75" y2="229.75"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="229.75" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="625.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="625.8085560697231" x2="626.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="626.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="626.8085560697231" x2="625.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="605.8085560697231" y1="245.75000000000003" y2="244.75000000000003"/>
-  <line stroke="#888888" x1="605.8085560697231" x2="606.8085560697231" y1="244.75000000000003" y2="244.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="606.8085560697231" y1="244.75000000000003" y2="245.75000000000003"/>
-  <line stroke="#888888" x1="606.8085560697231" x2="605.8085560697231" y1="245.75000000000003" y2="245.75000000000003"/>
-  <line stroke="#888888" x1="624.8085560697231" x2="624.8085560697231" y1="246.75000000000003" y2="243.75000000000003"/>
-  <line stroke="#888888" x1="624.8085560697231" x2="627.8085560697231" y1="243.75000000000003" y2="243.75000000000003"/>
-  <line stroke="#888888" x1="627.8085560697231" x2="627.8085560697231" y1="243.75000000000003" y2="246.75000000000003"/>
-  <line stroke="#888888" x1="627.8085560697231" x2="624.8085560697231" y1="246.75000000000003" y2="246.75000000000003"/>
-  <line stroke="#888888" x1="620.5585560697231" x2="612.0585560697231" y1="203.75000000000003" y2="203.75000000000003"/>
-  <line stroke="#888888" x1="612.0585560697231" x2="612.0585560697231" y1="203.75000000000003" y2="203.25000000000003"/>
-  <line stroke="#888888" x1="612.0585560697231" x2="620.5585560697231" y1="203.25000000000003" y2="203.25000000000003"/>
-  <line stroke="#888888" x1="620.5585560697231" x2="620.5585560697231" y1="203.25000000000003" y2="203.75000000000003"/>
-  <line stroke="#888888" x1="612.0585560697231" x2="620.5585560697231" y1="251.50000000000003" y2="251.50000000000003"/>
-  <line stroke="#888888" x1="620.5585560697231" x2="620.5585560697231" y1="251.50000000000003" y2="252.00000000000003"/>
-  <line stroke="#888888" x1="620.5585560697231" x2="612.0585560697231" y1="252.00000000000003" y2="252.00000000000003"/>
-  <line stroke="#888888" x1="612.0585560697231" x2="612.0585560697231" y1="252.00000000000003" y2="251.50000000000003"/>
-  <line stroke="#888888" x1="643.3085560697231" x2="643.3085560697231" y1="247.00000000000003" y2="234.00000000000003"/>
-  <line stroke="#888888" x1="643.3085560697231" x2="673.3085560697231" y1="234.00000000000003" y2="234.00000000000003"/>
-  <line stroke="#888888" x1="673.3085560697231" x2="673.3085560697231" y1="234.00000000000003" y2="247.00000000000003"/>
-  <line stroke="#888888" x1="673.3085560697231" x2="643.3085560697231" y1="247.00000000000003" y2="247.00000000000003"/>
-  <line stroke="#888888" x1="650.3767378879048" x2="638.967646978814" y1="201.50000000000003" y2="201.50000000000003"/>
-  <line stroke="#888888" x1="638.967646978814" x2="638.967646978814" y1="201.50000000000003" y2="201.00000000000003"/>
-  <line stroke="#888888" x1="638.967646978814" x2="650.3767378879048" y1="201.00000000000003" y2="201.00000000000003"/>
-  <line stroke="#888888" x1="650.3767378879048" x2="650.3767378879048" y1="201.00000000000003" y2="201.50000000000003"/>
-  <line stroke="#888888" x1="677.6494651606322" x2="666.2403742515412" y1="201.50000000000003" y2="201.50000000000003"/>
-  <line stroke="#888888" x1="666.2403742515412" x2="666.2403742515412" y1="201.50000000000003" y2="201.00000000000003"/>
-  <line stroke="#888888" x1="666.2403742515412" x2="677.6494651606322" y1="201.00000000000003" y2="201.00000000000003"/>
-  <line stroke="#888888" x1="677.6494651606322" x2="677.6494651606322" y1="201.00000000000003" y2="201.50000000000003"/>
-  <line stroke="#888888" x1="680.558556069723" x2="680.558556069723" y1="218.43181818181822" y2="206.84090909090912"/>
-  <line stroke="#888888" x1="680.558556069723" x2="681.058556069723" y1="206.84090909090912" y2="206.84090909090912"/>
-  <line stroke="#888888" x1="681.058556069723" x2="681.058556069723" y1="206.84090909090912" y2="218.43181818181822"/>
-  <line stroke="#888888" x1="681.058556069723" x2="680.558556069723" y1="218.43181818181822" y2="218.43181818181822"/>
-  <line stroke="#888888" x1="680.558556069723" x2="680.558556069723" y1="246.15909090909093" y2="234.5681818181818"/>
-  <line stroke="#888888" x1="680.558556069723" x2="681.058556069723" y1="234.5681818181818" y2="234.5681818181818"/>
-  <line stroke="#888888" x1="681.058556069723" x2="681.058556069723" y1="234.5681818181818" y2="246.15909090909093"/>
-  <line stroke="#888888" x1="681.058556069723" x2="680.558556069723" y1="246.15909090909093" y2="246.15909090909093"/>
-  <line stroke="#888888" x1="520.8085560697231" x2="520.8085560697231" y1="209.25" y2="206.25000000000003"/>
-  <line stroke="#888888" x1="520.8085560697231" x2="523.8085560697231" y1="206.25000000000003" y2="206.25000000000003"/>
-  <line stroke="#888888" x1="523.8085560697231" x2="523.8085560697231" y1="206.25000000000003" y2="209.25"/>
-  <line stroke="#888888" x1="523.8085560697231" x2="520.8085560697231" y1="209.25" y2="209.25"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="208.25000000000003" y2="207.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="207.25000000000003" y2="207.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="207.25000000000003" y2="208.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="208.25000000000003" y2="208.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="210.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="209.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="209.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="210.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="210.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="209.75000000000003" y2="209.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="209.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="210.75000000000003" y2="210.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="213.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="212.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="212.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="213.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="213.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="212.25000000000003" y2="212.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="212.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="213.25000000000003" y2="213.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="215.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="214.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="214.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="215.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="215.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="214.75000000000003" y2="214.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="214.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="215.75000000000003" y2="215.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="218.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="217.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="217.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="218.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="218.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="217.25000000000003" y2="217.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="217.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="218.25000000000003" y2="218.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="220.75" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="219.75000000000003" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="219.75000000000003" y2="220.75"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="220.75" y2="220.75"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="220.75" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="219.75000000000003" y2="219.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="219.75000000000003" y2="220.75"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="220.75" y2="220.75"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="223.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="222.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="222.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="223.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="223.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="222.25000000000003" y2="222.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="222.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="223.25000000000003" y2="223.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="225.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="224.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="224.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="225.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="225.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="224.75000000000003" y2="224.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="224.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="225.75000000000003" y2="225.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="228.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="227.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="227.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="228.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="228.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="227.25000000000003" y2="227.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="227.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="228.25000000000003" y2="228.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="230.75000000000003" y2="229.75"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="229.75" y2="229.75"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="229.75" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="230.75000000000003" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="230.75000000000003" y2="229.75"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="229.75" y2="229.75"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="229.75" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="230.75000000000003" y2="230.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="233.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="232.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="232.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="233.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="233.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="232.25000000000003" y2="232.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="232.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="233.25000000000003" y2="233.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="235.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="234.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="234.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="235.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="235.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="234.75000000000003" y2="234.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="234.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="235.75000000000003" y2="235.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="238.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="237.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="237.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="238.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="238.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="237.25000000000003" y2="237.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="237.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="238.25000000000003" y2="238.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="240.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="239.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="239.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="240.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="240.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="239.75000000000003" y2="239.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="239.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="240.75000000000003" y2="240.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="243.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="242.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="242.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="243.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="541.8085560697231" y1="243.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="541.8085560697231" x2="542.8085560697231" y1="242.25000000000003" y2="242.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="542.8085560697231" y1="242.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="542.8085560697231" x2="541.8085560697231" y1="243.25000000000003" y2="243.25000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="521.808556069723" y1="245.75000000000003" y2="244.75000000000003"/>
-  <line stroke="#888888" x1="521.808556069723" x2="522.808556069723" y1="244.75000000000003" y2="244.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="522.808556069723" y1="244.75000000000003" y2="245.75000000000003"/>
-  <line stroke="#888888" x1="522.808556069723" x2="521.808556069723" y1="245.75000000000003" y2="245.75000000000003"/>
-  <line stroke="#888888" x1="540.808556069723" x2="540.808556069723" y1="246.75000000000003" y2="243.75000000000003"/>
-  <line stroke="#888888" x1="540.808556069723" x2="543.8085560697231" y1="243.75000000000003" y2="243.75000000000003"/>
-  <line stroke="#888888" x1="543.8085560697231" x2="543.8085560697231" y1="243.75000000000003" y2="246.75000000000003"/>
-  <line stroke="#888888" x1="543.8085560697231" x2="540.808556069723" y1="246.75000000000003" y2="246.75000000000003"/>
-  <line stroke="#888888" x1="536.558556069723" x2="528.0585560697231" y1="203.75000000000003" y2="203.75000000000003"/>
-  <line stroke="#888888" x1="528.0585560697231" x2="528.0585560697231" y1="203.75000000000003" y2="203.25000000000003"/>
-  <line stroke="#888888" x1="528.0585560697231" x2="536.558556069723" y1="203.25000000000003" y2="203.25000000000003"/>
-  <line stroke="#888888" x1="536.558556069723" x2="536.558556069723" y1="203.25000000000003" y2="203.75000000000003"/>
-  <line stroke="#888888" x1="528.0585560697231" x2="536.558556069723" y1="251.50000000000003" y2="251.50000000000003"/>
-  <line stroke="#888888" x1="536.558556069723" x2="536.558556069723" y1="251.50000000000003" y2="252.00000000000003"/>
-  <line stroke="#888888" x1="536.558556069723" x2="528.0585560697231" y1="252.00000000000003" y2="252.00000000000003"/>
-  <line stroke="#888888" x1="528.0585560697231" x2="528.0585560697231" y1="252.00000000000003" y2="251.50000000000003"/>
-  <line stroke="#888888" x1="512.808556069723" x2="517.808556069723" y1="207.09090909090912" y2="207.09090909090912"/>
-  <line stroke="#888888" x1="517.808556069723" x2="517.808556069723" y1="207.09090909090912" y2="218.1818181818182"/>
-  <line stroke="#888888" x1="517.808556069723" x2="512.808556069723" y1="218.1818181818182" y2="218.1818181818182"/>
-  <line stroke="#888888" x1="512.808556069723" x2="517.808556069723" y1="234.81818181818184" y2="234.81818181818184"/>
-  <line stroke="#888888" x1="517.808556069723" x2="517.808556069723" y1="234.81818181818184" y2="245.90909090909093"/>
-  <line stroke="#888888" x1="517.808556069723" x2="512.808556069723" y1="245.90909090909093" y2="245.90909090909093"/>
-  <line stroke="#888888" x1="538.0585560697231" x2="541.5585560697231" y1="180.0" y2="180.0"/>
-  <line stroke="#888888" x1="541.5585560697231" x2="541.5585560697231" y1="180.0" y2="188.00000000000003"/>
-  <line stroke="#888888" x1="541.5585560697231" x2="538.0585560697231" y1="188.00000000000003" y2="188.00000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="194.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="184.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.02325267042647" x2="160.02325267042647" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="65.5" y2="101.50000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.02325267042647" x2="184.02325267042647" y1="65.5" y2="65.5"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="101.50000000000001" y2="65.5"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="65.5" y2="20.5"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="20.5" y2="65.5"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="160.02325267042647" y1="15.500000000000004" y2="20.5"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="160.02325267042647" y1="15.500000000000004" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="20.5" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="160.02325267042647" x2="140.02325267042644" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="140.02325267042644" x2="160.02325267042647" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="140.02325267042644" x2="140.02325267042644" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="140.02325267042644" x2="116.02325267042646" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="116.02325267042646" x2="140.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="116.02325267042646" x2="116.02325267042646" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="116.02325267042646" x2="96.02325267042644" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="96.02325267042644" x2="116.02325267042646" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.02325267042644" x2="96.02325267042644" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="96.02325267042644" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="86.02325267042646" x2="86.02325267042646" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="96.02325267042644" x2="86.02325267042646" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.02325267042647" x2="255.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="135.50000000000003" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="99.36137800081471" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="194.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="255.02325267042647" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="39.22275600162939" y2="75.36137800081472"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="75.36137800081472" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="194.02325267042647" y1="29.222756001629396" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="194.02325267042647" y1="29.222756001629396" y2="29.222756001629396"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="39.22275600162939" y2="29.222756001629396"/>
+  <line stroke="#000000" x1="265.02325267042653" x2="255.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="265.02325267042653" x2="265.02325267042653" y1="99.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="265.02325267042653" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="194.02325267042647" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="184.02325267042647" x2="184.02325267042647" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="194.02325267042647" x2="184.02325267042647" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="86.02325267042646" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="255.02325267042647" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="307.53762348858805" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="307.53762348858805" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="255.02325267042647" x2="255.02325267042647" y1="117.99520972727949" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="307.53762348858805" x2="255.02325267042647" y1="117.99520972727949" y2="117.99520972727949"/>
+  <line stroke="#000000" x1="307.53762348858805" x2="307.53762348858805" y1="135.50000000000003" y2="117.99520972727949"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042647" x2="322.2284003443256" y1="205.50000000000003" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="322.2284003443256" x2="307.53762348858805" y1="185.91765779766357" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="336.91917720006325" x2="322.2284003443256" y1="236.33531559532716" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="341.0465053408527" x2="336.91917720006325" y1="250.50000000000003" y2="236.33531559532716"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="341.0465053408527" x2="255.02325267042647" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.0232526704265" x2="255.02325267042647" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042653" x2="255.0232526704265" y1="295.5" y2="250.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="341.0465053408528" x2="255.02325267042653" y1="250.50000000000003" y2="295.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="322.22840034432573" x2="255.0232526704265" y1="315.08234220233646" y2="295.50000000000006"/>
+  <line stroke="#000000" x1="336.9191772000633" x2="341.0465053408527" y1="264.6646844046729" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="322.22840034432573" x2="336.9191772000633" y1="315.08234220233646" y2="264.6646844046729"/>
+  <line stroke="#000000" x1="307.53762348858817" x2="322.22840034432573" y1="365.50000000000006" y2="315.0823422023364"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.53762348858817" x2="255.02325267042653" y1="365.50000000000006" y2="295.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.0232526704266" x2="255.0232526704265" y1="365.5000000000001" y2="295.5"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.53762348858817" x2="255.0232526704266" y1="365.50000000000006" y2="365.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="255.02325267042653" x2="86.02325267042642" y1="295.5" y2="295.50000000000017"/>
+  <line stroke="#000000" x1="194.02325267042656" x2="255.0232526704266" y1="365.50000000000017" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="194.02325267042656" y1="365.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="86.0232526704265" x2="86.0232526704265" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="194.02325267042656" x2="255.0232526704266" y1="365.50000000000017" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="184.02325267042656" x2="194.02325267042656" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="86.02325267042649" x2="160.02325267042656" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="86.02325267042649" x2="86.02325267042649" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="255.0232526704266" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="184.0232526704266" x2="184.02325267042656" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="160.02325267042656" x2="160.0232526704266" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="184.02325267042661" x2="184.0232526704266" y1="435.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.02325267042661" x2="160.0232526704266" y1="435.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="160.02325267042656" x2="160.0232526704266" y1="399.5000000000001" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="160.0232526704266" x2="160.02325267042661" y1="435.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="184.02325267042667" x2="184.02325267042661" y1="480.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="160.02325267042661" x2="184.02325267042667" y1="480.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="160.02325267042656" x2="140.0232526704265" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="140.02325267042653" x2="160.02325267042656" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="140.0232526704265" x2="140.02325267042653" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="140.02325267042653" x2="116.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="116.02325267042656" x2="140.02325267042656" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="116.02325267042652" x2="116.02325267042656" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="116.02325267042652" x2="96.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="96.02325267042654" x2="116.02325267042654" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="96.02325267042654" x2="96.02325267042652" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="86.02325267042654" x2="96.02325267042654" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="86.02325267042652" x2="86.02325267042654" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="96.02325267042652" x2="86.02325267042652" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704264" x2="86.02325267042649" y1="295.50000000000017" y2="365.5000000000002"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042649" x2="33.508881852264885" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704264" x2="33.508881852264885" y1="295.5000000000002" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="86.0232526704265" x2="86.02325267042649" y1="383.00479027272075" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="33.5088818522649" x2="86.0232526704265" y1="383.00479027272087" y2="383.00479027272075"/>
+  <line stroke="#000000" x1="33.508881852264885" x2="33.5088818522649" y1="365.5000000000003" y2="383.00479027272087"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704264" x2="18.81810499652724" y1="295.50000000000017" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="18.81810499652724" x2="33.508881852264885" y1="315.08234220233675" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="4.127328140789602" x2="18.81810499652724" y1="264.6646844046731" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="4.127328140789602" y1="250.50000000000028" y2="264.6646844046731"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="86.02325267042642" y1="250.50000000000028" y2="295.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042637" x2="86.02325267042642" y1="250.50000000000017" y2="295.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704263" x2="86.02325267042636" y1="205.50000000000017" y2="250.5000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="1.4210854715202007e-14" x2="86.0232526704263" y1="250.5000000000003" y2="205.50000000000014"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="18.818104996527044" x2="86.02325267042629" y1="185.91765779766385" y2="205.50000000000014"/>
+  <line stroke="#000000" x1="4.127328140789545" x2="0.0" y1="236.33531559532744" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="18.818104996527044" x2="4.127328140789545" y1="185.91765779766385" y2="236.33531559532744"/>
+  <line stroke="#000000" x1="33.50888185226453" x2="18.818104996527044" y1="135.50000000000023" y2="185.91765779766385"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.50888185226453" x2="86.02325267042629" y1="135.50000000000023" y2="205.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042616" x2="86.02325267042632" y1="135.5000000000001" y2="205.50000000000017"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.508881852264544" x2="86.02325267042616" y1="135.50000000000023" y2="135.5000000000001"/>
+  <line stroke="#000000" x1="33.50888185226451" x2="33.50888185226454" y1="117.9952097272797" y2="135.50000000000023"/>
+  <line stroke="#000000" x1="86.02325267042612" x2="33.50888185226451" y1="117.9952097272796" y2="117.9952097272797"/>
+  <line stroke="#000000" x1="86.02325267042615" x2="86.02325267042612" y1="135.5000000000001" y2="117.9952097272796"/>
+  <line stroke="#000000" x1="307.5376234885882" x2="307.53762348858817" y1="383.0047902727206" y2="365.50000000000006"/>
+  <line stroke="#000000" x1="255.02325267042661" x2="307.5376234885882" y1="383.00479027272064" y2="383.0047902727206"/>
+  <line stroke="#000000" x1="255.0232526704266" x2="255.02325267042661" y1="365.5000000000001" y2="383.00479027272064"/>
+  <line stroke="#888888" x1="232.5914344886083" x2="244.18234357951738" y1="127.75000000000001" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="244.18234357951738" x2="244.18234357951738" y1="127.75000000000001" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="244.18234357951738" x2="232.5914344886083" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="232.5914344886083" x2="232.5914344886083" y1="128.25000000000003" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="204.86416176133557" x2="216.45507085224466" y1="127.75000000000001" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="216.45507085224466" x2="216.45507085224466" y1="127.75000000000001" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="216.45507085224466" x2="204.86416176133557" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="204.86416176133557" x2="204.86416176133557" y1="128.25000000000003" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="176.27325267042647" x2="176.27325267042647" y1="124.41666666666669" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="176.27325267042647" x2="176.77325267042644" y1="112.58333333333334" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="176.77325267042644" x2="176.77325267042644" y1="112.58333333333334" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="176.77325267042644" x2="176.27325267042647" y1="124.41666666666669" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="176.02325267042647" x2="178.52325267042647" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="178.52325267042647" x2="176.02325267042647" y1="16.750000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="176.02325267042647" x2="168.02325267042644" y1="19.250000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="168.02325267042644" x2="165.52325267042644" y1="19.250000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="165.52325267042644" x2="168.02325267042644" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="141.02325267042647" x2="145.02325267042644" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="145.02325267042644" x2="145.02325267042644" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="145.02325267042644" x2="141.02325267042647" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="141.02325267042647" x2="141.02325267042647" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="153.02325267042647" x2="157.02325267042647" y1="114.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="157.02325267042647" x2="157.02325267042647" y1="114.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="157.02325267042647" x2="153.02325267042647" y1="123.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="153.02325267042647" x2="153.02325267042647" y1="123.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="116.52325267042646" x2="139.52325267042647" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="139.52325267042647" x2="139.52325267042647" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="139.52325267042647" x2="116.52325267042646" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="116.52325267042646" x2="116.52325267042646" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="111.02325267042646" x2="115.02325267042646" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="115.02325267042646" x2="115.02325267042646" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="115.02325267042646" x2="111.02325267042646" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="111.02325267042646" x2="111.02325267042646" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="88.52325267042646" x2="93.52325267042646" y1="112.83333333333336" y2="112.83333333333336"/>
+  <line stroke="#888888" x1="93.52325267042646" x2="93.52325267042646" y1="112.83333333333336" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="93.52325267042646" x2="88.52325267042646" y1="124.16666666666669" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="212.02325267042647" x2="223.02325267042647" y1="80.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="223.02325267042647" x2="223.02325267042647" y1="80.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="223.02325267042647" x2="212.02325267042647" y1="93.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="212.02325267042647" x2="212.02325267042647" y1="93.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="243.52325267042647" x2="249.52325267042647" y1="82.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="249.52325267042647" x2="249.52325267042647" y1="82.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="249.52325267042647" x2="243.52325267042647" y1="92.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="243.52325267042647" x2="243.52325267042647" y1="92.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="243.93234357951738" x2="243.93234357951738" y1="31.722756001629396" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="243.93234357951738" x2="232.8414344886083" y1="36.7227560016294" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="232.8414344886083" x2="232.8414344886083" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="216.20507085224466" x2="216.20507085224466" y1="31.722756001629396" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="216.20507085224466" x2="205.11416176133554" y1="36.7227560016294" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="205.11416176133554" x2="205.11416176133554" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="262.52325267042653" x2="257.52325267042653" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="257.52325267042653" x2="257.52325267042653" y1="91.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="257.52325267042653" x2="262.52325267042653" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="186.52325267042647" x2="191.52325267042647" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="191.52325267042647" x2="191.52325267042647" y1="83.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="191.52325267042647" x2="186.52325267042647" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="290.0328332158675" x2="290.0328332158675" y1="122.37140729545962" y2="131.12380243181985"/>
+  <line stroke="#888888" x1="290.0328332158675" x2="272.52804294314694" y1="131.12380243181985" y2="131.12380243181988"/>
+  <line stroke="#888888" x1="272.52804294314694" x2="272.52804294314694" y1="131.12380243181988" y2="122.37140729545962"/>
+  <line stroke="#888888" x1="319.2477556839554" x2="314.2109561925024" y1="223.5120791976936" y2="206.22615649603978"/>
+  <line stroke="#888888" x1="314.2109561925024" x2="314.69099296160164" y1="206.22615649603978" y2="206.08628262316594"/>
+  <line stroke="#888888" x1="314.69099296160164" x2="319.72779245305475" y1="206.08628262316594" y2="223.37220532481973"/>
+  <line stroke="#888888" x1="319.72779245305475" x2="319.2477556839554" y1="223.37220532481973" y2="223.5120791976936"/>
+  <line stroke="#888888" x1="314.21095619250247" x2="319.24775568395546" y1="294.77384350396034" y2="277.4879208023065"/>
+  <line stroke="#888888" x1="319.24775568395546" x2="319.72779245305475" y1="277.4879208023065" y2="277.6277946751803"/>
+  <line stroke="#888888" x1="319.72779245305475" x2="314.69099296160164" y1="277.6277946751803" y2="294.91371737683414"/>
+  <line stroke="#888888" x1="314.69099296160164" x2="314.21095619250247" y1="294.91371737683414" y2="294.77384350396034"/>
+  <line stroke="#888888" x1="216.45507085224477" x2="204.86416176133565" y1="373.25000000000017" y2="373.25000000000017"/>
+  <line stroke="#888888" x1="204.86416176133565" x2="204.86416176133565" y1="373.25000000000017" y2="372.7500000000001"/>
+  <line stroke="#888888" x1="204.86416176133565" x2="216.45507085224477" y1="372.7500000000001" y2="372.7500000000001"/>
+  <line stroke="#888888" x1="216.45507085224477" x2="216.45507085224477" y1="372.7500000000001" y2="373.25000000000017"/>
+  <line stroke="#888888" x1="244.1823435795175" x2="232.5914344886084" y1="373.25000000000006" y2="373.25000000000017"/>
+  <line stroke="#888888" x1="232.5914344886084" x2="232.5914344886084" y1="373.25000000000017" y2="372.7500000000001"/>
+  <line stroke="#888888" x1="232.5914344886084" x2="244.1823435795175" y1="372.7500000000001" y2="372.75000000000006"/>
+  <line stroke="#888888" x1="244.1823435795175" x2="244.1823435795175" y1="372.75000000000006" y2="373.25000000000006"/>
+  <line stroke="#888888" x1="232.5914344886084" x2="244.1823435795175" y1="357.75000000000017" y2="357.7500000000001"/>
+  <line stroke="#888888" x1="244.1823435795175" x2="244.1823435795175" y1="357.7500000000001" y2="358.2500000000001"/>
+  <line stroke="#888888" x1="244.1823435795175" x2="232.5914344886084" y1="358.2500000000001" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="232.5914344886084" x2="232.5914344886084" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="204.86416176133562" x2="216.45507085224475" y1="357.75000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="216.45507085224475" x2="216.45507085224475" y1="357.75000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="216.45507085224475" x2="204.86416176133562" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="204.86416176133562" x2="204.86416176133562" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="176.27325267042653" x2="176.27325267042653" y1="388.4166666666668" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="176.27325267042653" x2="176.77325267042653" y1="376.5833333333335" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="176.77325267042653" x2="176.77325267042653" y1="376.5833333333335" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="176.77325267042653" x2="176.27325267042653" y1="388.4166666666668" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="167.77325267042664" x2="176.27325267042661" y1="476.50000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="176.27325267042661" x2="176.27325267042661" y1="476.50000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="176.27325267042661" x2="167.77325267042664" y1="477.00000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="167.77325267042664" x2="167.77325267042664" y1="477.00000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="141.02325267042656" x2="145.02325267042653" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="145.02325267042653" x2="145.02325267042653" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="145.02325267042653" x2="141.02325267042656" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="141.02325267042656" x2="141.02325267042656" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="153.02325267042656" x2="157.02325267042656" y1="378.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="157.02325267042656" x2="157.02325267042656" y1="378.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="157.02325267042656" x2="153.02325267042656" y1="387.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="153.02325267042656" x2="153.02325267042656" y1="387.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="116.52325267042653" x2="139.52325267042656" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="139.52325267042656" x2="139.52325267042656" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="139.52325267042656" x2="116.52325267042654" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="116.52325267042654" x2="116.52325267042653" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="111.02325267042653" x2="115.02325267042653" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="115.02325267042653" x2="115.02325267042653" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="115.02325267042653" x2="111.02325267042654" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="111.02325267042654" x2="111.02325267042653" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="88.52325267042652" x2="93.5232526704265" y1="376.8333333333335" y2="376.8333333333335"/>
+  <line stroke="#888888" x1="93.5232526704265" x2="93.52325267042652" y1="376.8333333333335" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="93.52325267042652" x2="88.52325267042653" y1="388.16666666666686" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="51.01367212498543" x2="51.013672124985426" y1="378.6285927045407" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="51.013672124985426" x2="68.51846239770595" y1="369.87619756818043" y2="369.87619756818043"/>
+  <line stroke="#888888" x1="68.51846239770595" x2="68.51846239770595" y1="369.87619756818043" y2="378.6285927045407"/>
+  <line stroke="#888888" x1="21.798749656897446" x2="26.83554914835048" y1="277.4879208023067" y2="294.7738435039605"/>
+  <line stroke="#888888" x1="26.83554914835048" x2="26.3555123792512" y1="294.7738435039605" y2="294.9137173768343"/>
+  <line stroke="#888888" x1="26.3555123792512" x2="21.318712887798156" y1="294.9137173768343" y2="277.62779467518055"/>
+  <line stroke="#888888" x1="21.318712887798156" x2="21.798749656897446" y1="277.62779467518055" y2="277.4879208023067"/>
+  <line stroke="#888888" x1="26.835549148350342" x2="21.798749656897346" y1="206.22615649604003" y2="223.51207919769385"/>
+  <line stroke="#888888" x1="21.798749656897346" x2="21.31871288779806" y1="223.51207919769385" y2="223.37220532482002"/>
+  <line stroke="#888888" x1="21.31871288779806" x2="26.355512379251053" y1="223.37220532482002" y2="206.08628262316617"/>
+  <line stroke="#888888" x1="26.355512379251053" x2="26.835549148350342" y1="206.08628262316617" y2="206.22615649604003"/>
+  <line stroke="#888888" x1="68.51846239770559" x2="68.51846239770562" y1="122.37140729545976" y2="131.12380243182005"/>
+  <line stroke="#888888" x1="68.51846239770562" x2="51.01367212498507" y1="131.12380243182005" y2="131.12380243182008"/>
+  <line stroke="#888888" x1="51.01367212498507" x2="51.01367212498506" y1="131.12380243182008" y2="122.3714072954598"/>
+  <line stroke="#888888" x1="272.52804294314706" x2="272.52804294314706" y1="378.6285927045405" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="272.52804294314706" x2="290.03283321586764" y1="369.87619756818015" y2="369.87619756818015"/>
+  <line stroke="#888888" x1="290.03283321586764" x2="290.03283321586764" y1="369.87619756818015" y2="378.6285927045405"/>
+  <line stroke="#000000" x1="511.3550614105758" x2="449.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="511.3550614105758" y1="166.0" y2="166.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="449.7007833757143" x2="449.7007833757143" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="521.3550614105757" x2="511.3550614105758" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="521.3550614105757" x2="521.3550614105757" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="511.3550614105758" x2="521.3550614105757" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="449.7007833757143" y1="166.0" y2="166.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.7007833757143" x2="422.7007833757143" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="449.7007833757143" x2="422.7007833757143" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="361.0465053408529" x2="422.7007833757143" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="361.0465053408529" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="351.0465053408529" x2="361.0465053408529" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="351.0465053408529" x2="351.0465053408529" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#000000" x1="361.0465053408529" x2="351.0465053408529" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="105.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="88.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="449.7007833757143" x2="422.7007833757143" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="88.00000000000001" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="27.000000000000004" y2="88.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="449.7007833757143" x2="422.7007833757143" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="27.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="10.000000000000002" y2="27.000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.7007833757143" x2="449.7007833757143" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="422.7007833757143" x2="422.7007833757143" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="422.7007833757143" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="449.7007833757143" x2="449.7007833757143" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="518.8550614105758" x2="513.8550614105758" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="513.8550614105758" x2="513.8550614105758" y1="154.90909090909093" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="513.8550614105758" x2="518.8550614105758" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="518.8550614105758" x2="513.8550614105758" y1="127.1818181818182" y2="127.1818181818182"/>
+  <line stroke="#888888" x1="513.8550614105758" x2="513.8550614105758" y1="127.1818181818182" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="513.8550614105758" x2="518.8550614105758" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="445.2007833757143" x2="445.2007833757143" y1="102.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="445.2007833757143" x2="427.2007833757143" y1="108.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="427.2007833757143" x2="427.2007833757143" y1="108.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="427.2007833757143" x2="445.2007833757143" y1="102.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="431.4507833757143" x2="440.9507833757143" y1="158.25000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="440.9507833757143" x2="440.9507833757143" y1="158.25000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="440.9507833757143" x2="431.4507833757143" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="431.4507833757143" x2="431.4507833757143" y1="158.75000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="353.54650534085283" x2="358.54650534085283" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="358.54650534085283" x2="358.54650534085283" y1="116.09090909090911" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="358.54650534085283" x2="353.54650534085283" y1="127.18181818181822" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="353.54650534085283" x2="358.54650534085283" y1="143.81818181818184" y2="143.81818181818184"/>
+  <line stroke="#888888" x1="358.54650534085283" x2="358.54650534085283" y1="143.81818181818184" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="358.54650534085283" x2="353.54650534085283" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="440.7007833757143" x2="440.7007833757143" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="440.7007833757143" x2="431.7007833757143" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="431.7007833757143" x2="431.7007833757143" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.3550614105757" x2="625.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="625.3550614105758" x2="625.3550614105758" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="625.3550614105758" x2="564.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.3550614105757" x2="564.3550614105757" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="564.3550614105757" x2="564.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="624.3550614105758" x2="564.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="624.3550614105758" x2="624.3550614105758" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="632.3550614105758" x2="625.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="632.3550614105758" x2="632.3550614105758" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="625.3550614105758" x2="632.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="625.3550614105758" x2="625.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="565.3550614105757" x2="625.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="565.3550614105757" x2="565.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="649.3550614105757" x2="625.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="649.3550614105757" x2="649.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="625.3550614105758" x2="649.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="709.3550614105758" x2="649.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="709.3550614105758" x2="709.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="649.3550614105757" x2="709.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="565.3550614105757" x2="541.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="541.3550614105758" x2="565.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="541.3550614105758" x2="541.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="531.3550614105757" x2="541.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="531.3550614105757" x2="531.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="541.3550614105758" x2="531.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="557.3550614105757" x2="564.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="557.3550614105757" x2="557.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="564.3550614105757" x2="557.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="613.4459705014848" x2="616.9459705014849" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="616.9459705014849" x2="613.4459705014848" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="613.4459705014848" x2="602.5368795923939" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="602.5368795923939" x2="599.0368795923939" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="599.0368795923939" x2="602.5368795923939" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="586.1732432287575" x2="589.6732432287577" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="589.6732432287577" x2="586.1732432287575" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="586.1732432287575" x2="575.2641523196667" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="575.2641523196667" x2="571.7641523196666" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="571.7641523196666" x2="575.2641523196667" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="630.6050614105758" x2="627.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="627.1050614105758" x2="627.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="627.1050614105758" x2="630.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="572.8550614105758" x2="572.8550614105758" y1="199.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="572.8550614105758" x2="607.8550614105758" y1="181.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="607.8550614105758" x2="607.8550614105758" y1="181.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="607.8550614105758" x2="572.8550614105758" y1="199.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="625.8550614105758" x2="625.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="625.8550614105758" x2="628.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="628.8550614105757" x2="628.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="628.8550614105757" x2="625.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="646.8550614105757" x2="647.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="647.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="647.8550614105757" x2="646.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="626.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="626.8550614105758" x2="627.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="627.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="627.8550614105758" x2="626.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="645.8550614105758" x2="648.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="648.8550614105757" x2="648.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="648.8550614105757" x2="645.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="641.6050614105758" x2="633.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="641.6050614105758" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="641.6050614105758" x2="641.6050614105758" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="641.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="641.6050614105758" x2="641.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="641.6050614105758" x2="633.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="633.1050614105757" x2="633.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="664.3550614105758" x2="664.3550614105758" y1="198.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="664.3550614105758" x2="694.3550614105757" y1="185.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="694.3550614105757" x2="694.3550614105757" y1="185.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="694.3550614105757" x2="664.3550614105758" y1="198.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="671.4232432287575" x2="660.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="660.0141523196667" x2="660.0141523196667" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="660.0141523196667" x2="671.4232432287575" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="671.4232432287575" x2="671.4232432287575" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="698.6959705014849" x2="687.2868795923938" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="687.2868795923938" x2="687.2868795923938" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="687.2868795923938" x2="698.6959705014849" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="698.6959705014849" x2="698.6959705014849" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="701.6050614105758" x2="701.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="701.6050614105758" x2="702.1050614105758" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="702.1050614105758" x2="702.1050614105758" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="702.1050614105758" x2="701.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="701.6050614105758" x2="701.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="701.6050614105758" x2="702.1050614105758" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="702.1050614105758" x2="702.1050614105758" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="702.1050614105758" x2="701.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="541.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="541.8550614105758" x2="544.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="544.8550614105758" x2="544.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="544.8550614105758" x2="541.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="562.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="562.8550614105758" x2="563.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="563.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="563.8550614105758" x2="562.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="542.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="542.8550614105758" x2="543.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="543.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="543.8550614105758" x2="542.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="561.8550614105758" x2="561.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="561.8550614105758" x2="564.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="564.8550614105757" x2="564.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="564.8550614105757" x2="561.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="557.6050614105758" x2="549.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="549.1050614105758" x2="549.1050614105758" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="549.1050614105758" x2="557.6050614105758" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="557.6050614105758" x2="557.6050614105758" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="549.1050614105758" x2="557.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="557.6050614105758" x2="557.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="557.6050614105758" x2="549.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="549.1050614105758" x2="549.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="533.8550614105758" x2="538.8550614105758" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="538.8550614105758" x2="538.8550614105758" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="538.8550614105758" x2="533.8550614105758" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="533.8550614105758" x2="538.8550614105758" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="538.8550614105758" x2="538.8550614105758" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="538.8550614105758" x2="533.8550614105758" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="559.1050614105758" x2="562.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="562.6050614105757" x2="562.6050614105757" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="562.6050614105757" x2="559.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
 </svg>
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.png b/rocolib/output/BoatWithServoStackBattery/graph-model.png
index 60017b4635ca5d4524bfc077b44be9dc6102e09e..d1afa32a1f437758d7337b266ae296c04257ef74 100644
Binary files a/rocolib/output/BoatWithServoStackBattery/graph-model.png and b/rocolib/output/BoatWithServoStackBattery/graph-model.png differ
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-model.stl b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
index de92c0a79d86cdc1a167f38da4b72dd6180ffcae..ceb58e8fa5afabcefb6c81fae6d93fff4050e602 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-model.stl
+++ b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
@@ -1,814 +1,814 @@
 solid python
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.1140 0.0000
-vertex -0.0450 -0.1140 0.0000
-vertex 0.0450 -0.1140 0.0000
+vertex 0.0000 0.0700 0.0000
+vertex 0.1690 0.0700 -0.0000
+vertex 0.1690 0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.1140 0.0000
-vertex 0.0450 0.1140 0.0000
-vertex -0.0450 0.1140 0.0000
+vertex 0.1690 0.0700 -0.0900
+vertex 0.0000 0.0700 -0.0900
+vertex 0.0000 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.1140 -0.0700
-vertex -0.0450 -0.1140 -0.0700
-vertex -0.0450 -0.1140 0.0000
+vertex 0.0000 0.0000 0.0000
+vertex 0.1690 0.0000 0.0000
+vertex 0.1690 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.1140 0.0000
-vertex -0.0450 0.1140 0.0000
-vertex -0.0450 0.1140 -0.0700
+vertex 0.1690 0.0700 0.0000
+vertex 0.0000 0.0700 0.0000
+vertex 0.0000 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.1140 -0.0000
-vertex 0.0450 -0.1140 -0.0000
-vertex 0.0450 -0.1140 -0.0700
+vertex -0.0000 0.0700 -0.0900
+vertex 0.1690 0.0700 -0.0900
+vertex 0.1690 -0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.1140 -0.0700
-vertex 0.0450 0.1140 -0.0700
-vertex 0.0450 0.1140 -0.0000
+vertex 0.1690 -0.0000 -0.0900
+vertex -0.0000 0.0000 -0.0900
+vertex -0.0000 0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.1140 0.0000
-vertex -0.0450 -0.1140 -0.0700
-vertex 0.0000 -0.1140 -0.0700
+vertex 0.1690 0.0700 0.0000
+vertex 0.1690 0.0000 0.0000
+vertex 0.2080 -0.0000 -0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 -0.1140 0.0000
-vertex -0.0450 -0.1140 0.0000
-vertex 0.0000 -0.1140 -0.0700
+vertex 0.2080 -0.0000 -0.0351
+vertex 0.2190 -0.0000 -0.0450
+vertex 0.1690 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 -0.1140 -0.0000
-vertex 0.0000 -0.1140 -0.0700
-vertex 0.0450 -0.1140 -0.0000
+vertex 0.1690 0.0700 -0.0450
+vertex 0.1690 0.0700 -0.0000
+vertex 0.2190 0.0000 -0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 -0.1140 -0.0700
-vertex 0.0450 -0.1140 -0.0700
-vertex 0.0450 -0.1140 -0.0000
+vertex 0.1690 0.0700 -0.0450
+vertex 0.2190 -0.0000 -0.0450
+vertex 0.1690 0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.1140 -0.0700
-vertex -0.0450 -0.1140 0.0000
-vertex 0.0250 -0.1140 -0.0700
+vertex 0.2080 -0.0000 -0.0549
+vertex 0.1690 -0.0000 -0.0900
+vertex 0.1690 0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.1140 -0.0700
-vertex 0.0250 -0.1140 -0.0700
-vertex -0.0450 -0.1140 0.0000
+vertex 0.1690 0.0700 -0.0900
+vertex 0.2190 -0.0000 -0.0450
+vertex 0.2080 -0.0000 -0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.1140 -0.0700
-vertex -0.0250 -0.1140 -0.0700
-vertex 0.0450 -0.1140 -0.0000
+vertex 0.1690 0.0000 0.0000
+vertex 0.1690 0.0700 0.0000
+vertex 0.2080 0.0000 -0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.1140 -0.0700
-vertex 0.0450 -0.1140 -0.0000
-vertex -0.0250 -0.1140 -0.0700
+vertex 0.1690 0.0000 0.0000
+vertex 0.2080 0.0000 -0.0351
+vertex 0.1690 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.1140 0.0000
-vertex 0.0450 0.1140 -0.0700
-vertex -0.0000 0.1140 -0.0700
+vertex 0.1690 -0.0000 -0.0900
+vertex 0.2080 -0.0000 -0.0549
+vertex 0.1690 0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 0.1140 0.0000
-vertex 0.0450 0.1140 -0.0000
-vertex -0.0000 0.1140 -0.0700
+vertex 0.1690 -0.0000 -0.0900
+vertex 0.1690 0.0700 -0.0900
+vertex 0.2080 -0.0000 -0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 0.1140 0.0000
-vertex -0.0000 0.1140 -0.0700
-vertex -0.0450 0.1140 0.0000
+vertex -0.0000 0.0700 -0.0900
+vertex -0.0000 0.0000 -0.0900
+vertex -0.0390 0.0000 -0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0000 0.1140 -0.0700
-vertex -0.0450 0.1140 -0.0700
-vertex -0.0450 0.1140 0.0000
+vertex -0.0390 0.0000 -0.0549
+vertex -0.0500 0.0000 -0.0450
+vertex -0.0000 0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.1140 -0.0700
-vertex 0.0450 0.1140 -0.0000
-vertex -0.0250 0.1140 -0.0700
+vertex 0.0000 0.0700 -0.0450
+vertex -0.0000 0.0700 -0.0900
+vertex -0.0500 0.0000 -0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.1140 -0.0700
-vertex -0.0250 0.1140 -0.0700
-vertex 0.0450 0.1140 -0.0000
+vertex 0.0000 0.0700 -0.0450
+vertex -0.0500 0.0000 -0.0450
+vertex 0.0000 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.1140 -0.0700
-vertex 0.0250 0.1140 -0.0700
-vertex -0.0450 0.1140 0.0000
+vertex -0.0390 0.0000 -0.0351
+vertex 0.0000 0.0000 0.0000
+vertex 0.0000 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.1140 -0.0700
-vertex -0.0450 0.1140 0.0000
-vertex 0.0250 0.1140 -0.0700
+vertex 0.0000 0.0700 0.0000
+vertex -0.0500 0.0000 -0.0450
+vertex -0.0390 0.0000 -0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.0540 -0.1317
-vertex 0.0450 0.1140 -0.1317
-vertex 0.0450 0.1140 -0.0700
+vertex -0.0000 0.0000 -0.0900
+vertex -0.0000 0.0700 -0.0900
+vertex -0.0390 0.0000 -0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.1140 -0.0700
-vertex 0.0450 0.0540 -0.0700
-vertex 0.0450 0.0540 -0.1317
+vertex -0.0000 0.0000 -0.0900
+vertex -0.0390 0.0000 -0.0549
+vertex -0.0000 0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0641 0.1140 -0.1507
-vertex 0.0641 0.0540 -0.1507
-vertex 0.1257 0.0540 -0.1507
+vertex -0.0000 0.0000 0.0000
+vertex -0.0390 0.0000 -0.0351
+vertex 0.0000 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1257 0.0540 -0.1507
-vertex 0.1257 0.1140 -0.1507
-vertex 0.0641 0.1140 -0.1507
+vertex 0.0000 0.0000 0.0000
+vertex 0.0000 0.0700 0.0000
+vertex -0.0390 0.0000 -0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0641 0.0540 -0.1507
-vertex 0.0450 0.0540 -0.1317
-vertex 0.0330 0.0540 -0.1437
+vertex -0.0308 0.0305 0.0000
+vertex -0.0308 -0.0305 0.0000
+vertex 0.0308 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0330 0.0540 -0.1437
-vertex 0.0521 0.0540 -0.1628
-vertex 0.0641 0.0540 -0.1507
+vertex 0.0308 -0.0305 0.0000
+vertex 0.0308 0.0305 0.0000
+vertex -0.0308 0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0521 0.0540 -0.1628
-vertex 0.0330 0.0540 -0.1437
-vertex 0.0330 0.1140 -0.1437
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 0.0305 0.0807
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0330 0.1140 -0.1437
-vertex 0.0521 0.1140 -0.1628
-vertex 0.0521 0.0540 -0.1628
+vertex -0.0499 0.0305 0.0807
+vertex -0.0499 -0.0305 0.0807
+vertex -0.0499 -0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0330 0.1140 -0.1437
-vertex 0.0461 0.1140 -0.1370
-vertex 0.0588 0.1140 -0.1497
+vertex -0.0499 0.0305 0.0191
+vertex -0.0308 0.0305 -0.0000
+vertex -0.0428 0.0305 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0461 0.1140 -0.1370
-vertex 0.0330 0.1140 -0.1437
-vertex 0.0450 0.1140 -0.1317
+vertex -0.0428 0.0305 -0.0120
+vertex -0.0619 0.0305 0.0071
+vertex -0.0499 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0521 0.1140 -0.1628
-vertex 0.0588 0.1140 -0.1497
-vertex 0.0641 0.1140 -0.1507
+vertex -0.0619 0.0305 0.0071
+vertex -0.0428 0.0305 -0.0120
+vertex -0.0428 -0.0305 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0588 0.1140 -0.1497
-vertex 0.0521 0.1140 -0.1628
-vertex 0.0330 0.1140 -0.1437
+vertex -0.0428 -0.0305 -0.0120
+vertex -0.0619 -0.0305 0.0071
+vertex -0.0619 0.0305 0.0071
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.1140 -0.1317
-vertex 0.0482 0.1140 -0.1348
-vertex 0.0461 0.1140 -0.1370
+vertex -0.0619 -0.0305 0.0071
+vertex -0.0428 -0.0305 -0.0120
+vertex -0.0308 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0609 0.1140 -0.1476
-vertex 0.0641 0.1140 -0.1507
-vertex 0.0588 0.1140 -0.1497
+vertex -0.0308 -0.0305 0.0000
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0619 -0.0305 0.0071
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.1140 -0.1317
-vertex 0.0482 0.1135 -0.1348
-vertex 0.0609 0.1135 -0.1476
+vertex -0.0340 -0.0330 0.0032
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0467 -0.0330 0.0159
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0482 0.1135 -0.1348
-vertex 0.0450 0.1140 -0.1317
-vertex 0.0482 0.1105 -0.1348
+vertex -0.0308 -0.0305 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0340 -0.0305 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0641 0.1140 -0.1507
-vertex 0.0609 0.1135 -0.1476
-vertex 0.0609 0.1105 -0.1476
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 0.0305 0.0000
+vertex -0.0499 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0609 0.1135 -0.1476
-vertex 0.0641 0.1140 -0.1507
-vertex 0.0450 0.1140 -0.1317
+vertex -0.0308 0.0305 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0482 0.1105 -0.1348
-vertex 0.0450 0.0540 -0.1317
-vertex 0.0641 0.0540 -0.1507
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 -0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.0540 -0.1317
-vertex 0.0482 0.1105 -0.1348
-vertex 0.0450 0.1140 -0.1317
+vertex -0.0499 0.0305 0.0191
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0340 -0.0270 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0609 0.1105 -0.1476
-vertex 0.0641 0.0540 -0.1507
-vertex 0.0641 0.1140 -0.1507
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0467 -0.0270 0.0159
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0641 0.0540 -0.1507
-vertex 0.0609 0.1105 -0.1476
-vertex 0.0482 0.1105 -0.1348
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0340 -0.0330 0.0032
+vertex -0.0340 -0.0305 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0430 -0.1040
-vertex -0.0450 -0.0190 -0.1040
-vertex -0.0450 -0.0190 -0.1400
+vertex 0.0980 -0.0340 0.0000
+vertex 0.0740 -0.0340 0.0000
+vertex 0.0740 -0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0190 -0.1400
-vertex -0.0450 -0.0430 -0.1400
-vertex -0.0450 -0.0430 -0.1040
+vertex 0.0740 -0.0700 0.0000
+vertex 0.0980 -0.0700 0.0000
+vertex 0.0980 -0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0190 -0.1040
-vertex 0.0450 -0.0430 -0.1040
-vertex 0.0450 -0.0430 -0.1400
+vertex 0.0740 -0.0340 -0.0900
+vertex 0.0980 -0.0340 -0.0900
+vertex 0.0980 -0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0430 -0.1400
-vertex 0.0450 -0.0190 -0.1400
-vertex 0.0450 -0.0190 -0.1040
+vertex 0.0980 -0.0700 -0.0900
+vertex 0.0740 -0.0700 -0.0900
+vertex 0.0740 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0900 -0.0190 -0.1400
-vertex -0.0900 -0.0430 -0.1400
-vertex -0.0450 -0.0430 -0.1400
+vertex 0.0740 -0.0700 0.0450
+vertex 0.0980 -0.0700 0.0450
+vertex 0.0980 -0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0430 -0.1400
-vertex -0.0450 -0.0190 -0.1400
-vertex -0.0900 -0.0190 -0.1400
+vertex 0.0980 -0.0700 0.0000
+vertex 0.0740 -0.0700 0.0000
+vertex 0.0740 -0.0700 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0430 -0.1040
-vertex -0.0300 -0.0430 -0.0930
-vertex -0.0300 -0.0430 -0.0810
+vertex 0.0980 -0.0340 -0.0000
+vertex 0.0980 -0.0230 -0.0150
+vertex 0.0980 -0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.0430 -0.0930
-vertex -0.0450 -0.0430 -0.1040
-vertex -0.0250 -0.0430 -0.1040
+vertex 0.0980 -0.0230 -0.0150
+vertex 0.0980 -0.0340 -0.0000
+vertex 0.0980 -0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0430 -0.0700
-vertex -0.0300 -0.0430 -0.0810
-vertex -0.0250 -0.0430 -0.0700
+vertex 0.0980 0.0000 -0.0000
+vertex 0.0980 -0.0110 -0.0150
+vertex 0.0980 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.0430 -0.0810
-vertex -0.0450 -0.0430 -0.0700
-vertex -0.0450 -0.0430 -0.1040
+vertex 0.0980 -0.0110 -0.0150
+vertex 0.0980 0.0000 -0.0000
+vertex 0.0980 -0.0340 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0260 -0.0430 -0.0930
-vertex -0.0250 -0.0430 -0.1040
-vertex -0.0250 -0.0430 -0.0700
+vertex 0.0980 -0.0230 -0.0190
+vertex 0.0980 -0.0340 -0.0200
+vertex 0.0980 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0430 -0.1040
-vertex -0.0260 -0.0430 -0.0930
-vertex -0.0300 -0.0430 -0.0930
+vertex 0.0980 -0.0340 -0.0200
+vertex 0.0980 -0.0230 -0.0190
+vertex 0.0980 -0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0260 -0.0430 -0.0810
-vertex -0.0250 -0.0430 -0.0700
-vertex -0.0300 -0.0430 -0.0810
+vertex 0.0980 -0.0110 -0.0190
+vertex 0.0980 0.0000 -0.0200
+vertex 0.0980 -0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0430 -0.0700
-vertex -0.0260 -0.0430 -0.0810
-vertex -0.0260 -0.0430 -0.0930
+vertex 0.0980 0.0000 -0.0200
+vertex 0.0980 -0.0110 -0.0190
+vertex 0.0980 -0.0230 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0430 -0.1040
-vertex -0.0250 -0.0425 -0.0930
-vertex -0.0250 -0.0425 -0.0810
+vertex 0.0980 -0.0340 -0.0200
+vertex 0.0975 -0.0230 -0.0200
+vertex 0.0975 -0.0110 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0425 -0.0930
-vertex -0.0250 -0.0430 -0.1040
-vertex -0.0250 -0.0190 -0.1040
+vertex 0.0975 -0.0230 -0.0200
+vertex 0.0980 -0.0340 -0.0200
+vertex 0.0740 -0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0430 -0.0700
-vertex -0.0250 -0.0425 -0.0810
-vertex -0.0250 -0.0195 -0.0810
+vertex 0.0980 0.0000 -0.0200
+vertex 0.0975 -0.0110 -0.0200
+vertex 0.0745 -0.0110 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0425 -0.0810
-vertex -0.0250 -0.0430 -0.0700
-vertex -0.0250 -0.0430 -0.1040
+vertex 0.0975 -0.0110 -0.0200
+vertex 0.0980 0.0000 -0.0200
+vertex 0.0980 -0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0195 -0.0930
-vertex -0.0250 -0.0190 -0.1040
-vertex -0.0250 -0.0190 -0.0700
+vertex 0.0745 -0.0230 -0.0200
+vertex 0.0740 -0.0340 -0.0200
+vertex 0.0740 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0190 -0.1040
-vertex -0.0250 -0.0195 -0.0930
-vertex -0.0250 -0.0425 -0.0930
+vertex 0.0740 -0.0340 -0.0200
+vertex 0.0745 -0.0230 -0.0200
+vertex 0.0975 -0.0230 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0195 -0.0810
-vertex -0.0250 -0.0190 -0.0700
-vertex -0.0250 -0.0430 -0.0700
+vertex 0.0745 -0.0110 -0.0200
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0980 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0190 -0.0700
-vertex -0.0250 -0.0195 -0.0810
-vertex -0.0250 -0.0195 -0.0930
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0745 -0.0110 -0.0200
+vertex 0.0745 -0.0230 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0190 -0.1040
-vertex -0.0300 -0.0190 -0.0930
-vertex -0.0260 -0.0190 -0.0930
+vertex 0.0740 -0.0340 -0.0200
+vertex 0.0740 -0.0230 -0.0150
+vertex 0.0740 -0.0230 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.0190 -0.0930
-vertex -0.0250 -0.0190 -0.1040
-vertex -0.0450 -0.0190 -0.1040
+vertex 0.0740 -0.0230 -0.0150
+vertex 0.0740 -0.0340 -0.0200
+vertex 0.0740 -0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0190 -0.1040
-vertex -0.0260 -0.0190 -0.0930
-vertex -0.0260 -0.0190 -0.0810
+vertex 0.0740 -0.0340 -0.0200
+vertex 0.0740 -0.0230 -0.0190
+vertex 0.0740 -0.0110 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0190 -0.0700
-vertex -0.0260 -0.0190 -0.0810
-vertex -0.0300 -0.0190 -0.0810
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0740 -0.0110 -0.0190
+vertex 0.0740 -0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0260 -0.0190 -0.0810
-vertex -0.0250 -0.0190 -0.0700
-vertex -0.0250 -0.0190 -0.1040
+vertex 0.0740 -0.0110 -0.0190
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0740 -0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.0190 -0.0700
-vertex -0.0300 -0.0190 -0.0810
-vertex -0.0450 -0.0190 -0.0700
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0740 -0.0110 -0.0150
+vertex 0.0740 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0300 -0.0190 -0.0930
-vertex -0.0380 -0.0190 -0.0915
-vertex -0.0300 -0.0190 -0.0810
+vertex 0.0740 -0.0230 -0.0150
+vertex 0.0740 -0.0215 -0.0070
+vertex 0.0740 -0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0380 -0.0190 -0.0915
-vertex -0.0450 -0.0190 -0.1040
-vertex -0.0420 -0.0190 -0.0915
+vertex 0.0740 -0.0215 -0.0070
+vertex 0.0740 -0.0340 0.0000
+vertex 0.0740 -0.0215 -0.0030
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0190 -0.1040
-vertex -0.0380 -0.0190 -0.0915
-vertex -0.0300 -0.0190 -0.0930
+vertex 0.0740 -0.0340 0.0000
+vertex 0.0740 -0.0215 -0.0070
+vertex 0.0740 -0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0420 -0.0190 -0.0915
-vertex -0.0450 -0.0190 -0.1040
-vertex -0.0450 -0.0190 -0.0700
+vertex 0.0740 -0.0215 -0.0030
+vertex 0.0740 -0.0340 0.0000
+vertex 0.0740 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0380 -0.0190 -0.0825
-vertex -0.0420 -0.0190 -0.0825
-vertex -0.0450 -0.0190 -0.0700
+vertex 0.0740 -0.0125 -0.0070
+vertex 0.0740 -0.0125 -0.0030
+vertex 0.0740 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0190 -0.0700
-vertex -0.0420 -0.0190 -0.0825
-vertex -0.0420 -0.0190 -0.0915
+vertex 0.0740 0.0000 0.0000
+vertex 0.0740 -0.0125 -0.0030
+vertex 0.0740 -0.0215 -0.0030
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0380 -0.0190 -0.0825
-vertex -0.0450 -0.0190 -0.0700
-vertex -0.0300 -0.0190 -0.0810
+vertex 0.0740 -0.0125 -0.0070
+vertex 0.0740 0.0000 0.0000
+vertex 0.0740 -0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0380 -0.0190 -0.0915
-vertex -0.0380 -0.0190 -0.0825
-vertex -0.0300 -0.0190 -0.0810
+vertex 0.0740 -0.0215 -0.0070
+vertex 0.0740 -0.0125 -0.0070
+vertex 0.0740 -0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0190 -0.0700
-vertex -0.0450 -0.0190 -0.1040
-vertex -0.0450 -0.0430 -0.1040
+vertex 0.0740 0.0000 0.0000
+vertex 0.0740 -0.0340 0.0000
+vertex 0.0980 -0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0430 -0.1040
-vertex -0.0450 -0.0430 -0.0700
-vertex -0.0450 -0.0190 -0.0700
+vertex 0.0980 -0.0340 0.0000
+vertex 0.0980 0.0000 0.0000
+vertex 0.0740 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0430 -0.0700
-vertex 0.0300 -0.0430 -0.0810
-vertex 0.0300 -0.0430 -0.0930
+vertex 0.0980 0.0000 -0.0900
+vertex 0.0980 -0.0110 -0.0750
+vertex 0.0980 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.0430 -0.0810
-vertex 0.0450 -0.0430 -0.0700
-vertex 0.0250 -0.0430 -0.0700
+vertex 0.0980 -0.0110 -0.0750
+vertex 0.0980 0.0000 -0.0900
+vertex 0.0980 0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0430 -0.1040
-vertex 0.0300 -0.0430 -0.0930
-vertex 0.0250 -0.0430 -0.1040
+vertex 0.0980 -0.0340 -0.0900
+vertex 0.0980 -0.0230 -0.0750
+vertex 0.0980 -0.0340 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.0430 -0.0930
-vertex 0.0450 -0.0430 -0.1040
-vertex 0.0450 -0.0430 -0.0700
+vertex 0.0980 -0.0230 -0.0750
+vertex 0.0980 -0.0340 -0.0900
+vertex 0.0980 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0260 -0.0430 -0.0810
-vertex 0.0250 -0.0430 -0.0700
-vertex 0.0250 -0.0430 -0.1040
+vertex 0.0980 -0.0110 -0.0710
+vertex 0.0980 0.0000 -0.0700
+vertex 0.0980 -0.0340 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0430 -0.0700
-vertex 0.0260 -0.0430 -0.0810
-vertex 0.0300 -0.0430 -0.0810
+vertex 0.0980 0.0000 -0.0700
+vertex 0.0980 -0.0110 -0.0710
+vertex 0.0980 -0.0110 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0260 -0.0430 -0.0930
-vertex 0.0250 -0.0430 -0.1040
-vertex 0.0300 -0.0430 -0.0930
+vertex 0.0980 -0.0230 -0.0710
+vertex 0.0980 -0.0340 -0.0700
+vertex 0.0980 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0430 -0.1040
-vertex 0.0260 -0.0430 -0.0930
-vertex 0.0260 -0.0430 -0.0810
+vertex 0.0980 -0.0340 -0.0700
+vertex 0.0980 -0.0230 -0.0710
+vertex 0.0980 -0.0110 -0.0710
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0430 -0.0700
-vertex 0.0250 -0.0425 -0.0810
-vertex 0.0250 -0.0425 -0.0930
+vertex 0.0980 0.0000 -0.0700
+vertex 0.0975 -0.0110 -0.0700
+vertex 0.0975 -0.0230 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0425 -0.0810
-vertex 0.0250 -0.0430 -0.0700
-vertex 0.0250 -0.0190 -0.0700
+vertex 0.0975 -0.0110 -0.0700
+vertex 0.0980 0.0000 -0.0700
+vertex 0.0740 0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0430 -0.1040
-vertex 0.0250 -0.0425 -0.0930
-vertex 0.0250 -0.0195 -0.0930
+vertex 0.0980 -0.0340 -0.0700
+vertex 0.0975 -0.0230 -0.0700
+vertex 0.0745 -0.0230 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0425 -0.0930
-vertex 0.0250 -0.0430 -0.1040
-vertex 0.0250 -0.0430 -0.0700
+vertex 0.0975 -0.0230 -0.0700
+vertex 0.0980 -0.0340 -0.0700
+vertex 0.0980 0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0195 -0.0810
-vertex 0.0250 -0.0190 -0.0700
-vertex 0.0250 -0.0190 -0.1040
+vertex 0.0745 -0.0110 -0.0700
+vertex 0.0740 0.0000 -0.0700
+vertex 0.0740 -0.0340 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0190 -0.0700
-vertex 0.0250 -0.0195 -0.0810
-vertex 0.0250 -0.0425 -0.0810
+vertex 0.0740 0.0000 -0.0700
+vertex 0.0745 -0.0110 -0.0700
+vertex 0.0975 -0.0110 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0195 -0.0930
-vertex 0.0250 -0.0190 -0.1040
-vertex 0.0250 -0.0430 -0.1040
+vertex 0.0745 -0.0230 -0.0700
+vertex 0.0740 -0.0340 -0.0700
+vertex 0.0980 -0.0340 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0190 -0.1040
-vertex 0.0250 -0.0195 -0.0930
-vertex 0.0250 -0.0195 -0.0810
+vertex 0.0740 -0.0340 -0.0700
+vertex 0.0745 -0.0230 -0.0700
+vertex 0.0745 -0.0110 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0190 -0.0700
-vertex 0.0300 -0.0190 -0.0810
-vertex 0.0260 -0.0190 -0.0810
+vertex 0.0740 0.0000 -0.0700
+vertex 0.0740 -0.0110 -0.0750
+vertex 0.0740 -0.0110 -0.0710
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.0190 -0.0810
-vertex 0.0250 -0.0190 -0.0700
-vertex 0.0450 -0.0190 -0.0700
+vertex 0.0740 -0.0110 -0.0750
+vertex 0.0740 0.0000 -0.0700
+vertex 0.0740 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0190 -0.0700
-vertex 0.0260 -0.0190 -0.0810
-vertex 0.0260 -0.0190 -0.0930
+vertex 0.0740 0.0000 -0.0700
+vertex 0.0740 -0.0110 -0.0710
+vertex 0.0740 -0.0230 -0.0710
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0190 -0.1040
-vertex 0.0260 -0.0190 -0.0930
-vertex 0.0300 -0.0190 -0.0930
+vertex 0.0740 -0.0340 -0.0700
+vertex 0.0740 -0.0230 -0.0710
+vertex 0.0740 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0260 -0.0190 -0.0930
-vertex 0.0250 -0.0190 -0.1040
-vertex 0.0250 -0.0190 -0.0700
+vertex 0.0740 -0.0230 -0.0710
+vertex 0.0740 -0.0340 -0.0700
+vertex 0.0740 0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.0190 -0.1040
-vertex 0.0300 -0.0190 -0.0930
-vertex 0.0450 -0.0190 -0.1040
+vertex 0.0740 -0.0340 -0.0700
+vertex 0.0740 -0.0230 -0.0750
+vertex 0.0740 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0300 -0.0190 -0.0810
-vertex 0.0380 -0.0190 -0.0825
-vertex 0.0300 -0.0190 -0.0930
+vertex 0.0740 -0.0110 -0.0750
+vertex 0.0740 -0.0125 -0.0830
+vertex 0.0740 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0380 -0.0190 -0.0825
-vertex 0.0450 -0.0190 -0.0700
-vertex 0.0420 -0.0190 -0.0825
+vertex 0.0740 -0.0125 -0.0830
+vertex 0.0740 0.0000 -0.0900
+vertex 0.0740 -0.0125 -0.0870
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0190 -0.0700
-vertex 0.0380 -0.0190 -0.0825
-vertex 0.0300 -0.0190 -0.0810
+vertex 0.0740 0.0000 -0.0900
+vertex 0.0740 -0.0125 -0.0830
+vertex 0.0740 -0.0110 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0420 -0.0190 -0.0825
-vertex 0.0450 -0.0190 -0.0700
-vertex 0.0450 -0.0190 -0.1040
+vertex 0.0740 -0.0125 -0.0870
+vertex 0.0740 0.0000 -0.0900
+vertex 0.0740 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0380 -0.0190 -0.0915
-vertex 0.0420 -0.0190 -0.0915
-vertex 0.0450 -0.0190 -0.1040
+vertex 0.0740 -0.0215 -0.0830
+vertex 0.0740 -0.0215 -0.0870
+vertex 0.0740 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0190 -0.1040
-vertex 0.0420 -0.0190 -0.0915
-vertex 0.0420 -0.0190 -0.0825
+vertex 0.0740 -0.0340 -0.0900
+vertex 0.0740 -0.0215 -0.0870
+vertex 0.0740 -0.0125 -0.0870
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0380 -0.0190 -0.0915
-vertex 0.0450 -0.0190 -0.1040
-vertex 0.0300 -0.0190 -0.0930
+vertex 0.0740 -0.0215 -0.0830
+vertex 0.0740 -0.0340 -0.0900
+vertex 0.0740 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0380 -0.0190 -0.0825
-vertex 0.0380 -0.0190 -0.0915
-vertex 0.0300 -0.0190 -0.0930
+vertex 0.0740 -0.0125 -0.0830
+vertex 0.0740 -0.0215 -0.0830
+vertex 0.0740 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0190 -0.1040
-vertex 0.0450 -0.0190 -0.0700
-vertex 0.0450 -0.0430 -0.0700
+vertex 0.0740 -0.0340 -0.0900
+vertex 0.0740 0.0000 -0.0900
+vertex 0.0980 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0430 -0.0700
-vertex 0.0450 -0.0430 -0.1040
-vertex 0.0450 -0.0190 -0.1040
+vertex 0.0980 0.0000 -0.0900
+vertex 0.0980 -0.0340 -0.0900
+vertex 0.0740 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0900 -0.0430 -0.1400
-vertex 0.0900 -0.0190 -0.1400
-vertex 0.0450 -0.0190 -0.1400
+vertex 0.0980 -0.0700 -0.1350
+vertex 0.0740 -0.0700 -0.1350
+vertex 0.0740 -0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0190 -0.1400
-vertex 0.0450 -0.0430 -0.1400
-vertex 0.0900 -0.0430 -0.1400
+vertex 0.0740 -0.0700 -0.0900
+vertex 0.0980 -0.0700 -0.0900
+vertex 0.0980 -0.0700 -0.1350
 endloop
 endfacet
 facet normal 0 0 0
@@ -827,128 +827,128 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0530 -0.0700
-vertex -0.0450 -0.0530 -0.1061
-vertex -0.0450 -0.1140 -0.1061
+vertex 0.1080 0.0000 0.0000
+vertex 0.1080 -0.0361 0.0000
+vertex 0.1690 -0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.1140 -0.1061
-vertex -0.0450 -0.1140 -0.0700
-vertex -0.0450 -0.0530 -0.0700
+vertex 0.1690 -0.0361 0.0000
+vertex 0.1690 0.0000 0.0000
+vertex 0.1080 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0081 -0.1140 -0.1231
-vertex -0.0280 -0.1140 -0.1231
-vertex -0.0280 -0.0530 -0.1231
+vertex 0.1690 -0.0531 -0.0531
+vertex 0.1690 -0.0531 -0.0170
+vertex 0.1080 -0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 -0.0530 -0.1231
-vertex 0.0081 -0.0530 -0.1231
-vertex 0.0081 -0.1140 -0.1231
+vertex 0.1080 -0.0531 -0.0170
+vertex 0.1080 -0.0531 -0.0531
+vertex 0.1690 -0.0531 -0.0531
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 -0.0530 -0.1231
-vertex -0.0319 -0.0820 -0.1192
-vertex -0.0319 -0.0710 -0.1192
+vertex 0.1080 -0.0531 -0.0170
+vertex 0.1370 -0.0492 -0.0131
+vertex 0.1260 -0.0492 -0.0131
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0319 -0.0820 -0.1192
-vertex -0.0280 -0.0530 -0.1231
-vertex -0.0280 -0.1140 -0.1231
+vertex 0.1370 -0.0492 -0.0131
+vertex 0.1080 -0.0531 -0.0170
+vertex 0.1690 -0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 -0.0530 -0.1231
-vertex -0.0319 -0.0710 -0.1192
-vertex -0.0411 -0.0710 -0.1100
+vertex 0.1080 -0.0531 -0.0170
+vertex 0.1260 -0.0492 -0.0131
+vertex 0.1260 -0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0530 -0.1061
-vertex -0.0411 -0.0710 -0.1100
-vertex -0.0411 -0.0820 -0.1100
+vertex 0.1080 -0.0361 0.0000
+vertex 0.1260 -0.0400 -0.0039
+vertex 0.1370 -0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0411 -0.0710 -0.1100
-vertex -0.0450 -0.0530 -0.1061
-vertex -0.0280 -0.0530 -0.1231
+vertex 0.1260 -0.0400 -0.0039
+vertex 0.1080 -0.0361 0.0000
+vertex 0.1080 -0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0530 -0.1061
-vertex -0.0411 -0.0820 -0.1100
-vertex -0.0450 -0.1140 -0.1061
+vertex 0.1080 -0.0361 0.0000
+vertex 0.1370 -0.0400 -0.0039
+vertex 0.1690 -0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0319 -0.0820 -0.1192
-vertex -0.0330 -0.1025 -0.1182
-vertex -0.0411 -0.0820 -0.1100
+vertex 0.1370 -0.0492 -0.0131
+vertex 0.1575 -0.0482 -0.0120
+vertex 0.1370 -0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0330 -0.1025 -0.1182
-vertex -0.0280 -0.1140 -0.1231
-vertex -0.0330 -0.1085 -0.1182
+vertex 0.1575 -0.0482 -0.0120
+vertex 0.1690 -0.0531 -0.0170
+vertex 0.1635 -0.0482 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 -0.1140 -0.1231
-vertex -0.0330 -0.1025 -0.1182
-vertex -0.0319 -0.0820 -0.1192
+vertex 0.1690 -0.0531 -0.0170
+vertex 0.1575 -0.0482 -0.0120
+vertex 0.1370 -0.0492 -0.0131
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0330 -0.1085 -0.1182
-vertex -0.0280 -0.1140 -0.1231
-vertex -0.0450 -0.1140 -0.1061
+vertex 0.1635 -0.0482 -0.0120
+vertex 0.1690 -0.0531 -0.0170
+vertex 0.1690 -0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0401 -0.1025 -0.1111
-vertex -0.0401 -0.1085 -0.1111
-vertex -0.0450 -0.1140 -0.1061
+vertex 0.1575 -0.0411 -0.0049
+vertex 0.1635 -0.0411 -0.0049
+vertex 0.1690 -0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.1140 -0.1061
-vertex -0.0401 -0.1085 -0.1111
-vertex -0.0330 -0.1085 -0.1182
+vertex 0.1690 -0.0361 0.0000
+vertex 0.1635 -0.0411 -0.0049
+vertex 0.1635 -0.0482 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0401 -0.1025 -0.1111
-vertex -0.0450 -0.1140 -0.1061
-vertex -0.0411 -0.0820 -0.1100
+vertex 0.1575 -0.0411 -0.0049
+vertex 0.1690 -0.0361 0.0000
+vertex 0.1370 -0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0330 -0.1025 -0.1182
-vertex -0.0401 -0.1025 -0.1111
-vertex -0.0411 -0.0820 -0.1100
+vertex 0.1575 -0.0482 -0.0120
+vertex 0.1575 -0.0411 -0.0049
+vertex 0.1370 -0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
@@ -3781,142 +3781,156 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 -0.1164 -0.0468
-vertex 0.0250 -0.1140 -0.0700
-vertex -0.0450 -0.1140 -0.0700
+vertex 0.2093 0.0174 -0.0338
+vertex 0.2080 0.0000 -0.0351
+vertex 0.1690 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.1140 -0.0700
-vertex -0.0450 -0.1164 -0.0468
-vertex 0.0250 -0.1164 -0.0468
+vertex 0.1690 0.0000 0.0000
+vertex 0.1702 0.0174 0.0014
+vertex 0.2093 0.0174 -0.0338
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.1164 -0.0468
-vertex 0.0450 -0.1140 -0.0700
-vertex -0.0250 -0.1140 -0.0700
+vertex 0.1702 0.0174 -0.0914
+vertex 0.1690 -0.0000 -0.0900
+vertex 0.2080 -0.0000 -0.0549
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 -0.1140 -0.0700
-vertex -0.0250 -0.1164 -0.0468
-vertex 0.0450 -0.1164 -0.0468
+vertex 0.2080 -0.0000 -0.0549
+vertex 0.2093 0.0174 -0.0562
+vertex 0.1702 0.0174 -0.0914
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0250 0.1164 -0.0468
-vertex -0.0250 0.1140 -0.0700
-vertex 0.0450 0.1140 -0.0700
+vertex -0.0403 0.0174 -0.0562
+vertex -0.0390 0.0000 -0.0549
+vertex -0.0000 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.1140 -0.0700
-vertex 0.0450 0.1164 -0.0468
-vertex -0.0250 0.1164 -0.0468
+vertex -0.0000 0.0000 -0.0900
+vertex -0.0012 0.0174 -0.0914
+vertex -0.0403 0.0174 -0.0562
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.1164 -0.0468
-vertex -0.0450 0.1140 -0.0700
-vertex 0.0250 0.1140 -0.0700
+vertex -0.0012 0.0174 0.0014
+vertex -0.0000 0.0000 0.0000
+vertex -0.0390 0.0000 -0.0351
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0250 0.1140 -0.0700
-vertex 0.0250 0.1164 -0.0468
-vertex -0.0450 0.1164 -0.0468
+vertex -0.0390 0.0000 -0.0351
+vertex -0.0403 0.0174 -0.0338
+vertex -0.0012 0.0174 0.0014
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.0540 -0.0800
-vertex -0.0450 0.0540 -0.0700
-vertex -0.0450 0.1140 -0.0700
+vertex -0.0308 0.0205 -0.0000
+vertex -0.0308 0.0305 -0.0000
+vertex -0.0499 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 0.1140 -0.0700
-vertex -0.0450 0.1140 -0.0800
-vertex -0.0450 0.0540 -0.0800
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 0.0205 0.0191
+vertex -0.0308 0.0205 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 0.0640 -0.1317
-vertex 0.0450 0.0540 -0.1317
-vertex 0.0641 0.0540 -0.1507
+vertex -0.0499 -0.0305 0.0907
+vertex -0.0499 -0.0305 0.0807
+vertex -0.0499 0.0305 0.0807
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0641 0.0540 -0.1507
-vertex 0.0641 0.0640 -0.1507
-vertex 0.0450 0.0640 -0.1317
+vertex -0.0499 0.0305 0.0807
+vertex -0.0499 0.0305 0.0907
+vertex -0.0499 -0.0305 0.0907
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0330 -0.1040
-vertex -0.0450 -0.0430 -0.1040
-vertex -0.0450 -0.0430 -0.0700
+vertex 0.0408 0.0305 0.0000
+vertex 0.0308 0.0305 0.0000
+vertex 0.0308 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0430 -0.0700
-vertex -0.0450 -0.0330 -0.0700
-vertex -0.0450 -0.0330 -0.1040
+vertex 0.0308 -0.0305 0.0000
+vertex 0.0408 -0.0305 0.0000
+vertex 0.0408 0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0330 -0.0700
-vertex 0.0450 -0.0430 -0.0700
-vertex 0.0450 -0.0430 -0.1040
+vertex 0.0880 -0.0340 -0.0000
+vertex 0.0980 -0.0340 -0.0000
+vertex 0.0980 0.0000 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0450 -0.0430 -0.1040
-vertex 0.0450 -0.0330 -0.1040
-vertex 0.0450 -0.0330 -0.0700
+vertex 0.0980 0.0000 -0.0000
+vertex 0.0880 0.0000 -0.0000
+vertex 0.0880 -0.0340 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0950 -0.0430 -0.1400
-vertex -0.0900 -0.0430 -0.1400
-vertex -0.0900 -0.0190 -0.1400
+vertex 0.0880 0.0000 -0.0900
+vertex 0.0980 0.0000 -0.0900
+vertex 0.0980 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0900 -0.0190 -0.1400
-vertex -0.0950 -0.0190 -0.1400
-vertex -0.0950 -0.0430 -0.1400
+vertex 0.0980 -0.0340 -0.0900
+vertex 0.0880 -0.0340 -0.0900
+vertex 0.0880 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 -0.0430 -0.1231
-vertex -0.0280 -0.0530 -0.1231
-vertex -0.0450 -0.0530 -0.1061
+vertex 0.0980 -0.0700 0.0500
+vertex 0.0980 -0.0700 0.0450
+vertex 0.0740 -0.0700 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0450 -0.0530 -0.1061
-vertex -0.0450 -0.0430 -0.1061
-vertex -0.0280 -0.0430 -0.1231
+vertex 0.0740 -0.0700 0.0450
+vertex 0.0740 -0.0700 0.0500
+vertex 0.0980 -0.0700 0.0500
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0980 -0.0531 -0.0170
+vertex 0.1080 -0.0531 -0.0170
+vertex 0.1080 -0.0361 0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.1080 -0.0361 0.0000
+vertex 0.0980 -0.0361 0.0000
+vertex 0.0980 -0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
@@ -3935,16 +3949,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0379 -0.1140 -0.0991
-vertex -0.0450 -0.1140 -0.1061
-vertex -0.0280 -0.1140 -0.1231
+vertex 0.1690 -0.0291 -0.0071
+vertex 0.1690 -0.0361 0.0000
+vertex 0.1690 -0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0280 -0.1140 -0.1231
-vertex -0.0210 -0.1140 -0.1160
-vertex -0.0379 -0.1140 -0.0991
+vertex 0.1690 -0.0531 -0.0170
+vertex 0.1690 -0.0460 -0.0240
+vertex 0.1690 -0.0291 -0.0071
 endloop
 endfacet
 facet normal 0 0 0
@@ -3991,16 +4005,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0181 -0.1140 -0.1231
-vertex 0.0081 -0.1140 -0.1231
-vertex 0.0081 -0.0530 -0.1231
+vertex 0.1690 -0.0531 -0.0631
+vertex 0.1690 -0.0531 -0.0531
+vertex 0.1080 -0.0531 -0.0531
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0081 -0.0530 -0.1231
-vertex 0.0181 -0.0530 -0.1231
-vertex 0.0181 -0.1140 -0.1231
+vertex 0.1080 -0.0531 -0.0531
+vertex 0.1080 -0.0531 -0.0631
+vertex 0.1690 -0.0531 -0.0631
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
index 9470c890f1d76c59a98e67e71b7942882d2cdb72..d5ba02242d159be7fe79143e8312988bc11fcee9 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
@@ -937,6 +937,204 @@ MVIEW
 1002
 }
   0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+194.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+101.50000000000001
+ 31
+0.0
+  0
 LINE
   6
 DOTTED
@@ -945,15 +1143,33 @@ DOTTED
   8
 0
  10
-280.00000000000006
+160.02325267042647
  20
-70.00000000000001
+101.50000000000001
  30
 0.0
  11
-280.00000000000006
+160.02325267042647
  21
-298.00000000000006
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+65.5
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+101.50000000000001
  31
 0.0
   0
@@ -961,19 +1177,163 @@ LINE
   6
 DOTTED
  62
-1
+3
+  8
+0
+ 10
+160.02325267042647
+ 20
+65.5
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+65.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+65.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
   8
 0
  10
-190.00000000000003
+184.02325267042647
  20
-70.00000000000001
+65.5
  30
 0.0
  11
-190.00000000000003
+184.02325267042647
  21
-298.00000000000006
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+20.5
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+65.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+15.500000000000004
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+20.5
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+15.500000000000004
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+15.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+184.02325267042647
+ 20
+20.5
+ 30
+0.0
+ 11
+184.02325267042647
+ 21
+15.500000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.02325267042647
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+140.02325267042644
+ 21
+101.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.02325267042644
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+160.02325267042647
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -985,15 +1345,51 @@ DOTTED
   8
 0
  10
-235.00000000000003
+140.02325267042644
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+140.02325267042644
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+140.02325267042644
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+116.02325267042646
+ 21
+101.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+116.02325267042646
  20
-70.00000000000001
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+140.02325267042644
  21
-70.00000000000001
+135.50000000000003
  31
 0.0
   0
@@ -1005,15 +1401,15 @@ DOTTED
   8
 0
  10
-280.00000000000006
+116.02325267042646
  20
-70.00000000000001
+101.50000000000001
  30
 0.0
  11
-235.00000000000003
+116.02325267042646
  21
-70.00000000000001
+135.50000000000003
  31
 0.0
   0
@@ -1023,15 +1419,15 @@ LINE
   8
 0
  10
-260.0
+116.02325267042646
  20
--2.8421709430404014e-14
+101.50000000000001
  30
 0.0
  11
-190.00000000000003
+96.02325267042644
  21
--2.8421709430404014e-14
+101.50000000000001
  31
 0.0
   0
@@ -1041,15 +1437,15 @@ LINE
   8
 0
  10
-235.00000000000003
+96.02325267042644
  20
--2.8421709430404014e-14
+135.50000000000003
  30
 0.0
  11
-260.0
+116.02325267042646
  21
--2.8421709430404014e-14
+135.50000000000003
  31
 0.0
   0
@@ -1061,15 +1457,69 @@ DOTTED
   8
 0
  10
-190.00000000000003
+96.02325267042644
  20
-70.0
+135.50000000000003
  30
 0.0
  11
-190.00000000000003
+96.02325267042644
  21
--2.8421709430404014e-14
+101.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+96.02325267042644
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+86.02325267042646
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+96.02325267042644
+ 20
+101.50000000000001
+ 30
+0.0
+ 11
+86.02325267042646
+ 21
+101.50000000000001
  31
 0.0
   0
@@ -1077,19 +1527,19 @@ LINE
   6
 DOTTED
  62
-3
+1
   8
 0
  10
-190.00000000000003
+194.02325267042647
  20
-70.0
+99.36137800081471
  30
 0.0
  11
-120.00000000000003
+255.02325267042647
  21
--2.8421709430404014e-14
+99.36137800081471
  31
 0.0
   0
@@ -1099,15 +1549,33 @@ LINE
   8
 0
  10
-190.00000000000003
+255.02325267042647
  20
--2.8421709430404014e-14
+135.50000000000003
  30
 0.0
  11
-120.00000000000003
+255.02325267042647
  21
--2.8421709430404014e-14
+99.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
+ 20
+99.36137800081471
+ 30
+0.0
+ 11
+194.02325267042647
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -1115,19 +1583,19 @@ LINE
   6
 DOTTED
  62
-3
+1
   8
 0
  10
-120.00000000000001
+255.02325267042647
  20
-70.0
+75.36137800081471
  30
 0.0
  11
-120.00000000000001
+194.02325267042647
  21
-0.0
+75.36137800081471
  31
 0.0
   0
@@ -1139,15 +1607,33 @@ DOTTED
   8
 0
  10
-190.00000000000003
+255.02325267042647
+ 20
+75.36137800081471
+ 30
+0.0
+ 11
+255.02325267042647
+ 21
+99.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+194.02325267042647
  20
-70.00000000000001
+39.22275600162939
  30
 0.0
  11
-120.00000000000001
+194.02325267042647
  21
-70.0
+75.36137800081472
  31
 0.0
   0
@@ -1157,15 +1643,15 @@ LINE
   8
 0
  10
-96.66666666666666
+255.02325267042647
  20
-70.0
+75.36137800081472
  30
 0.0
  11
-120.00000000000001
+255.02325267042647
  21
-70.0
+39.22275600162939
  31
 0.0
   0
@@ -1175,15 +1661,33 @@ LINE
   8
 0
  10
-96.66666666666669
+194.02325267042647
  20
+29.222756001629396
+ 30
+0.0
+ 11
+194.02325267042647
+ 21
+39.22275600162939
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.02325267042647
+ 20
+29.222756001629396
  30
 0.0
  11
-96.66666666666666
+194.02325267042647
  21
-70.0
+29.222756001629396
  31
 0.0
   0
@@ -1193,75 +1697,105 @@ LINE
   8
 0
  10
-120.00000000000003
+255.02325267042647
  20
+39.22275600162939
+ 30
 0.0
+ 11
+255.02325267042647
+ 21
+29.222756001629396
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.02325267042653
+ 20
+75.36137800081471
  30
 0.0
  11
-96.66666666666669
+255.02325267042647
  21
+75.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+265.02325267042653
+ 20
+99.36137800081471
+ 30
 0.0
+ 11
+265.02325267042653
+ 21
+75.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-120.0
+255.02325267042647
  20
-298.00000000000006
+99.36137800081471
  30
 0.0
  11
-190.00000000000003
+265.02325267042653
  21
-298.00000000000006
+99.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-119.99999999999999
+184.02325267042647
  20
-368.00000000000006
+99.36137800081471
  30
 0.0
  11
-190.00000000000003
+194.02325267042647
  21
-298.00000000000006
+99.36137800081471
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-119.99999999999999
+184.02325267042647
  20
-368.00000000000006
+75.36137800081471
  30
 0.0
  11
-120.0
+184.02325267042647
  21
-298.00000000000006
+99.36137800081471
  31
 0.0
   0
@@ -1271,15 +1805,15 @@ LINE
   8
 0
  10
-119.99999999999999
+194.02325267042647
  20
-368.00000000000006
+75.36137800081471
  30
 0.0
  11
-190.0
+184.02325267042647
  21
-368.00000000000006
+75.36137800081471
  31
 0.0
   0
@@ -1291,51 +1825,55 @@ DOTTED
   8
 0
  10
-190.0
+255.02325267042647
  20
-368.00000000000006
+205.50000000000003
  30
 0.0
  11
-190.00000000000003
+86.02325267042646
  21
-298.00000000000006
+205.50000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-259.99999999999994
+255.02325267042647
  20
-368.00000000000006
+205.50000000000003
  30
 0.0
  11
-235.0
+255.02325267042647
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-190.0
+255.02325267042647
  20
-368.00000000000006
+135.50000000000003
  30
 0.0
  11
-259.99999999999994
+307.53762348858805
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1343,39 +1881,37 @@ LINE
   6
 DOTTED
  62
-1
+3
   8
 0
  10
-190.00000000000003
+255.02325267042647
  20
-298.00000000000006
+205.50000000000003
  30
 0.0
  11
-235.00000000000003
+307.53762348858805
  21
-298.00000000000006
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-235.00000000000003
+255.02325267042647
  20
-298.00000000000006
+117.99520972727949
  30
 0.0
  11
-280.00000000000006
+255.02325267042647
  21
-298.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1385,15 +1921,15 @@ LINE
   8
 0
  10
-210.00000000000003
+307.53762348858805
  20
-368.00000000000006
+117.99520972727949
  30
 0.0
  11
-280.00000000000006
+255.02325267042647
  21
-368.00000000000006
+117.99520972727949
  31
 0.0
   0
@@ -1403,15 +1939,15 @@ LINE
   8
 0
  10
-235.0
+307.53762348858805
  20
-368.00000000000006
+135.50000000000003
  30
 0.0
  11
-210.00000000000003
+307.53762348858805
  21
-368.00000000000006
+117.99520972727949
  31
 0.0
   0
@@ -1423,35 +1959,33 @@ DOTTED
   8
 0
  10
-280.00000000000006
+255.02325267042647
  20
-298.00000000000006
+205.50000000000003
  30
 0.0
  11
-280.00000000000006
+322.2284003443256
  21
-368.00000000000006
+185.91765779766357
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-280.00000000000006
+322.2284003443256
  20
-298.00000000000006
+185.91765779766357
  30
 0.0
  11
-350.0
+307.53762348858805
  21
-368.00000000000006
+135.50000000000003
  31
 0.0
   0
@@ -1461,35 +1995,33 @@ LINE
   8
 0
  10
-280.00000000000006
+336.91917720006325
  20
-368.00000000000006
+236.33531559532716
  30
 0.0
  11
-350.0
+322.2284003443256
  21
-368.00000000000006
+185.91765779766357
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-350.0
+341.0465053408527
  20
-298.0000000000001
+250.50000000000003
  30
 0.0
  11
-350.0
+336.91917720006325
  21
-368.00000000000006
+236.33531559532716
  31
 0.0
   0
@@ -1501,69 +2033,75 @@ DOTTED
   8
 0
  10
-280.00000000000006
+341.0465053408527
  20
-298.00000000000006
+250.50000000000003
  30
 0.0
  11
-350.0
+255.02325267042647
  21
-298.0000000000001
+205.50000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-373.3333333333333
+255.0232526704265
  20
-298.0000000000001
+250.50000000000003
  30
 0.0
  11
-350.0
+255.02325267042647
  21
-298.0000000000001
+205.50000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-373.33333333333326
+255.02325267042653
  20
-368.00000000000006
+295.5
  30
 0.0
  11
-373.3333333333333
+255.0232526704265
  21
-298.0000000000001
+250.50000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-349.99999999999994
+341.0465053408528
  20
-368.00000000000006
+250.50000000000003
  30
 0.0
  11
-373.33333333333326
+255.02325267042653
  21
-368.00000000000006
+295.50000000000006
  31
 0.0
   0
@@ -1575,55 +2113,51 @@ DOTTED
   8
 0
  10
-350.00000000000006
+322.22840034432573
  20
-70.0
+315.08234220233646
  30
 0.0
  11
-280.0000000000001
+255.0232526704265
  21
-69.99999999999997
+295.50000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-350.00000000000006
+336.9191772000633
  20
--2.8421709430404014e-14
+264.6646844046729
  30
 0.0
  11
-280.0000000000001
+341.0465053408527
  21
-69.99999999999996
+250.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-350.00000000000006
+322.22840034432573
  20
--2.8421709430404014e-14
+315.08234220233646
  30
 0.0
  11
-350.00000000000006
+336.9191772000633
  21
-69.99999999999999
+264.6646844046729
  31
 0.0
   0
@@ -1633,15 +2167,15 @@ LINE
   8
 0
  10
-350.00000000000006
+307.53762348858817
  20
--2.8421709430404014e-14
+365.50000000000006
  30
 0.0
  11
-280.00000000000017
+322.22840034432573
  21
--5.684341886080803e-14
+315.0823422023364
  31
 0.0
   0
@@ -1649,73 +2183,79 @@ LINE
   6
 DOTTED
  62
-1
+3
   8
 0
  10
-280.00000000000017
+307.53762348858817
  20
--5.684341886080803e-14
+365.50000000000006
  30
 0.0
  11
-280.0000000000001
+255.02325267042653
  21
-69.99999999999997
+295.50000000000006
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-210.0000000000001
+255.0232526704266
  20
--1.1368683772161605e-13
+365.5000000000001
  30
 0.0
  11
-235.00000000000009
+255.0232526704265
  21
--8.526512829121203e-14
+295.5
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-280.0000000000001
+307.53762348858817
  20
--5.684341886080803e-14
+365.50000000000006
  30
 0.0
  11
-210.0000000000001
+255.0232526704266
  21
--1.1368683772161605e-13
+365.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-373.33333333333337
+255.02325267042653
  20
-0.0
+295.5
  30
 0.0
  11
-350.00000000000006
+86.02325267042642
  21
-0.0
+295.50000000000017
  31
 0.0
   0
@@ -1725,15 +2265,15 @@ LINE
   8
 0
  10
-373.33333333333337
+194.02325267042656
  20
-70.00000000000003
+365.50000000000017
  30
 0.0
  11
-373.33333333333337
+255.0232526704266
  21
-0.0
+365.5000000000001
  31
 0.0
   0
@@ -1743,15 +2283,15 @@ LINE
   8
 0
  10
-350.00000000000006
+86.02325267042649
  20
-70.00000000000001
+365.5000000000003
  30
 0.0
  11
-373.33333333333337
+86.02325267042649
  21
-70.00000000000003
+365.5000000000003
  31
 0.0
   0
@@ -1761,15 +2301,15 @@ LINE
   8
 0
  10
-350.0
+255.0232526704266
  20
-298.0000000000001
+365.5000000000001
  30
 0.0
  11
-350.0
+255.0232526704266
  21
-298.0000000000001
+365.5000000000001
  31
 0.0
   0
@@ -1779,15 +2319,15 @@ LINE
   8
 0
  10
-350.00000000000006
+255.0232526704266
  20
-70.0
+365.5000000000001
  30
 0.0
  11
-350.00000000000006
+194.02325267042656
  21
-70.0
+365.50000000000017
  31
 0.0
   0
@@ -1797,15 +2337,15 @@ LINE
   8
 0
  10
-350.0
+255.0232526704266
  20
-131.0
+365.5000000000001
  30
 0.0
  11
-350.00000000000006
+255.0232526704266
  21
-70.0
+365.5000000000001
  31
 0.0
   0
@@ -1815,15 +2355,15 @@ LINE
   8
 0
  10
-350.0
+86.0232526704265
  20
-141.0
+365.5000000000003
  30
 0.0
  11
-350.0
+86.0232526704265
  21
-131.0
+365.5000000000003
  31
 0.0
   0
@@ -1833,15 +2373,15 @@ LINE
   8
 0
  10
-350.0
+194.02325267042656
  20
-238.00000000000003
+365.50000000000017
  30
 0.0
  11
-350.0
+255.0232526704266
  21
-165.00000000000003
+365.5000000000001
  31
 0.0
   0
@@ -1851,15 +2391,15 @@ LINE
   8
 0
  10
-350.0
+184.02325267042656
  20
-238.00000000000003
+365.50000000000017
  30
 0.0
  11
-350.0
+194.02325267042656
  21
-238.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -1869,15 +2409,15 @@ LINE
   8
 0
  10
-350.00000000000006
+86.02325267042649
  20
-70.0
+365.5000000000003
  30
 0.0
  11
-350.00000000000006
+160.02325267042656
  21
-70.0
+365.50000000000017
  31
 0.0
   0
@@ -1887,35 +2427,33 @@ LINE
   8
 0
  10
-384.00000000000006
+86.02325267042649
  20
-141.0
+365.5000000000003
  30
 0.0
  11
-350.0
+86.02325267042649
  21
-141.0
+365.5000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-350.0
+255.0232526704266
  20
-165.00000000000003
+365.5000000000001
  30
 0.0
  11
-384.00000000000006
+255.0232526704266
  21
-165.00000000000006
+365.5000000000001
  31
 0.0
   0
@@ -1925,15 +2463,15 @@ LINE
   8
 0
  10
-420.00000000000006
+184.0232526704266
  20
-141.00000000000003
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+184.02325267042656
  21
-141.0
+365.50000000000017
  31
 0.0
   0
@@ -1941,19 +2479,19 @@ LINE
   6
 DOTTED
  62
-3
+1
   8
 0
  10
-420.00000000000006
+160.02325267042656
  20
-141.00000000000003
+365.50000000000017
  30
 0.0
  11
-420.00000000000006
+160.0232526704266
  21
-165.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -1963,33 +2501,35 @@ LINE
   8
 0
  10
-384.00000000000006
+184.02325267042661
  20
-165.00000000000006
+435.50000000000017
  30
 0.0
  11
-420.00000000000006
+184.0232526704266
  21
-165.00000000000006
+399.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-420.00000000000006
+184.02325267042661
  20
-165.00000000000006
+435.50000000000017
  30
 0.0
  11
-465.00000000000006
+160.0232526704266
  21
-165.00000000000009
+435.50000000000017
  31
 0.0
   0
@@ -1999,15 +2539,15 @@ LINE
   8
 0
  10
-465.00000000000006
+160.02325267042656
  20
-141.00000000000006
+399.5000000000001
  30
 0.0
  11
-420.00000000000006
+160.0232526704266
  21
-141.00000000000003
+435.50000000000017
  31
 0.0
   0
@@ -2017,15 +2557,15 @@ LINE
   8
 0
  10
-465.00000000000006
+160.0232526704266
  20
-165.00000000000009
+435.50000000000017
  30
 0.0
  11
-465.00000000000006
+160.02325267042661
  21
-141.00000000000006
+480.50000000000017
  31
 0.0
   0
@@ -2035,15 +2575,15 @@ LINE
   8
 0
  10
-350.0
+184.02325267042667
  20
-165.00000000000003
+480.50000000000017
  30
 0.0
  11
-350.0
+184.02325267042661
  21
-185.00000000000003
+435.50000000000017
  31
 0.0
   0
@@ -2053,35 +2593,15 @@ LINE
   8
 0
  10
-384.00000000000006
- 20
-185.00000000000006
- 30
-0.0
- 11
-384.00000000000006
- 21
-165.00000000000006
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-350.0
+160.02325267042661
  20
-185.00000000000003
+480.50000000000017
  30
 0.0
  11
-384.00000000000006
+184.02325267042667
  21
-185.00000000000006
+480.50000000000017
  31
 0.0
   0
@@ -2091,15 +2611,15 @@ LINE
   8
 0
  10
-350.0
+160.02325267042656
  20
-185.00000000000003
+365.50000000000017
  30
 0.0
  11
-350.0
+140.0232526704265
  21
-209.00000000000003
+365.50000000000017
  31
 0.0
   0
@@ -2109,15 +2629,15 @@ LINE
   8
 0
  10
-384.00000000000006
+140.02325267042653
  20
-209.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+160.02325267042656
  21
-185.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2129,15 +2649,15 @@ DOTTED
   8
 0
  10
-350.0
+140.0232526704265
  20
-209.00000000000003
+365.50000000000017
  30
 0.0
  11
-384.00000000000006
+140.02325267042653
  21
-209.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2147,15 +2667,15 @@ LINE
   8
 0
  10
-350.0
+140.02325267042653
  20
-209.00000000000006
+365.50000000000017
  30
 0.0
  11
-350.0
+116.02325267042652
  21
-229.00000000000006
+365.50000000000017
  31
 0.0
   0
@@ -2165,15 +2685,15 @@ LINE
   8
 0
  10
-384.00000000000006
+116.02325267042656
  20
-229.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+140.02325267042656
  21
-209.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2185,15 +2705,15 @@ DOTTED
   8
 0
  10
-384.00000000000006
+116.02325267042652
  20
-229.00000000000006
+365.50000000000017
  30
 0.0
  11
-350.0
+116.02325267042656
  21
-229.00000000000006
+399.5000000000001
  31
 0.0
   0
@@ -2203,15 +2723,15 @@ LINE
   8
 0
  10
-384.00000000000006
+116.02325267042652
  20
-239.00000000000006
+365.50000000000017
  30
 0.0
  11
-384.00000000000006
+96.02325267042652
  21
-229.00000000000006
+365.50000000000017
  31
 0.0
   0
@@ -2221,33 +2741,35 @@ LINE
   8
 0
  10
-350.0
+96.02325267042654
  20
-239.00000000000006
+399.5000000000001
  30
 0.0
  11
-384.00000000000006
+116.02325267042654
  21
-239.00000000000006
+399.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-350.0
+96.02325267042654
  20
-229.00000000000006
+399.5000000000001
  30
 0.0
  11
-350.0
+96.02325267042652
  21
-239.00000000000006
+365.50000000000017
  31
 0.0
   0
@@ -2257,15 +2779,15 @@ LINE
   8
 0
  10
-350.0
+86.02325267042654
  20
-298.00000000000006
+399.5000000000001
  30
 0.0
  11
-411.65427803486153
+96.02325267042654
  21
-298.0000000000001
+399.5000000000001
  31
 0.0
   0
@@ -2275,53 +2797,53 @@ LINE
   8
 0
  10
-411.65427803486153
+86.02325267042652
  20
-238.00000000000009
+365.50000000000017
  30
 0.0
  11
-350.0
+86.02325267042654
  21
-238.00000000000003
+399.5000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-411.65427803486153
+96.02325267042652
  20
-238.00000000000009
+365.50000000000017
  30
 0.0
  11
-411.65427803486153
+86.02325267042652
  21
-298.0000000000001
+365.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-438.65427803486153
+86.0232526704264
  20
-238.00000000000009
+295.50000000000017
  30
 0.0
  11
-411.65427803486153
+86.02325267042649
  21
-238.00000000000009
+365.5000000000002
  31
 0.0
   0
@@ -2333,15 +2855,15 @@ DOTTED
   8
 0
  10
-438.65427803486153
+86.02325267042649
  20
-298.0000000000001
+365.5000000000003
  30
 0.0
  11
-438.65427803486153
+33.508881852264885
  21
-238.00000000000009
+365.5000000000003
  31
 0.0
   0
@@ -2349,19 +2871,19 @@ LINE
   6
 DOTTED
  62
-1
+3
   8
 0
  10
-411.65427803486153
+86.0232526704264
  20
-298.0000000000001
+295.5000000000002
  30
 0.0
  11
-438.65427803486153
+33.508881852264885
  21
-298.0000000000001
+365.5000000000003
  31
 0.0
   0
@@ -2371,15 +2893,15 @@ LINE
   8
 0
  10
-500.30855606972295
+86.0232526704265
  20
-238.0000000000001
+383.00479027272075
  30
 0.0
  11
-438.65427803486153
+86.02325267042649
  21
-238.00000000000009
+365.5000000000003
  31
 0.0
   0
@@ -2389,15 +2911,15 @@ LINE
   8
 0
  10
-500.30855606972295
+33.5088818522649
  20
-298.00000000000017
+383.00479027272087
  30
 0.0
  11
-500.30855606972295
+86.0232526704265
  21
-238.0000000000001
+383.00479027272075
  31
 0.0
   0
@@ -2407,33 +2929,35 @@ LINE
   8
 0
  10
-438.6542780348615
+33.508881852264885
  20
-298.0000000000001
+365.5000000000003
  30
 0.0
  11
-500.30855606972295
+33.5088818522649
  21
-298.00000000000017
+383.00479027272087
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-411.6542780348615
+86.0232526704264
  20
-298.0000000000001
+295.50000000000017
  30
 0.0
  11
-411.6542780348615
+18.81810499652724
  21
-315.0000000000001
+315.08234220233675
  31
 0.0
   0
@@ -2443,35 +2967,33 @@ LINE
   8
 0
  10
-438.6542780348615
+18.81810499652724
  20
-315.00000000000017
+315.08234220233675
  30
 0.0
  11
-438.6542780348615
+33.508881852264885
  21
-298.0000000000001
+365.5000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-411.6542780348615
+4.127328140789602
  20
-315.0000000000001
+264.6646844046731
  30
 0.0
  11
-438.6542780348615
+18.81810499652724
  21
-315.00000000000017
+315.08234220233675
  31
 0.0
   0
@@ -2481,33 +3003,35 @@ LINE
   8
 0
  10
-411.6542780348615
+2.8421709430404014e-14
  20
-315.0000000000001
+250.50000000000028
  30
 0.0
  11
-411.6542780348615
+4.127328140789602
  21
-375.00000000000017
+264.6646844046731
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-438.6542780348615
+2.8421709430404014e-14
  20
-375.00000000000017
+250.50000000000028
  30
 0.0
  11
-438.6542780348615
+86.02325267042642
  21
-315.00000000000017
+295.50000000000017
  31
 0.0
   0
@@ -2519,51 +3043,55 @@ DOTTED
   8
 0
  10
-411.6542780348615
+86.02325267042637
  20
-375.00000000000017
+250.50000000000017
  30
 0.0
  11
-438.6542780348615
+86.02325267042642
  21
-375.00000000000017
+295.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-411.6542780348614
+86.0232526704263
  20
-375.00000000000017
+205.50000000000017
  30
 0.0
  11
-411.6542780348614
+86.02325267042636
  21
-392.00000000000017
+250.5000000000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-438.65427803486136
+1.4210854715202007e-14
  20
-392.00000000000017
+250.5000000000003
  30
 0.0
  11
-438.65427803486136
+86.0232526704263
  21
-375.00000000000017
+205.50000000000014
  31
 0.0
   0
@@ -2575,15 +3103,15 @@ DOTTED
   8
 0
  10
-438.65427803486136
+18.818104996527044
  20
-392.00000000000017
+185.91765779766385
  30
 0.0
  11
-411.6542780348614
+86.02325267042629
  21
-392.00000000000017
+205.50000000000014
  31
 0.0
   0
@@ -2593,15 +3121,15 @@ LINE
   8
 0
  10
-438.65427803486136
+4.127328140789545
  20
-402.00000000000017
+236.33531559532744
  30
 0.0
  11
-438.65427803486136
+0.0
  21
-392.00000000000017
+250.5000000000003
  31
 0.0
   0
@@ -2611,15 +3139,15 @@ LINE
   8
 0
  10
-411.6542780348614
+18.818104996527044
  20
-402.00000000000017
+185.91765779766385
  30
 0.0
  11
-438.65427803486136
+4.127328140789545
  21
-402.00000000000017
+236.33531559532744
  31
 0.0
   0
@@ -2629,69 +3157,75 @@ LINE
   8
 0
  10
-411.6542780348614
+33.50888185226453
  20
-392.00000000000017
+135.50000000000023
  30
 0.0
  11
-411.6542780348614
+18.818104996527044
  21
-402.00000000000017
+185.91765779766385
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-96.66666666666666
+33.50888185226453
  20
-368.00000000000006
+135.50000000000023
  30
 0.0
  11
-120.0
+86.02325267042629
  21
-368.00000000000006
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-96.66666666666666
+86.02325267042616
  20
-298.00000000000006
+135.5000000000001
  30
 0.0
  11
-96.66666666666666
+86.02325267042632
  21
-368.00000000000006
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-120.0
+33.508881852264544
  20
-298.00000000000006
+135.50000000000023
  30
 0.0
  11
-96.66666666666666
+86.02325267042616
  21
-298.00000000000006
+135.5000000000001
  31
 0.0
   0
@@ -2701,15 +3235,15 @@ LINE
   8
 0
  10
-120.00000000000001
+33.50888185226451
  20
-70.00000000000001
+117.9952097272797
  30
 0.0
  11
-120.00000000000001
+33.50888185226454
  21
-70.00000000000001
+135.50000000000023
  31
 0.0
   0
@@ -2719,15 +3253,15 @@ LINE
   8
 0
  10
-120.0
+86.02325267042612
  20
-298.00000000000006
+117.9952097272796
  30
 0.0
  11
-120.0
+33.50888185226451
  21
-298.00000000000006
+117.9952097272797
  31
 0.0
   0
@@ -2737,15 +3271,15 @@ LINE
   8
 0
  10
-110.0
+86.02325267042615
  20
-298.00000000000006
+135.5000000000001
  30
 0.0
  11
-120.0
+86.02325267042612
  21
-298.00000000000006
+117.9952097272796
  31
 0.0
   0
@@ -2755,15 +3289,15 @@ LINE
   8
 0
  10
-110.0
+307.5376234885882
  20
-238.00000000000003
+383.0047902727206
  30
 0.0
  11
-110.0
+307.53762348858817
  21
-298.00000000000006
+365.50000000000006
  31
 0.0
   0
@@ -2773,15 +3307,15 @@ LINE
   8
 0
  10
-120.0
+255.02325267042661
  20
-238.00000000000003
+383.00479027272064
  30
 0.0
  11
-110.0
+307.5376234885882
  21
-238.00000000000003
+383.0047902727206
  31
 0.0
   0
@@ -2791,15 +3325,15 @@ LINE
   8
 0
  10
-120.0
+255.0232526704266
  20
-165.00000000000003
+365.5000000000001
  30
 0.0
  11
-120.0
+255.02325267042661
  21
-238.00000000000003
+383.00479027272064
  31
 0.0
   0
@@ -2809,15 +3343,15 @@ LINE
   8
 0
  10
-120.00000000000001
+232.5914344886083
  20
-131.0
+127.75000000000001
  30
 0.0
  11
-120.0
+244.18234357951738
  21
-141.0
+127.75000000000001
  31
 0.0
   0
@@ -2827,15 +3361,15 @@ LINE
   8
 0
  10
-120.00000000000001
+244.18234357951738
  20
-70.00000000000001
+127.75000000000001
  30
 0.0
  11
-120.00000000000001
+244.18234357951738
  21
-70.00000000000001
+128.25000000000003
  31
 0.0
   0
@@ -2845,15 +3379,15 @@ LINE
   8
 0
  10
-120.0
+244.18234357951738
  20
-238.00000000000003
+128.25000000000003
  30
 0.0
  11
-120.0
+232.5914344886083
  21
-238.00000000000003
+128.25000000000003
  31
 0.0
   0
@@ -2863,35 +3397,33 @@ LINE
   8
 0
  10
-120.00000000000001
+232.5914344886083
  20
-141.0
+128.25000000000003
  30
 0.0
  11
-86.00000000000001
+232.5914344886083
  21
-141.0
+127.75000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-86.00000000000001
+204.86416176133557
  20
-165.00000000000003
+127.75000000000001
  30
 0.0
  11
-120.00000000000001
+216.45507085224466
  21
-165.00000000000003
+127.75000000000001
  31
 0.0
   0
@@ -2901,35 +3433,33 @@ LINE
   8
 0
  10
-50.0
+216.45507085224466
  20
-165.00000000000003
+127.75000000000001
  30
 0.0
  11
-86.00000000000001
+216.45507085224466
  21
-165.00000000000003
+128.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-50.0
+216.45507085224466
  20
-165.00000000000003
+128.25000000000003
  30
 0.0
  11
-50.0
+204.86416176133557
  21
-141.0
+128.25000000000003
  31
 0.0
   0
@@ -2939,15 +3469,15 @@ LINE
   8
 0
  10
-86.00000000000001
+204.86416176133557
  20
-141.0
+128.25000000000003
  30
 0.0
  11
-50.0
+204.86416176133557
  21
-141.0
+127.75000000000001
  31
 0.0
   0
@@ -2957,15 +3487,15 @@ LINE
   8
 0
  10
-50.0
+176.27325267042647
  20
-141.0
+124.41666666666669
  30
 0.0
  11
-5.000000000000001
+176.27325267042647
  21
-141.0
+112.58333333333334
  31
 0.0
   0
@@ -2975,15 +3505,15 @@ LINE
   8
 0
  10
-5.000000000000001
+176.27325267042647
  20
-165.00000000000003
+112.58333333333334
  30
 0.0
  11
-50.0
+176.77325267042644
  21
-165.00000000000003
+112.58333333333334
  31
 0.0
   0
@@ -2993,15 +3523,15 @@ LINE
   8
 0
  10
-0.0
+176.77325267042644
  20
-165.00000000000003
+112.58333333333334
  30
 0.0
  11
-5.000000000000001
+176.77325267042644
  21
-165.00000000000003
+124.41666666666669
  31
 0.0
   0
@@ -3011,15 +3541,15 @@ LINE
   8
 0
  10
-0.0
+176.77325267042644
  20
-141.0
+124.41666666666669
  30
 0.0
  11
-0.0
+176.27325267042647
  21
-165.00000000000003
+124.41666666666669
  31
 0.0
   0
@@ -3029,15 +3559,15 @@ LINE
   8
 0
  10
-5.000000000000001
+176.02325267042647
  20
-141.0
+16.750000000000004
  30
 0.0
  11
-0.0
+178.52325267042647
  21
-141.0
+16.750000000000004
  31
 0.0
   0
@@ -3047,15 +3577,15 @@ LINE
   8
 0
  10
-86.00000000000001
+178.52325267042647
  20
-165.00000000000003
+16.750000000000004
  30
 0.0
  11
-86.00000000000001
+176.02325267042647
  21
-185.00000000000003
+19.250000000000004
  31
 0.0
   0
@@ -3065,35 +3595,33 @@ LINE
   8
 0
  10
-120.00000000000001
+176.02325267042647
  20
-185.00000000000003
+19.250000000000004
  30
 0.0
  11
-120.00000000000001
+168.02325267042644
  21
-165.00000000000003
+19.250000000000004
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-86.00000000000001
+168.02325267042644
  20
-185.00000000000003
+19.250000000000004
  30
 0.0
  11
-120.00000000000001
+165.52325267042644
  21
-185.00000000000003
+16.750000000000004
  31
 0.0
   0
@@ -3103,15 +3631,15 @@ LINE
   8
 0
  10
-86.00000000000001
+165.52325267042644
  20
-185.00000000000003
+16.750000000000004
  30
 0.0
  11
-86.00000000000001
+168.02325267042644
  21
-209.00000000000003
+16.750000000000004
  31
 0.0
   0
@@ -3121,35 +3649,33 @@ LINE
   8
 0
  10
-120.00000000000001
+141.02325267042647
  20
-209.00000000000003
+112.50000000000001
  30
 0.0
  11
-120.00000000000001
+145.02325267042644
  21
-185.00000000000003
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-86.00000000000001
+145.02325267042644
  20
-209.00000000000003
+112.50000000000001
  30
 0.0
  11
-120.00000000000001
+145.02325267042644
  21
-209.00000000000003
+124.50000000000001
  31
 0.0
   0
@@ -3159,15 +3685,15 @@ LINE
   8
 0
  10
-86.00000000000001
+145.02325267042644
  20
-209.00000000000003
+124.50000000000001
  30
 0.0
  11
-86.00000000000001
+141.02325267042647
  21
-229.00000000000003
+124.50000000000001
  31
 0.0
   0
@@ -3177,35 +3703,33 @@ LINE
   8
 0
  10
-120.00000000000001
+141.02325267042647
  20
-229.00000000000003
+124.50000000000001
  30
 0.0
  11
-120.00000000000001
+141.02325267042647
  21
-209.00000000000003
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-120.00000000000001
+153.02325267042647
  20
-229.00000000000003
+114.00000000000001
  30
 0.0
  11
-86.00000000000001
+157.02325267042647
  21
-229.00000000000003
+114.00000000000001
  31
 0.0
   0
@@ -3215,15 +3739,15 @@ LINE
   8
 0
  10
-120.00000000000001
+157.02325267042647
  20
-239.00000000000003
+114.00000000000001
  30
 0.0
  11
-120.00000000000001
+157.02325267042647
  21
-229.00000000000003
+123.00000000000001
  31
 0.0
   0
@@ -3233,15 +3757,15 @@ LINE
   8
 0
  10
-86.00000000000001
+157.02325267042647
  20
-239.00000000000003
+123.00000000000001
  30
 0.0
  11
-120.00000000000001
+153.02325267042647
  21
-239.00000000000003
+123.00000000000001
  31
 0.0
   0
@@ -3251,35 +3775,33 @@ LINE
   8
 0
  10
-86.00000000000001
+153.02325267042647
  20
-229.00000000000003
+123.00000000000001
  30
 0.0
  11
-86.00000000000001
+153.02325267042647
  21
-239.00000000000003
+114.00000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-83.86137800081468
+116.52325267042646
  20
-131.0
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+139.52325267042647
  21
-70.00000000000001
+112.50000000000001
  31
 0.0
   0
@@ -3289,15 +3811,15 @@ LINE
   8
 0
  10
-120.00000000000001
+139.52325267042647
  20
-70.00000000000001
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+139.52325267042647
  21
-70.00000000000001
+124.50000000000001
  31
 0.0
   0
@@ -3307,55 +3829,51 @@ LINE
   8
 0
  10
-83.86137800081468
+139.52325267042647
  20
-131.0
+124.50000000000001
  30
 0.0
  11
-120.0
+116.52325267042646
  21
-131.0
+124.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-59.86137800081469
+116.52325267042646
  20
-70.00000000000001
+124.50000000000001
  30
 0.0
  11
-59.86137800081469
+116.52325267042646
  21
-131.0
+112.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-59.86137800081469
+111.02325267042646
  20
-70.00000000000001
+112.50000000000001
  30
 0.0
  11
-83.86137800081468
+115.02325267042646
  21
-70.00000000000001
+112.50000000000001
  31
 0.0
   0
@@ -3365,15 +3883,15 @@ LINE
   8
 0
  10
-23.722756001629364
+115.02325267042646
  20
-131.0
+112.50000000000001
  30
 0.0
  11
-59.86137800081469
+115.02325267042646
  21
-131.0
+124.50000000000001
  31
 0.0
   0
@@ -3383,15 +3901,15 @@ LINE
   8
 0
  10
-59.86137800081469
+115.02325267042646
  20
-70.0
+124.50000000000001
  30
 0.0
  11
-23.722756001629364
+111.02325267042646
  21
-70.0
+124.50000000000001
  31
 0.0
   0
@@ -3401,15 +3919,15 @@ LINE
   8
 0
  10
-13.722756001629365
+111.02325267042646
  20
-131.0
+124.50000000000001
  30
 0.0
  11
-23.722756001629364
+111.02325267042646
  21
-131.0
+112.50000000000001
  31
 0.0
   0
@@ -3419,15 +3937,15 @@ LINE
   8
 0
  10
-13.722756001629365
+88.52325267042646
  20
-70.0
+112.83333333333336
  30
 0.0
  11
-13.722756001629365
+93.52325267042646
  21
-131.0
+112.83333333333336
  31
 0.0
   0
@@ -3437,15 +3955,15 @@ LINE
   8
 0
  10
-23.722756001629364
+93.52325267042646
  20
-70.0
+112.83333333333336
  30
 0.0
  11
-13.722756001629365
+93.52325267042646
  21
-70.0
+124.16666666666669
  31
 0.0
   0
@@ -3455,15 +3973,15 @@ LINE
   8
 0
  10
-59.86137800081469
+93.52325267042646
  20
-60.00000000000001
+124.16666666666669
  30
 0.0
  11
-59.86137800081469
+88.52325267042646
  21
-70.00000000000001
+124.16666666666669
  31
 0.0
   0
@@ -3473,15 +3991,15 @@ LINE
   8
 0
  10
-83.86137800081468
+212.02325267042647
  20
-60.00000000000001
+80.86137800081471
  30
 0.0
  11
-59.86137800081469
+223.02325267042647
  21
-60.00000000000001
+80.86137800081471
  31
 0.0
   0
@@ -3491,15 +4009,15 @@ LINE
   8
 0
  10
-83.86137800081468
+223.02325267042647
  20
-70.00000000000001
+80.86137800081471
  30
 0.0
  11
-83.86137800081468
+223.02325267042647
  21
-60.00000000000001
+93.86137800081471
  31
 0.0
   0
@@ -3509,15 +4027,15 @@ LINE
   8
 0
  10
-83.86137800081468
+223.02325267042647
  20
-141.0
+93.86137800081471
  30
 0.0
  11
-83.86137800081468
+212.02325267042647
  21
-131.0
+93.86137800081471
  31
 0.0
   0
@@ -3527,15 +4045,15 @@ LINE
   8
 0
  10
-59.86137800081469
+212.02325267042647
  20
-141.0
+93.86137800081471
  30
 0.0
  11
-83.86137800081468
+212.02325267042647
  21
-141.0
+80.86137800081471
  31
 0.0
   0
@@ -3545,15 +4063,15 @@ LINE
   8
 0
  10
-59.86137800081469
+243.52325267042647
  20
-131.0
+82.36137800081471
  30
 0.0
  11
-59.86137800081469
+249.52325267042647
  21
-141.0
+82.36137800081471
  31
 0.0
   0
@@ -3563,15 +4081,15 @@ LINE
   8
 0
  10
-236.91666666666669
+249.52325267042647
  20
-17.74999999999997
+82.36137800081471
  30
 0.0
  11
-213.08333333333334
+249.52325267042647
  21
-17.74999999999997
+92.36137800081471
  31
 0.0
   0
@@ -3581,15 +4099,15 @@ LINE
   8
 0
  10
-213.08333333333334
+249.52325267042647
  20
-17.74999999999997
+92.36137800081471
  30
 0.0
  11
-213.08333333333334
+243.52325267042647
  21
-17.249999999999975
+92.36137800081471
  31
 0.0
   0
@@ -3599,15 +4117,15 @@ LINE
   8
 0
  10
-213.08333333333334
+243.52325267042647
  20
-17.249999999999975
+92.36137800081471
  30
 0.0
  11
-236.91666666666669
+243.52325267042647
  21
-17.249999999999975
+82.36137800081471
  31
 0.0
   0
@@ -3617,15 +4135,15 @@ LINE
   8
 0
  10
-236.91666666666669
+243.93234357951738
  20
-17.249999999999975
+31.722756001629396
  30
 0.0
  11
-236.91666666666669
+243.93234357951738
  21
-17.74999999999997
+36.7227560016294
  31
 0.0
   0
@@ -3635,15 +4153,15 @@ LINE
   8
 0
  10
-102.50000000000001
+243.93234357951738
  20
-23.333333333333318
+36.7227560016294
  30
 0.0
  11
-114.1666666666667
+232.8414344886083
  21
-23.333333333333318
+36.7227560016294
  31
 0.0
   0
@@ -3653,15 +4171,15 @@ LINE
   8
 0
  10
-114.1666666666667
+232.8414344886083
  20
-23.333333333333318
+36.7227560016294
  30
 0.0
  11
-114.16666666666669
+232.8414344886083
  21
-46.66666666666666
+31.722756001629396
  31
 0.0
   0
@@ -3671,15 +4189,15 @@ LINE
   8
 0
  10
-114.16666666666669
+216.20507085224466
  20
-46.66666666666666
+31.722756001629396
  30
 0.0
  11
-102.50000000000004
+216.20507085224466
  21
-46.66666666666666
+36.7227560016294
  31
 0.0
   0
@@ -3689,15 +4207,15 @@ LINE
   8
 0
  10
-213.08333333333334
+216.20507085224466
  20
-350.25
+36.7227560016294
  30
 0.0
  11
-236.91666666666666
+205.11416176133554
  21
-350.25
+36.7227560016294
  31
 0.0
   0
@@ -3707,15 +4225,15 @@ LINE
   8
 0
  10
-236.91666666666666
+205.11416176133554
  20
-350.25
+36.7227560016294
  30
 0.0
  11
-236.91666666666666
+205.11416176133554
  21
-350.75
+31.722756001629396
  31
 0.0
   0
@@ -3725,15 +4243,15 @@ LINE
   8
 0
  10
-236.91666666666666
+262.52325267042653
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-213.08333333333334
+257.52325267042653
  21
-350.75
+91.36137800081471
  31
 0.0
   0
@@ -3743,15 +4261,15 @@ LINE
   8
 0
  10
-213.08333333333334
+257.52325267042653
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-213.08333333333334
+257.52325267042653
  21
-350.25
+83.36137800081471
  31
 0.0
   0
@@ -3761,15 +4279,15 @@ LINE
   8
 0
  10
-233.08333333333334
+257.52325267042653
  20
-350.25
+83.36137800081471
  30
 0.0
  11
-256.9166666666667
+262.52325267042653
  21
-350.25
+83.36137800081471
  31
 0.0
   0
@@ -3779,15 +4297,15 @@ LINE
   8
 0
  10
-256.9166666666667
+186.52325267042647
  20
-350.25
+83.36137800081471
  30
 0.0
  11
-256.9166666666667
+191.52325267042647
  21
-350.75
+83.36137800081471
  31
 0.0
   0
@@ -3797,15 +4315,15 @@ LINE
   8
 0
  10
-256.9166666666667
+191.52325267042647
  20
-350.75
+83.36137800081471
  30
 0.0
  11
-233.08333333333334
+191.52325267042647
  21
-350.75
+91.36137800081471
  31
 0.0
   0
@@ -3815,15 +4333,15 @@ LINE
   8
 0
  10
-233.08333333333334
+191.52325267042647
  20
-350.75
+91.36137800081471
  30
 0.0
  11
-233.08333333333334
+186.52325267042647
  21
-350.25
+91.36137800081471
  31
 0.0
   0
@@ -3833,15 +4351,15 @@ LINE
   8
 0
  10
-367.5
+290.0328332158675
  20
-344.6666666666668
+122.37140729545962
  30
 0.0
  11
-355.83333333333337
+290.0328332158675
  21
-344.6666666666668
+131.12380243181985
  31
 0.0
   0
@@ -3851,15 +4369,15 @@ LINE
   8
 0
  10
-355.83333333333337
+290.0328332158675
  20
-344.6666666666668
+131.12380243181985
  30
 0.0
  11
-355.83333333333337
+272.52804294314694
  21
-321.3333333333334
+131.12380243181988
  31
 0.0
   0
@@ -3869,15 +4387,15 @@ LINE
   8
 0
  10
-355.83333333333337
+272.52804294314694
  20
-321.3333333333334
+131.12380243181988
  30
 0.0
  11
-367.50000000000006
+272.52804294314694
  21
-321.3333333333334
+122.37140729545962
  31
 0.0
   0
@@ -3887,15 +4405,15 @@ LINE
   8
 0
  10
-256.91666666666674
+319.2477556839554
  20
-17.749999999999915
+223.5120791976936
  30
 0.0
  11
-233.08333333333343
+314.2109561925024
  21
-17.74999999999989
+206.22615649603978
  31
 0.0
   0
@@ -3905,15 +4423,15 @@ LINE
   8
 0
  10
-233.08333333333343
+314.2109561925024
  20
-17.74999999999989
+206.22615649603978
  30
 0.0
  11
-233.08333333333343
+314.69099296160164
  21
-17.249999999999886
+206.08628262316594
  31
 0.0
   0
@@ -3923,15 +4441,15 @@ LINE
   8
 0
  10
-233.08333333333343
+314.69099296160164
  20
-17.249999999999886
+206.08628262316594
  30
 0.0
  11
-256.91666666666674
+319.72779245305475
  21
-17.24999999999992
+223.37220532481973
  31
 0.0
   0
@@ -3941,15 +4459,15 @@ LINE
   8
 0
  10
-256.91666666666674
+319.72779245305475
  20
-17.24999999999992
+223.37220532481973
  30
 0.0
  11
-256.91666666666674
+319.2477556839554
  21
-17.749999999999915
+223.5120791976936
  31
 0.0
   0
@@ -3959,15 +4477,15 @@ LINE
   8
 0
  10
-367.5000000000001
+314.21095619250247
  20
-46.66666666666669
+294.77384350396034
  30
 0.0
  11
-355.8333333333334
+319.24775568395546
  21
-46.66666666666666
+277.4879208023065
  31
 0.0
   0
@@ -3977,15 +4495,15 @@ LINE
   8
 0
  10
-355.8333333333334
+319.24775568395546
  20
-46.66666666666666
+277.4879208023065
  30
 0.0
  11
-355.8333333333334
+319.72779245305475
  21
-23.333333333333346
+277.6277946751803
  31
 0.0
   0
@@ -3995,15 +4513,15 @@ LINE
   8
 0
  10
-355.8333333333334
+319.72779245305475
  20
-23.333333333333346
+277.6277946751803
  30
 0.0
  11
-367.50000000000006
+314.69099296160164
  21
-23.333333333333346
+294.91371737683414
  31
 0.0
   0
@@ -4013,15 +4531,15 @@ LINE
   8
 0
  10
-342.2500000000001
+314.69099296160164
  20
-92.43181818181819
+294.91371737683414
  30
 0.0
  11
-342.2500000000001
+314.21095619250247
  21
-80.84090909090908
+294.77384350396034
  31
 0.0
   0
@@ -4031,15 +4549,15 @@ LINE
   8
 0
  10
-342.2500000000001
+216.45507085224477
  20
-80.84090909090908
+373.25000000000017
  30
 0.0
  11
-342.7500000000001
+204.86416176133565
  21
-80.84090909090908
+373.25000000000017
  31
 0.0
   0
@@ -4049,15 +4567,15 @@ LINE
   8
 0
  10
-342.7500000000001
+204.86416176133565
  20
-80.84090909090908
+373.25000000000017
  30
 0.0
  11
-342.7500000000001
+204.86416176133565
  21
-92.43181818181819
+372.7500000000001
  31
 0.0
   0
@@ -4067,15 +4585,15 @@ LINE
   8
 0
  10
-342.7500000000001
+204.86416176133565
  20
-92.43181818181819
+372.7500000000001
  30
 0.0
  11
-342.2500000000001
+216.45507085224477
  21
-92.43181818181819
+372.7500000000001
  31
 0.0
   0
@@ -4085,15 +4603,15 @@ LINE
   8
 0
  10
-342.25000000000006
+216.45507085224477
  20
-120.15909090909092
+372.7500000000001
  30
 0.0
  11
-342.25000000000006
+216.45507085224477
  21
-108.56818181818183
+373.25000000000017
  31
 0.0
   0
@@ -4103,15 +4621,15 @@ LINE
   8
 0
  10
-342.25000000000006
+244.1823435795175
  20
-108.56818181818183
+373.25000000000006
  30
 0.0
  11
-342.75000000000006
+232.5914344886084
  21
-108.56818181818183
+373.25000000000017
  31
 0.0
   0
@@ -4121,15 +4639,15 @@ LINE
   8
 0
  10
-342.75000000000006
+232.5914344886084
  20
-108.56818181818183
+373.25000000000017
  30
 0.0
  11
-342.75000000000006
+232.5914344886084
  21
-120.15909090909092
+372.7500000000001
  31
 0.0
   0
@@ -4139,15 +4657,15 @@ LINE
   8
 0
  10
-342.75000000000006
+232.5914344886084
  20
-120.15909090909092
+372.7500000000001
  30
 0.0
  11
-342.25000000000006
+244.1823435795175
  21
-120.15909090909092
+372.75000000000006
  31
 0.0
   0
@@ -4157,15 +4675,15 @@ LINE
   8
 0
  10
-372.9166666666667
+244.1823435795175
  20
-148.75000000000003
+372.75000000000006
  30
 0.0
  11
-361.0833333333334
+244.1823435795175
  21
-148.75000000000003
+373.25000000000006
  31
 0.0
   0
@@ -4175,15 +4693,15 @@ LINE
   8
 0
  10
-361.0833333333334
+232.5914344886084
  20
-148.75000000000003
+357.75000000000017
  30
 0.0
  11
-361.0833333333334
+244.1823435795175
  21
-148.25
+357.7500000000001
  31
 0.0
   0
@@ -4193,15 +4711,15 @@ LINE
   8
 0
  10
-361.0833333333334
+244.1823435795175
  20
-148.25
+357.7500000000001
  30
 0.0
  11
-372.9166666666667
+244.1823435795175
  21
-148.25
+358.2500000000001
  31
 0.0
   0
@@ -4211,15 +4729,15 @@ LINE
   8
 0
  10
-372.9166666666667
+244.1823435795175
  20
-148.25
+358.2500000000001
  30
 0.0
  11
-372.9166666666667
+232.5914344886084
  21
-148.75000000000003
+358.25000000000017
  31
 0.0
   0
@@ -4229,15 +4747,15 @@ LINE
   8
 0
  10
-461.00000000000006
+232.5914344886084
  20
-157.25000000000009
+358.25000000000017
  30
 0.0
  11
-461.00000000000006
+232.5914344886084
  21
-148.75000000000009
+357.75000000000017
  31
 0.0
   0
@@ -4247,15 +4765,15 @@ LINE
   8
 0
  10
-461.00000000000006
+204.86416176133562
  20
-148.75000000000009
+357.75000000000017
  30
 0.0
  11
-461.50000000000006
+216.45507085224475
  21
-148.75000000000009
+357.75000000000017
  31
 0.0
   0
@@ -4265,15 +4783,15 @@ LINE
   8
 0
  10
-461.50000000000006
+216.45507085224475
  20
-148.75000000000009
+357.75000000000017
  30
 0.0
  11
-461.50000000000006
+216.45507085224475
  21
-157.25000000000009
+358.25000000000017
  31
 0.0
   0
@@ -4283,15 +4801,15 @@ LINE
   8
 0
  10
-461.50000000000006
+216.45507085224475
  20
-157.25000000000009
+358.25000000000017
  30
 0.0
  11
-461.00000000000006
+204.86416176133562
  21
-157.25000000000009
+358.25000000000017
  31
 0.0
   0
@@ -4301,15 +4819,15 @@ LINE
   8
 0
  10
-361.00000000000006
+204.86416176133562
  20
-184.00000000000003
+358.25000000000017
  30
 0.0
  11
-361.00000000000006
+204.86416176133562
  21
-180.00000000000006
+357.75000000000017
  31
 0.0
   0
@@ -4319,15 +4837,15 @@ LINE
   8
 0
  10
-361.00000000000006
+176.27325267042653
  20
-180.00000000000006
+388.4166666666668
  30
 0.0
  11
-373.0
+176.27325267042653
  21
-180.00000000000006
+376.5833333333335
  31
 0.0
   0
@@ -4337,15 +4855,15 @@ LINE
   8
 0
  10
-373.0
+176.27325267042653
  20
-180.00000000000006
+376.5833333333335
  30
 0.0
  11
-373.0
+176.77325267042653
  21
-184.00000000000003
+376.5833333333335
  31
 0.0
   0
@@ -4355,15 +4873,15 @@ LINE
   8
 0
  10
-373.0
+176.77325267042653
  20
-184.00000000000003
+376.5833333333335
  30
 0.0
  11
-361.00000000000006
+176.77325267042653
  21
-184.00000000000003
+388.4166666666668
  31
 0.0
   0
@@ -4373,15 +4891,15 @@ LINE
   8
 0
  10
-362.50000000000006
+176.77325267042653
  20
-172.00000000000003
+388.4166666666668
  30
 0.0
  11
-362.50000000000006
+176.27325267042653
  21
-168.0
+388.4166666666668
  31
 0.0
   0
@@ -4391,15 +4909,15 @@ LINE
   8
 0
  10
-362.50000000000006
+167.77325267042664
  20
-168.0
+476.50000000000017
  30
 0.0
  11
-371.50000000000006
+176.27325267042661
  21
-168.00000000000003
+476.50000000000017
  31
 0.0
   0
@@ -4409,15 +4927,15 @@ LINE
   8
 0
  10
-371.50000000000006
+176.27325267042661
  20
-168.00000000000003
+476.50000000000017
  30
 0.0
  11
-371.50000000000006
+176.27325267042661
  21
-172.00000000000006
+477.00000000000017
  31
 0.0
   0
@@ -4427,15 +4945,15 @@ LINE
   8
 0
  10
-371.50000000000006
+176.27325267042661
  20
-172.00000000000006
+477.00000000000017
  30
 0.0
  11
-362.50000000000006
+167.77325267042664
  21
-172.00000000000003
+477.00000000000017
  31
 0.0
   0
@@ -4445,15 +4963,15 @@ LINE
   8
 0
  10
-361.00000000000006
+167.77325267042664
  20
-208.50000000000006
+477.00000000000017
  30
 0.0
  11
-361.00000000000006
+167.77325267042664
  21
-185.50000000000006
+476.50000000000017
  31
 0.0
   0
@@ -4463,15 +4981,15 @@ LINE
   8
 0
  10
-361.00000000000006
+141.02325267042656
  20
-185.50000000000006
+376.50000000000017
  30
 0.0
  11
-373.0
+145.02325267042653
  21
-185.50000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4481,15 +4999,15 @@ LINE
   8
 0
  10
-373.0
+145.02325267042653
  20
-185.50000000000006
+376.50000000000017
  30
 0.0
  11
-373.0
+145.02325267042653
  21
-208.50000000000006
+388.50000000000017
  31
 0.0
   0
@@ -4499,15 +5017,15 @@ LINE
   8
 0
  10
-373.0
+145.02325267042653
  20
-208.50000000000006
+388.50000000000017
  30
 0.0
  11
-361.00000000000006
+141.02325267042656
  21
-208.50000000000006
+388.50000000000017
  31
 0.0
   0
@@ -4517,15 +5035,15 @@ LINE
   8
 0
  10
-361.00000000000006
+141.02325267042656
  20
-214.00000000000006
+388.50000000000017
  30
 0.0
  11
-361.00000000000006
+141.02325267042656
  21
-210.00000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4535,15 +5053,15 @@ LINE
   8
 0
  10
-361.00000000000006
+153.02325267042656
  20
-210.00000000000006
+378.00000000000017
  30
 0.0
  11
-373.0
+157.02325267042656
  21
-210.00000000000006
+378.00000000000017
  31
 0.0
   0
@@ -4553,15 +5071,15 @@ LINE
   8
 0
  10
-373.0
+157.02325267042656
  20
-210.00000000000006
+378.00000000000017
  30
 0.0
  11
-373.0
+157.02325267042656
  21
-214.00000000000006
+387.00000000000017
  31
 0.0
   0
@@ -4571,15 +5089,15 @@ LINE
   8
 0
  10
-373.0
+157.02325267042656
  20
-214.00000000000006
+387.00000000000017
  30
 0.0
  11
-361.00000000000006
+153.02325267042656
  21
-214.00000000000006
+387.00000000000017
  31
 0.0
   0
@@ -4589,15 +5107,15 @@ LINE
   8
 0
  10
-361.3333333333334
+153.02325267042656
  20
-236.50000000000003
+387.00000000000017
  30
 0.0
  11
-361.3333333333334
+153.02325267042656
  21
-231.50000000000006
+378.00000000000017
  31
 0.0
   0
@@ -4607,15 +5125,15 @@ LINE
   8
 0
  10
-361.3333333333334
+116.52325267042653
  20
-231.50000000000006
+376.50000000000017
  30
 0.0
  11
-372.6666666666667
+139.52325267042656
  21
-231.50000000000006
+376.50000000000017
  31
 0.0
   0
@@ -4625,15 +5143,15 @@ LINE
   8
 0
  10
-372.6666666666667
+139.52325267042656
  20
-231.50000000000006
+376.50000000000017
  30
 0.0
  11
-372.6666666666667
+139.52325267042656
  21
-236.50000000000003
+388.50000000000017
  31
 0.0
   0
@@ -4643,15 +5161,15 @@ LINE
   8
 0
  10
-416.15427803486153
+139.52325267042656
  20
-297.5000000000001
+388.50000000000017
  30
 0.0
  11
-416.15427803486153
+116.52325267042654
  21
-294.5000000000001
+388.50000000000017
  31
 0.0
   0
@@ -4661,15 +5179,15 @@ LINE
   8
 0
  10
-416.15427803486153
+116.52325267042654
  20
-294.5000000000001
+388.50000000000017
  30
 0.0
  11
-434.15427803486153
+116.52325267042653
  21
-294.5000000000001
+376.50000000000017
  31
 0.0
   0
@@ -4679,15 +5197,15 @@ LINE
   8
 0
  10
-434.15427803486153
+111.02325267042653
  20
-294.5000000000001
+376.50000000000017
  30
 0.0
  11
-434.15427803486153
+115.02325267042653
  21
-297.5000000000001
+376.50000000000017
  31
 0.0
   0
@@ -4697,15 +5215,15 @@ LINE
   8
 0
  10
-434.15427803486153
+115.02325267042653
  20
-297.5000000000001
+376.50000000000017
  30
 0.0
  11
-416.15427803486153
+115.02325267042653
  21
-297.5000000000001
+388.50000000000017
  31
 0.0
   0
@@ -4715,15 +5233,15 @@ LINE
   8
 0
  10
-429.90427803486153
+115.02325267042653
  20
-245.75000000000009
+388.50000000000017
  30
 0.0
  11
-420.40427803486153
+111.02325267042654
  21
-245.75000000000009
+388.50000000000017
  31
 0.0
   0
@@ -4733,15 +5251,15 @@ LINE
   8
 0
  10
-420.40427803486153
+111.02325267042654
  20
-245.75000000000009
+388.50000000000017
  30
 0.0
  11
-420.40427803486153
+111.02325267042653
  21
-245.25000000000009
+376.50000000000017
  31
 0.0
   0
@@ -4751,15 +5269,15 @@ LINE
   8
 0
  10
-420.40427803486153
+88.52325267042652
  20
-245.25000000000009
+376.8333333333335
  30
 0.0
  11
-429.90427803486153
+93.5232526704265
  21
-245.25000000000009
+376.8333333333335
  31
 0.0
   0
@@ -4769,15 +5287,15 @@ LINE
   8
 0
  10
-429.90427803486153
+93.5232526704265
  20
-245.25000000000009
+376.8333333333335
  30
 0.0
  11
-429.90427803486153
+93.52325267042652
  21
-245.75000000000009
+388.16666666666686
  31
 0.0
   0
@@ -4787,15 +5305,15 @@ LINE
   8
 0
  10
-492.55855606972295
+93.52325267042652
  20
-278.25000000000017
+388.16666666666686
  30
 0.0
  11
-492.55855606972295
+88.52325267042653
  21
-257.75000000000017
+388.16666666666686
  31
 0.0
   0
@@ -4805,15 +5323,15 @@ LINE
   8
 0
  10
-492.55855606972295
+51.01367212498543
  20
-257.75000000000017
+378.6285927045407
  30
 0.0
  11
-493.05855606972295
+51.013672124985426
  21
-257.75000000000017
+369.87619756818043
  31
 0.0
   0
@@ -4823,15 +5341,15 @@ LINE
   8
 0
  10
-493.05855606972295
+51.013672124985426
  20
-257.75000000000017
+369.87619756818043
  30
 0.0
  11
-493.05855606972295
+68.51846239770595
  21
-278.25000000000017
+369.87619756818043
  31
 0.0
   0
@@ -4841,15 +5359,15 @@ LINE
   8
 0
  10
-493.05855606972295
+68.51846239770595
  20
-278.25000000000017
+369.87619756818043
  30
 0.0
  11
-492.55855606972295
+68.51846239770595
  21
-278.25000000000017
+378.6285927045407
  31
 0.0
   0
@@ -4859,15 +5377,15 @@ LINE
   8
 0
  10
-416.1542780348615
+21.798749656897446
  20
-301.0000000000001
+277.4879208023067
  30
 0.0
  11
-416.1542780348615
+26.83554914835048
  21
-298.0000000000001
+294.7738435039605
  31
 0.0
   0
@@ -4877,15 +5395,15 @@ LINE
   8
 0
  10
-416.1542780348615
+26.83554914835048
  20
-298.0000000000001
+294.7738435039605
  30
 0.0
  11
-434.1542780348615
+26.3555123792512
  21
-298.0000000000001
+294.9137173768343
  31
 0.0
   0
@@ -4895,15 +5413,15 @@ LINE
   8
 0
  10
-434.1542780348615
+26.3555123792512
  20
-298.0000000000001
+294.9137173768343
  30
 0.0
  11
-434.1542780348615
+21.318712887798156
  21
-301.0000000000001
+277.62779467518055
  31
 0.0
   0
@@ -4913,15 +5431,15 @@ LINE
   8
 0
  10
-434.1542780348615
+21.318712887798156
  20
-301.0000000000001
+277.62779467518055
  30
 0.0
  11
-416.1542780348615
+21.798749656897446
  21
-301.0000000000001
+277.4879208023067
  31
 0.0
   0
@@ -4931,15 +5449,15 @@ LINE
   8
 0
  10
-420.6542780348614
+26.835549148350342
  20
-399.5000000000001
+206.22615649604003
  30
 0.0
  11
-420.6542780348614
+21.798749656897346
  21
-394.50000000000017
+223.51207919769385
  31
 0.0
   0
@@ -4949,15 +5467,15 @@ LINE
   8
 0
  10
-420.6542780348614
+21.798749656897346
  20
-394.50000000000017
+223.51207919769385
  30
 0.0
  11
-429.65427803486136
+21.31871288779806
  21
-394.50000000000017
+223.37220532482002
  31
 0.0
   0
@@ -4967,15 +5485,15 @@ LINE
   8
 0
  10
-429.65427803486136
+21.31871288779806
  20
-394.50000000000017
+223.37220532482002
  30
 0.0
  11
-429.65427803486136
+26.355512379251053
  21
-399.5000000000001
+206.08628262316617
  31
 0.0
   0
@@ -4985,15 +5503,15 @@ LINE
   8
 0
  10
-102.50000000000001
+26.355512379251053
  20
-321.33333333333337
+206.08628262316617
  30
 0.0
  11
-114.16666666666667
+26.835549148350342
  21
-321.33333333333337
+206.22615649604003
  31
 0.0
   0
@@ -5003,15 +5521,15 @@ LINE
   8
 0
  10
-114.16666666666667
+68.51846239770559
  20
-321.33333333333337
+122.37140729545976
  30
 0.0
  11
-114.16666666666667
+68.51846239770562
  21
-344.6666666666667
+131.12380243182005
  31
 0.0
   0
@@ -5021,15 +5539,15 @@ LINE
   8
 0
  10
-114.16666666666667
+68.51846239770562
  20
-344.6666666666667
+131.12380243182005
  30
 0.0
  11
-102.50000000000001
+51.01367212498507
  21
-344.6666666666667
+131.12380243182008
  31
 0.0
   0
@@ -5039,15 +5557,15 @@ LINE
   8
 0
  10
-112.5
+51.01367212498507
  20
-258.0
+131.12380243182008
  30
 0.0
  11
-112.5
+51.01367212498506
  21
-253.00000000000003
+122.3714072954598
  31
 0.0
   0
@@ -5057,15 +5575,15 @@ LINE
   8
 0
  10
-112.5
+272.52804294314706
  20
-253.00000000000003
+378.6285927045405
  30
 0.0
  11
-117.5
+272.52804294314706
  21
-258.0
+369.87619756818015
  31
 0.0
   0
@@ -5075,15 +5593,15 @@ LINE
   8
 0
  10
-117.5
+272.52804294314706
  20
-258.0
+369.87619756818015
  30
 0.0
  11
-117.5
+290.03283321586764
  21
-278.0
+369.87619756818015
  31
 0.0
   0
@@ -5093,15 +5611,15 @@ LINE
   8
 0
  10
-117.5
+290.03283321586764
  20
-278.0
+369.87619756818015
  30
 0.0
  11
-112.5
+290.03283321586764
  21
-283.0
+378.6285927045405
  31
 0.0
   0
@@ -5111,15 +5629,15 @@ LINE
   8
 0
  10
-112.5
+511.3550614105758
  20
-283.0
+105.00000000000001
  30
 0.0
  11
-112.5
+449.7007833757143
  21
-278.0
+105.00000000000001
  31
 0.0
   0
@@ -5129,33 +5647,35 @@ LINE
   8
 0
  10
-108.91666666666669
+449.7007833757143
  20
-148.75000000000003
+166.0
  30
 0.0
  11
-97.08333333333336
+511.3550614105758
  21
-148.75000000000003
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-97.08333333333336
+449.7007833757143
  20
-148.75000000000003
+166.0
  30
 0.0
  11
-97.08333333333336
+449.7007833757143
  21
-148.25
+105.00000000000001
  31
 0.0
   0
@@ -5165,15 +5685,15 @@ LINE
   8
 0
  10
-97.08333333333336
+521.3550614105757
  20
-148.25
+105.00000000000001
  30
 0.0
  11
-108.91666666666669
+511.3550614105758
  21
-148.25
+105.00000000000001
  31
 0.0
   0
@@ -5183,15 +5703,15 @@ LINE
   8
 0
  10
-108.91666666666669
+521.3550614105757
  20
-148.25
+166.0
  30
 0.0
  11
-108.91666666666669
+521.3550614105757
  21
-148.75000000000003
+105.00000000000001
  31
 0.0
   0
@@ -5201,15 +5721,15 @@ LINE
   8
 0
  10
-1.2500000000000002
+511.3550614105758
  20
-149.00000000000003
+166.0
  30
 0.0
  11
-1.2500000000000002
+521.3550614105757
  21
-146.50000000000003
+166.0
  31
 0.0
   0
@@ -5219,51 +5739,55 @@ LINE
   8
 0
  10
-1.2500000000000002
+422.7007833757143
  20
-146.50000000000003
+166.0
  30
 0.0
  11
-3.7500000000000004
+449.7007833757143
  21
-149.00000000000003
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-3.7500000000000004
+422.7007833757143
  20
-149.00000000000003
+105.00000000000001
  30
 0.0
  11
-3.7500000000000004
+422.7007833757143
  21
-157.0
+166.0
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-3.7500000000000004
+449.7007833757143
  20
-157.0
+105.00000000000001
  30
 0.0
  11
-1.2500000000000002
+422.7007833757143
  21
-159.5
+105.00000000000001
  31
 0.0
   0
@@ -5273,15 +5797,15 @@ LINE
   8
 0
  10
-1.2500000000000002
+361.0465053408529
  20
-159.5
+166.0
  30
 0.0
  11
-1.2500000000000002
+422.7007833757143
  21
-157.0
+166.0
  31
 0.0
   0
@@ -5291,15 +5815,15 @@ LINE
   8
 0
  10
-97.00000000000001
+422.7007833757143
  20
-184.00000000000003
+105.00000000000001
  30
 0.0
  11
-97.00000000000001
+361.0465053408529
  21
-180.0
+105.00000000000001
  31
 0.0
   0
@@ -5309,15 +5833,15 @@ LINE
   8
 0
  10
-97.00000000000001
+351.0465053408529
  20
-180.0
+166.0
  30
 0.0
  11
-109.00000000000001
+361.0465053408529
  21
-180.0
+166.0
  31
 0.0
   0
@@ -5327,15 +5851,15 @@ LINE
   8
 0
  10
-109.00000000000001
+351.0465053408529
  20
-180.0
+105.00000000000001
  30
 0.0
  11
-109.00000000000001
+351.0465053408529
  21
-184.00000000000003
+166.0
  31
 0.0
   0
@@ -5345,15 +5869,15 @@ LINE
   8
 0
  10
-109.00000000000001
+361.0465053408529
  20
-184.00000000000003
+105.00000000000001
  30
 0.0
  11
-97.00000000000001
+351.0465053408529
  21
-184.00000000000003
+105.00000000000001
  31
 0.0
   0
@@ -5363,15 +5887,15 @@ LINE
   8
 0
  10
-98.50000000000001
+449.7007833757143
  20
-172.00000000000003
+105.00000000000001
  30
 0.0
  11
-98.50000000000001
+449.7007833757143
  21
-168.0
+88.00000000000001
  31
 0.0
   0
@@ -5381,33 +5905,35 @@ LINE
   8
 0
  10
-98.50000000000001
+422.7007833757143
  20
-168.0
+88.00000000000001
  30
 0.0
  11
-107.50000000000001
+422.7007833757143
  21
-168.0
+105.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-107.50000000000001
+449.7007833757143
  20
-168.0
+88.00000000000001
  30
 0.0
  11
-107.50000000000001
+422.7007833757143
  21
-172.00000000000003
+88.00000000000001
  31
 0.0
   0
@@ -5417,15 +5943,15 @@ LINE
   8
 0
  10
-107.50000000000001
+449.7007833757143
  20
-172.00000000000003
+88.00000000000001
  30
 0.0
  11
-98.50000000000001
+449.7007833757143
  21
-172.00000000000003
+27.000000000000004
  31
 0.0
   0
@@ -5435,33 +5961,35 @@ LINE
   8
 0
  10
-97.00000000000001
+422.7007833757143
  20
-208.50000000000003
+27.000000000000004
  30
 0.0
  11
-97.00000000000001
+422.7007833757143
  21
-185.50000000000003
+88.00000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-97.00000000000001
+449.7007833757143
  20
-185.50000000000003
+27.000000000000004
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-185.50000000000003
+27.000000000000004
  31
 0.0
   0
@@ -5471,15 +5999,15 @@ LINE
   8
 0
  10
-109.00000000000001
+449.7007833757143
  20
-185.50000000000003
+27.000000000000004
  30
 0.0
  11
-109.00000000000001
+449.7007833757143
  21
-208.50000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5489,33 +6017,35 @@ LINE
   8
 0
  10
-109.00000000000001
+422.7007833757143
  20
-208.50000000000003
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+422.7007833757143
  21
-208.50000000000003
+27.000000000000004
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-97.00000000000001
+422.7007833757143
  20
-214.0
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+449.7007833757143
  21
-210.00000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5525,15 +6055,15 @@ LINE
   8
 0
  10
-97.00000000000001
+422.7007833757143
  20
-210.00000000000003
+0.0
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-210.00000000000003
+10.000000000000002
  31
 0.0
   0
@@ -5543,15 +6073,15 @@ LINE
   8
 0
  10
-109.00000000000001
+449.7007833757143
  20
-210.00000000000003
+0.0
  30
 0.0
  11
-109.00000000000001
+422.7007833757143
  21
-214.0
+0.0
  31
 0.0
   0
@@ -5561,15 +6091,15 @@ LINE
   8
 0
  10
-109.00000000000001
+449.7007833757143
  20
-214.0
+10.000000000000002
  30
 0.0
  11
-97.00000000000001
+449.7007833757143
  21
-214.0
+0.0
  31
 0.0
   0
@@ -5579,15 +6109,15 @@ LINE
   8
 0
  10
-97.33333333333336
+518.8550614105758
  20
-236.50000000000003
+154.90909090909093
  30
 0.0
  11
-97.33333333333336
+513.8550614105758
  21
-231.50000000000003
+154.90909090909093
  31
 0.0
   0
@@ -5597,15 +6127,15 @@ LINE
   8
 0
  10
-97.33333333333336
+513.8550614105758
  20
-231.50000000000003
+154.90909090909093
  30
 0.0
  11
-108.66666666666669
+513.8550614105758
  21
-231.50000000000003
+143.8181818181818
  31
 0.0
   0
@@ -5615,15 +6145,15 @@ LINE
   8
 0
  10
-108.66666666666669
+513.8550614105758
  20
-231.50000000000003
+143.8181818181818
  30
 0.0
  11
-108.66666666666669
+518.8550614105758
  21
-236.50000000000003
+143.8181818181818
  31
 0.0
   0
@@ -5633,15 +6163,15 @@ LINE
   8
 0
  10
-65.36137800081468
+518.8550614105758
  20
-113.00000000000001
+127.1818181818182
  30
 0.0
  11
-65.36137800081468
+513.8550614105758
  21
-102.00000000000001
+127.1818181818182
  31
 0.0
   0
@@ -5651,15 +6181,15 @@ LINE
   8
 0
  10
-65.36137800081468
+513.8550614105758
  20
-102.00000000000001
+127.1818181818182
  30
 0.0
  11
-78.36137800081468
+513.8550614105758
  21
-102.00000000000001
+116.09090909090911
  31
 0.0
   0
@@ -5669,15 +6199,15 @@ LINE
   8
 0
  10
-78.36137800081468
+513.8550614105758
  20
-102.00000000000001
+116.09090909090911
  30
 0.0
  11
-78.36137800081468
+518.8550614105758
  21
-113.00000000000001
+116.09090909090911
  31
 0.0
   0
@@ -5687,15 +6217,15 @@ LINE
   8
 0
  10
-78.36137800081468
+445.2007833757143
  20
-113.00000000000001
+102.50000000000001
  30
 0.0
  11
-65.36137800081468
+445.2007833757143
  21
-113.00000000000001
+108.50000000000001
  31
 0.0
   0
@@ -5705,15 +6235,15 @@ LINE
   8
 0
  10
-66.8613780008147
+445.2007833757143
  20
-81.50000000000001
+108.50000000000001
  30
 0.0
  11
-66.8613780008147
+427.2007833757143
  21
-75.50000000000001
+108.50000000000001
  31
 0.0
   0
@@ -5723,15 +6253,15 @@ LINE
   8
 0
  10
-66.8613780008147
+427.2007833757143
  20
-75.50000000000001
+108.50000000000001
  30
 0.0
  11
-76.8613780008147
+427.2007833757143
  21
-75.50000000000001
+102.50000000000001
  31
 0.0
   0
@@ -5741,15 +6271,15 @@ LINE
   8
 0
  10
-76.8613780008147
+427.2007833757143
  20
-75.50000000000001
+102.50000000000001
  30
 0.0
  11
-76.8613780008147
+445.2007833757143
  21
-81.50000000000001
+102.50000000000001
  31
 0.0
   0
@@ -5759,15 +6289,15 @@ LINE
   8
 0
  10
-76.8613780008147
+431.4507833757143
  20
-81.50000000000001
+158.25000000000003
  30
 0.0
  11
-66.8613780008147
+440.9507833757143
  21
-81.50000000000001
+158.25000000000003
  31
 0.0
   0
@@ -5777,15 +6307,15 @@ LINE
   8
 0
  10
-16.222756001629364
+440.9507833757143
  20
-81.0909090909091
+158.25000000000003
  30
 0.0
  11
-21.222756001629367
+440.9507833757143
  21
-81.0909090909091
+158.75000000000003
  31
 0.0
   0
@@ -5795,15 +6325,15 @@ LINE
   8
 0
  10
-21.222756001629367
+440.9507833757143
  20
-81.0909090909091
+158.75000000000003
  30
 0.0
  11
-21.222756001629367
+431.4507833757143
  21
-92.18181818181819
+158.75000000000003
  31
 0.0
   0
@@ -5813,15 +6343,15 @@ LINE
   8
 0
  10
-21.222756001629367
+431.4507833757143
  20
-92.18181818181819
+158.75000000000003
  30
 0.0
  11
-16.222756001629364
+431.4507833757143
  21
-92.18181818181819
+158.25000000000003
  31
 0.0
   0
@@ -5831,15 +6361,15 @@ LINE
   8
 0
  10
-16.222756001629364
+353.54650534085283
  20
-108.81818181818183
+116.09090909090911
  30
 0.0
  11
-21.222756001629367
+358.54650534085283
  21
-108.81818181818183
+116.09090909090911
  31
 0.0
   0
@@ -5849,15 +6379,15 @@ LINE
   8
 0
  10
-21.222756001629367
+358.54650534085283
  20
-108.81818181818183
+116.09090909090911
  30
 0.0
  11
-21.222756001629367
+358.54650534085283
  21
-119.90909090909092
+127.18181818181822
  31
 0.0
   0
@@ -5867,15 +6397,15 @@ LINE
   8
 0
  10
-21.222756001629367
+358.54650534085283
  20
-119.90909090909092
+127.18181818181822
  30
 0.0
  11
-16.222756001629364
+353.54650534085283
  21
-119.90909090909092
+127.18181818181822
  31
 0.0
   0
@@ -5885,15 +6415,15 @@ LINE
   8
 0
  10
-75.86137800081468
+353.54650534085283
  20
-62.50000000000001
+143.81818181818184
  30
 0.0
  11
-75.86137800081468
+358.54650534085283
  21
-67.50000000000001
+143.81818181818184
  31
 0.0
   0
@@ -5903,15 +6433,15 @@ LINE
   8
 0
  10
-75.86137800081468
+358.54650534085283
  20
-67.50000000000001
+143.81818181818184
  30
 0.0
  11
-67.86137800081468
+358.54650534085283
  21
-67.50000000000001
+154.90909090909093
  31
 0.0
   0
@@ -5921,15 +6451,15 @@ LINE
   8
 0
  10
-67.86137800081468
+358.54650534085283
  20
-67.50000000000001
+154.90909090909093
  30
 0.0
  11
-67.86137800081468
+353.54650534085283
  21
-62.50000000000001
+154.90909090909093
  31
 0.0
   0
@@ -5939,15 +6469,15 @@ LINE
   8
 0
  10
-67.86137800081468
+440.7007833757143
  20
-138.5
+2.5000000000000004
  30
 0.0
  11
-67.86137800081468
+440.7007833757143
  21
-133.5
+7.500000000000001
  31
 0.0
   0
@@ -5957,15 +6487,15 @@ LINE
   8
 0
  10
-67.86137800081468
+440.7007833757143
  20
-133.5
+7.500000000000001
  30
 0.0
  11
-75.86137800081468
+431.7007833757143
  21
-133.5
+7.500000000000001
  31
 0.0
   0
@@ -5975,15 +6505,15 @@ LINE
   8
 0
  10
-75.86137800081468
+431.7007833757143
  20
-133.5
+7.500000000000001
  30
 0.0
  11
-75.86137800081468
+431.7007833757143
  21
-138.5
+2.5000000000000004
  31
 0.0
   0
@@ -5995,15 +6525,15 @@ DOTTED
   8
 0
  10
-543.3085560697231
+564.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6015,15 +6545,15 @@ DOTTED
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6035,15 +6565,15 @@ DOTTED
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6055,15 +6585,15 @@ DOTTED
   8
 0
  10
-543.3085560697231
+564.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6073,15 +6603,15 @@ LINE
   8
 0
  10
-543.3085560697231
+564.3550614105757
  20
-165.00000000000003
+116.50000000000001
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6091,15 +6621,15 @@ LINE
   8
 0
  10
-603.308556069723
+624.3550614105758
  20
-165.00000000000003
+116.50000000000001
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-165.00000000000003
+116.50000000000001
  31
 0.0
   0
@@ -6109,15 +6639,15 @@ LINE
   8
 0
  10
-603.308556069723
+624.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-603.308556069723
+624.3550614105758
  21
-165.00000000000003
+116.50000000000001
  31
 0.0
   0
@@ -6127,15 +6657,15 @@ LINE
   8
 0
  10
-611.308556069723
+632.3550614105758
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6145,15 +6675,15 @@ LINE
   8
 0
  10
-611.308556069723
+632.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-611.308556069723
+632.3550614105758
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6163,15 +6693,15 @@ LINE
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-611.308556069723
+632.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6183,15 +6713,15 @@ DOTTED
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6201,15 +6731,15 @@ LINE
   8
 0
  10
-544.3085560697231
+565.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6221,15 +6751,15 @@ DOTTED
   8
 0
  10
-544.3085560697231
+565.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-544.3085560697231
+565.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6239,15 +6769,15 @@ LINE
   8
 0
  10
-628.3085560697231
+649.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-604.308556069723
+625.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6259,15 +6789,15 @@ DOTTED
   8
 0
  10
-628.3085560697231
+649.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6277,15 +6807,15 @@ LINE
   8
 0
  10
-604.308556069723
+625.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6295,15 +6825,15 @@ LINE
   8
 0
  10
-688.3085560697231
+709.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-628.3085560697231
+649.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6313,15 +6843,15 @@ LINE
   8
 0
  10
-688.3085560697231
+709.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-688.3085560697231
+709.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6331,15 +6861,15 @@ LINE
   8
 0
  10
-628.3085560697231
+649.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-688.3085560697231
+709.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6349,15 +6879,15 @@ LINE
   8
 0
  10
-544.3085560697231
+565.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6367,15 +6897,15 @@ LINE
   8
 0
  10
-520.3085560697231
+541.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-544.3085560697231
+565.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6387,15 +6917,15 @@ DOTTED
   8
 0
  10
-520.3085560697231
+541.3550614105758
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6405,15 +6935,15 @@ LINE
   8
 0
  10
-510.308556069723
+531.3550614105757
  20
-257.00000000000006
+208.50000000000003
  30
 0.0
  11
-520.3085560697231
+541.3550614105758
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6423,15 +6953,15 @@ LINE
   8
 0
  10
-510.308556069723
+531.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-510.308556069723
+531.3550614105757
  21
-257.00000000000006
+208.50000000000003
  31
 0.0
   0
@@ -6441,15 +6971,15 @@ LINE
   8
 0
  10
-520.3085560697231
+541.3550614105758
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-510.308556069723
+531.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6459,15 +6989,15 @@ LINE
   8
 0
  10
-536.308556069723
+557.3550614105757
  20
-196.00000000000003
+147.5
  30
 0.0
  11
-543.3085560697231
+564.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6477,15 +7007,15 @@ LINE
   8
 0
  10
-536.308556069723
+557.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-536.308556069723
+557.3550614105757
  21
-196.00000000000003
+147.5
  31
 0.0
   0
@@ -6495,15 +7025,15 @@ LINE
   8
 0
  10
-543.3085560697231
+564.3550614105757
  20
-172.00000000000003
+123.50000000000001
  30
 0.0
  11
-536.308556069723
+557.3550614105757
  21
-172.00000000000003
+123.50000000000001
  31
 0.0
   0
@@ -6513,15 +7043,15 @@ LINE
   8
 0
  10
-592.3994651606322
+613.4459705014848
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-595.8994651606321
+616.9459705014849
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6531,15 +7061,15 @@ LINE
   8
 0
  10
-595.8994651606321
+616.9459705014849
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-592.3994651606322
+613.4459705014848
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6549,15 +7079,15 @@ LINE
   8
 0
  10
-592.3994651606322
+613.4459705014848
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-581.4903742515411
+602.5368795923939
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6567,15 +7097,15 @@ LINE
   8
 0
  10
-581.4903742515411
+602.5368795923939
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-577.9903742515413
+599.0368795923939
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6585,15 +7115,15 @@ LINE
   8
 0
  10
-577.9903742515413
+599.0368795923939
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-581.4903742515411
+602.5368795923939
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6603,15 +7133,15 @@ LINE
   8
 0
  10
-565.1267378879049
+586.1732432287575
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-568.6267378879048
+589.6732432287577
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6621,15 +7151,15 @@ LINE
   8
 0
  10
-568.6267378879048
+589.6732432287577
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-565.1267378879049
+586.1732432287575
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6639,15 +7169,15 @@ LINE
   8
 0
  10
-565.1267378879049
+586.1732432287575
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-554.2176469788138
+575.2641523196667
  21
-170.25000000000003
+121.75000000000001
  31
 0.0
   0
@@ -6657,15 +7187,15 @@ LINE
   8
 0
  10
-554.2176469788138
+575.2641523196667
  20
-170.25000000000003
+121.75000000000001
  30
 0.0
  11
-550.717646978814
+571.7641523196666
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6675,15 +7205,15 @@ LINE
   8
 0
  10
-550.717646978814
+571.7641523196666
  20
-166.75000000000003
+118.25000000000001
  30
 0.0
  11
-554.2176469788138
+575.2641523196667
  21
-166.75000000000003
+118.25000000000001
  31
 0.0
   0
@@ -6693,15 +7223,15 @@ LINE
   8
 0
  10
-609.5585560697231
+630.6050614105758
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-606.058556069723
+627.1050614105758
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
@@ -6711,15 +7241,15 @@ LINE
   8
 0
  10
-606.058556069723
+627.1050614105758
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-606.058556069723
+627.1050614105758
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -6729,15 +7259,15 @@ LINE
   8
 0
  10
-606.058556069723
+627.1050614105758
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-609.5585560697231
+630.6050614105758
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -6747,15 +7277,15 @@ LINE
   8
 0
  10
-551.8085560697231
+572.8550614105758
  20
-247.50000000000003
+199.00000000000003
  30
 0.0
  11
-551.8085560697231
+572.8550614105758
  21
-229.50000000000003
+181.00000000000003
  31
 0.0
   0
@@ -6765,15 +7295,15 @@ LINE
   8
 0
  10
-551.8085560697231
+572.8550614105758
  20
-229.50000000000003
+181.00000000000003
  30
 0.0
  11
-586.8085560697231
+607.8550614105758
  21
-229.50000000000003
+181.00000000000003
  31
 0.0
   0
@@ -6783,15 +7313,15 @@ LINE
   8
 0
  10
-586.8085560697231
+607.8550614105758
  20
-229.50000000000003
+181.00000000000003
  30
 0.0
  11
-586.8085560697231
+607.8550614105758
  21
-247.50000000000003
+199.00000000000003
  31
 0.0
   0
@@ -6801,15 +7331,15 @@ LINE
   8
 0
  10
-586.8085560697231
+607.8550614105758
  20
-247.50000000000003
+199.00000000000003
  30
 0.0
  11
-551.8085560697231
+572.8550614105758
  21
-247.50000000000003
+199.00000000000003
  31
 0.0
   0
@@ -6819,15 +7349,15 @@ LINE
   8
 0
  10
-604.8085560697231
+625.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-604.8085560697231
+625.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -6837,15 +7367,15 @@ LINE
   8
 0
  10
-604.8085560697231
+625.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-607.8085560697231
+628.8550614105757
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -6855,15 +7385,15 @@ LINE
   8
 0
  10
-607.8085560697231
+628.8550614105757
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-607.8085560697231
+628.8550614105757
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -6873,15 +7403,15 @@ LINE
   8
 0
  10
-607.8085560697231
+628.8550614105757
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-604.8085560697231
+625.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -6891,15 +7421,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -6909,15 +7439,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -6927,15 +7457,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -6945,15 +7475,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -6963,15 +7493,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -6981,15 +7511,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -6999,15 +7529,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7017,15 +7547,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7035,15 +7565,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -7053,15 +7583,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -7071,15 +7601,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7089,15 +7619,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -7107,15 +7637,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7125,15 +7655,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7143,15 +7673,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7161,15 +7691,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7179,15 +7709,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7197,15 +7727,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -7215,15 +7745,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7233,15 +7763,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -7251,15 +7781,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7269,15 +7799,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7287,15 +7817,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7305,15 +7835,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7323,15 +7853,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7341,15 +7871,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -7359,15 +7889,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7377,15 +7907,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -7395,15 +7925,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7413,15 +7943,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7431,15 +7961,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7449,15 +7979,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7467,15 +7997,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7485,15 +8015,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -7503,15 +8033,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7521,15 +8051,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -7539,15 +8069,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7557,15 +8087,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7575,15 +8105,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7593,15 +8123,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7611,15 +8141,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7629,15 +8159,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -7647,15 +8177,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7665,15 +8195,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -7683,15 +8213,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7701,15 +8231,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7719,15 +8249,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7737,15 +8267,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7755,15 +8285,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7773,15 +8303,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -7791,15 +8321,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7809,15 +8339,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -7827,15 +8357,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7845,15 +8375,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7863,15 +8393,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7881,15 +8411,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7899,15 +8429,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7917,15 +8447,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -7935,15 +8465,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7953,15 +8483,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -7971,15 +8501,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -7989,15 +8519,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8007,15 +8537,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8025,15 +8555,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8043,15 +8573,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8061,15 +8591,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -8079,15 +8609,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8097,15 +8627,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -8115,15 +8645,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8133,15 +8663,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8151,15 +8681,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8169,15 +8699,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8187,15 +8717,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8205,15 +8735,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -8223,15 +8753,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8241,15 +8771,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -8259,15 +8789,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8277,15 +8807,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8295,15 +8825,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8313,15 +8843,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8331,15 +8861,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8349,15 +8879,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -8367,15 +8897,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8385,15 +8915,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -8403,15 +8933,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8421,15 +8951,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8439,15 +8969,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8457,15 +8987,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8475,15 +9005,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8493,15 +9023,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -8511,15 +9041,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8529,15 +9059,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -8547,15 +9077,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8565,15 +9095,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8583,15 +9113,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8601,15 +9131,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8619,15 +9149,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8637,15 +9167,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -8655,15 +9185,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8673,15 +9203,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -8691,15 +9221,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8709,15 +9239,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8727,15 +9257,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8745,15 +9275,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8763,15 +9293,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8781,15 +9311,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -8799,15 +9329,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8817,15 +9347,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -8835,15 +9365,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8853,15 +9383,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8871,15 +9401,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8889,15 +9419,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8907,15 +9437,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8925,15 +9455,15 @@ LINE
   8
 0
  10
-625.8085560697231
+646.8550614105757
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -8943,15 +9473,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-626.8085560697231
+647.8550614105757
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8961,15 +9491,15 @@ LINE
   8
 0
  10
-626.8085560697231
+647.8550614105757
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-625.8085560697231
+646.8550614105757
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -8979,15 +9509,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -8997,15 +9527,15 @@ LINE
   8
 0
  10
-605.8085560697231
+626.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -9015,15 +9545,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-606.8085560697231
+627.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -9033,15 +9563,15 @@ LINE
   8
 0
  10
-606.8085560697231
+627.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-605.8085560697231
+626.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -9051,15 +9581,15 @@ LINE
   8
 0
  10
-624.8085560697231
+645.8550614105758
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-624.8085560697231
+645.8550614105758
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -9069,15 +9599,15 @@ LINE
   8
 0
  10
-624.8085560697231
+645.8550614105758
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-627.8085560697231
+648.8550614105757
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -9087,15 +9617,15 @@ LINE
   8
 0
  10
-627.8085560697231
+648.8550614105757
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-627.8085560697231
+648.8550614105757
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -9105,15 +9635,15 @@ LINE
   8
 0
  10
-627.8085560697231
+648.8550614105757
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-624.8085560697231
+645.8550614105758
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -9123,15 +9653,15 @@ LINE
   8
 0
  10
-620.5585560697231
+641.6050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -9141,15 +9671,15 @@ LINE
   8
 0
  10
-612.0585560697231
+633.1050614105757
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -9159,15 +9689,15 @@ LINE
   8
 0
  10
-612.0585560697231
+633.1050614105757
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -9177,15 +9707,15 @@ LINE
   8
 0
  10
-620.5585560697231
+641.6050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -9195,15 +9725,15 @@ LINE
   8
 0
  10
-612.0585560697231
+633.1050614105757
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -9213,15 +9743,15 @@ LINE
   8
 0
  10
-620.5585560697231
+641.6050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-620.5585560697231
+641.6050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -9231,15 +9761,15 @@ LINE
   8
 0
  10
-620.5585560697231
+641.6050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -9249,15 +9779,15 @@ LINE
   8
 0
  10
-612.0585560697231
+633.1050614105757
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-612.0585560697231
+633.1050614105757
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -9267,15 +9797,15 @@ LINE
   8
 0
  10
-643.3085560697231
+664.3550614105758
  20
-247.00000000000003
+198.50000000000003
  30
 0.0
  11
-643.3085560697231
+664.3550614105758
  21
-234.00000000000003
+185.50000000000003
  31
 0.0
   0
@@ -9285,15 +9815,15 @@ LINE
   8
 0
  10
-643.3085560697231
+664.3550614105758
  20
-234.00000000000003
+185.50000000000003
  30
 0.0
  11
-673.3085560697231
+694.3550614105757
  21
-234.00000000000003
+185.50000000000003
  31
 0.0
   0
@@ -9303,15 +9833,15 @@ LINE
   8
 0
  10
-673.3085560697231
+694.3550614105757
  20
-234.00000000000003
+185.50000000000003
  30
 0.0
  11
-673.3085560697231
+694.3550614105757
  21
-247.00000000000003
+198.50000000000003
  31
 0.0
   0
@@ -9321,15 +9851,15 @@ LINE
   8
 0
  10
-673.3085560697231
+694.3550614105757
  20
-247.00000000000003
+198.50000000000003
  30
 0.0
  11
-643.3085560697231
+664.3550614105758
  21
-247.00000000000003
+198.50000000000003
  31
 0.0
   0
@@ -9339,15 +9869,15 @@ LINE
   8
 0
  10
-650.3767378879048
+671.4232432287575
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-638.967646978814
+660.0141523196667
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9357,15 +9887,15 @@ LINE
   8
 0
  10
-638.967646978814
+660.0141523196667
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-638.967646978814
+660.0141523196667
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9375,15 +9905,15 @@ LINE
   8
 0
  10
-638.967646978814
+660.0141523196667
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-650.3767378879048
+671.4232432287575
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9393,15 +9923,15 @@ LINE
   8
 0
  10
-650.3767378879048
+671.4232432287575
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-650.3767378879048
+671.4232432287575
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9411,15 +9941,15 @@ LINE
   8
 0
  10
-677.6494651606322
+698.6959705014849
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-666.2403742515412
+687.2868795923938
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9429,15 +9959,15 @@ LINE
   8
 0
  10
-666.2403742515412
+687.2868795923938
  20
-201.50000000000003
+153.00000000000003
  30
 0.0
  11
-666.2403742515412
+687.2868795923938
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9447,15 +9977,15 @@ LINE
   8
 0
  10
-666.2403742515412
+687.2868795923938
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-677.6494651606322
+698.6959705014849
  21
-201.00000000000003
+152.5
  31
 0.0
   0
@@ -9465,15 +9995,15 @@ LINE
   8
 0
  10
-677.6494651606322
+698.6959705014849
  20
-201.00000000000003
+152.5
  30
 0.0
  11
-677.6494651606322
+698.6959705014849
  21
-201.50000000000003
+153.00000000000003
  31
 0.0
   0
@@ -9483,15 +10013,15 @@ LINE
   8
 0
  10
-680.558556069723
+701.6050614105758
  20
-218.43181818181822
+169.93181818181822
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-206.84090909090912
+158.3409090909091
  31
 0.0
   0
@@ -9501,15 +10031,15 @@ LINE
   8
 0
  10
-680.558556069723
+701.6050614105758
  20
-206.84090909090912
+158.3409090909091
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-206.84090909090912
+158.3409090909091
  31
 0.0
   0
@@ -9519,15 +10049,15 @@ LINE
   8
 0
  10
-681.058556069723
+702.1050614105758
  20
-206.84090909090912
+158.3409090909091
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-218.43181818181822
+169.93181818181822
  31
 0.0
   0
@@ -9537,15 +10067,15 @@ LINE
   8
 0
  10
-681.058556069723
+702.1050614105758
  20
-218.43181818181822
+169.93181818181822
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-218.43181818181822
+169.93181818181822
  31
 0.0
   0
@@ -9555,15 +10085,15 @@ LINE
   8
 0
  10
-680.558556069723
+701.6050614105758
  20
-246.15909090909093
+197.65909090909093
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-234.5681818181818
+186.06818181818184
  31
 0.0
   0
@@ -9573,15 +10103,15 @@ LINE
   8
 0
  10
-680.558556069723
+701.6050614105758
  20
-234.5681818181818
+186.06818181818184
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-234.5681818181818
+186.06818181818184
  31
 0.0
   0
@@ -9591,15 +10121,15 @@ LINE
   8
 0
  10
-681.058556069723
+702.1050614105758
  20
-234.5681818181818
+186.06818181818184
  30
 0.0
  11
-681.058556069723
+702.1050614105758
  21
-246.15909090909093
+197.65909090909093
  31
 0.0
   0
@@ -9609,15 +10139,15 @@ LINE
   8
 0
  10
-681.058556069723
+702.1050614105758
  20
-246.15909090909093
+197.65909090909093
  30
 0.0
  11
-680.558556069723
+701.6050614105758
  21
-246.15909090909093
+197.65909090909093
  31
 0.0
   0
@@ -9627,15 +10157,15 @@ LINE
   8
 0
  10
-520.8085560697231
+541.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-520.8085560697231
+541.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -9645,15 +10175,15 @@ LINE
   8
 0
  10
-520.8085560697231
+541.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-523.8085560697231
+544.8550614105758
  21
-206.25000000000003
+157.75000000000003
  31
 0.0
   0
@@ -9663,15 +10193,15 @@ LINE
   8
 0
  10
-523.8085560697231
+544.8550614105758
  20
-206.25000000000003
+157.75000000000003
  30
 0.0
  11
-523.8085560697231
+544.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -9681,15 +10211,15 @@ LINE
   8
 0
  10
-523.8085560697231
+544.8550614105758
  20
-209.25
+160.75000000000003
  30
 0.0
  11
-520.8085560697231
+541.8550614105758
  21
-209.25
+160.75000000000003
  31
 0.0
   0
@@ -9699,15 +10229,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -9717,15 +10247,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-207.25000000000003
+158.75000000000003
  31
 0.0
   0
@@ -9735,15 +10265,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-207.25000000000003
+158.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -9753,15 +10283,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-208.25000000000003
+159.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-208.25000000000003
+159.75000000000003
  31
 0.0
   0
@@ -9771,15 +10301,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9789,15 +10319,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9807,15 +10337,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9825,15 +10355,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9843,15 +10373,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9861,15 +10391,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-209.75000000000003
+161.25
  31
 0.0
   0
@@ -9879,15 +10409,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-209.75000000000003
+161.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9897,15 +10427,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-210.75000000000003
+162.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-210.75000000000003
+162.25000000000003
  31
 0.0
   0
@@ -9915,15 +10445,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -9933,15 +10463,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -9951,15 +10481,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -9969,15 +10499,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -9987,15 +10517,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -10005,15 +10535,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-212.25000000000003
+163.75
  31
 0.0
   0
@@ -10023,15 +10553,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-212.25000000000003
+163.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -10041,15 +10571,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-213.25000000000003
+164.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-213.25000000000003
+164.75000000000003
  31
 0.0
   0
@@ -10059,15 +10589,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10077,15 +10607,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10095,15 +10625,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10113,15 +10643,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10131,15 +10661,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10149,15 +10679,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-214.75000000000003
+166.25
  31
 0.0
   0
@@ -10167,15 +10697,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-214.75000000000003
+166.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10185,15 +10715,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-215.75000000000003
+167.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-215.75000000000003
+167.25000000000003
  31
 0.0
   0
@@ -10203,15 +10733,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10221,15 +10751,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10239,15 +10769,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10257,15 +10787,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10275,15 +10805,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10293,15 +10823,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-217.25000000000003
+168.75000000000003
  31
 0.0
   0
@@ -10311,15 +10841,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-217.25000000000003
+168.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10329,15 +10859,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-218.25000000000003
+169.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-218.25000000000003
+169.75000000000003
  31
 0.0
   0
@@ -10347,15 +10877,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10365,15 +10895,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10383,15 +10913,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10401,15 +10931,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10419,15 +10949,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10437,15 +10967,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-219.75000000000003
+171.25000000000003
  31
 0.0
   0
@@ -10455,15 +10985,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-219.75000000000003
+171.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10473,15 +11003,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-220.75
+172.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-220.75
+172.25000000000003
  31
 0.0
   0
@@ -10491,15 +11021,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10509,15 +11039,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10527,15 +11057,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10545,15 +11075,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10563,15 +11093,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10581,15 +11111,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-222.25000000000003
+173.75000000000003
  31
 0.0
   0
@@ -10599,15 +11129,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-222.25000000000003
+173.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10617,15 +11147,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-223.25000000000003
+174.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-223.25000000000003
+174.75000000000003
  31
 0.0
   0
@@ -10635,15 +11165,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10653,15 +11183,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10671,15 +11201,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10689,15 +11219,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10707,15 +11237,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10725,15 +11255,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-224.75000000000003
+176.25000000000003
  31
 0.0
   0
@@ -10743,15 +11273,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-224.75000000000003
+176.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10761,15 +11291,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-225.75000000000003
+177.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-225.75000000000003
+177.25
  31
 0.0
   0
@@ -10779,15 +11309,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10797,15 +11327,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10815,15 +11345,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10833,15 +11363,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10851,15 +11381,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10869,15 +11399,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-227.25000000000003
+178.75000000000003
  31
 0.0
   0
@@ -10887,15 +11417,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-227.25000000000003
+178.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10905,15 +11435,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-228.25000000000003
+179.75
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-228.25000000000003
+179.75
  31
 0.0
   0
@@ -10923,15 +11453,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -10941,15 +11471,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -10959,15 +11489,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -10977,15 +11507,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -10995,15 +11525,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -11013,15 +11543,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-229.75
+181.25000000000003
  31
 0.0
   0
@@ -11031,15 +11561,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-229.75
+181.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -11049,15 +11579,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-230.75000000000003
+182.25
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-230.75000000000003
+182.25
  31
 0.0
   0
@@ -11067,15 +11597,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11085,15 +11615,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11103,15 +11633,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11121,15 +11651,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11139,15 +11669,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11157,15 +11687,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-232.25000000000003
+183.75000000000003
  31
 0.0
   0
@@ -11175,15 +11705,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-232.25000000000003
+183.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11193,15 +11723,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-233.25000000000003
+184.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-233.25000000000003
+184.75000000000003
  31
 0.0
   0
@@ -11211,15 +11741,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11229,15 +11759,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11247,15 +11777,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11265,15 +11795,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11283,15 +11813,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11301,15 +11831,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-234.75000000000003
+186.25000000000003
  31
 0.0
   0
@@ -11319,15 +11849,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-234.75000000000003
+186.25000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11337,15 +11867,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-235.75000000000003
+187.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-235.75000000000003
+187.25000000000003
  31
 0.0
   0
@@ -11355,15 +11885,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11373,15 +11903,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11391,15 +11921,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11409,15 +11939,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11427,15 +11957,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11445,15 +11975,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-237.25000000000003
+188.75
  31
 0.0
   0
@@ -11463,15 +11993,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-237.25000000000003
+188.75
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11481,15 +12011,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-238.25000000000003
+189.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-238.25000000000003
+189.75000000000003
  31
 0.0
   0
@@ -11499,15 +12029,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11517,15 +12047,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11535,15 +12065,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11553,15 +12083,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11571,15 +12101,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11589,15 +12119,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-239.75000000000003
+191.25
  31
 0.0
   0
@@ -11607,15 +12137,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-239.75000000000003
+191.25
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11625,15 +12155,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-240.75000000000003
+192.25000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-240.75000000000003
+192.25000000000003
  31
 0.0
   0
@@ -11643,15 +12173,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11661,15 +12191,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11679,15 +12209,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11697,15 +12227,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11715,15 +12245,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11733,15 +12263,15 @@ LINE
   8
 0
  10
-541.8085560697231
+562.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-242.25000000000003
+193.75000000000003
  31
 0.0
   0
@@ -11751,15 +12281,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-242.25000000000003
+193.75000000000003
  30
 0.0
  11
-542.8085560697231
+563.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11769,15 +12299,15 @@ LINE
   8
 0
  10
-542.8085560697231
+563.8550614105758
  20
-243.25000000000003
+194.75000000000003
  30
 0.0
  11
-541.8085560697231
+562.8550614105758
  21
-243.25000000000003
+194.75000000000003
  31
 0.0
   0
@@ -11787,15 +12317,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -11805,15 +12335,15 @@ LINE
   8
 0
  10
-521.808556069723
+542.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-244.75000000000003
+196.25000000000003
  31
 0.0
   0
@@ -11823,15 +12353,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-244.75000000000003
+196.25000000000003
  30
 0.0
  11
-522.808556069723
+543.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -11841,15 +12371,15 @@ LINE
   8
 0
  10
-522.808556069723
+543.8550614105758
  20
-245.75000000000003
+197.25000000000003
  30
 0.0
  11
-521.808556069723
+542.8550614105758
  21
-245.75000000000003
+197.25000000000003
  31
 0.0
   0
@@ -11859,15 +12389,15 @@ LINE
   8
 0
  10
-540.808556069723
+561.8550614105758
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-540.808556069723
+561.8550614105758
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -11877,15 +12407,15 @@ LINE
   8
 0
  10
-540.808556069723
+561.8550614105758
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-543.8085560697231
+564.8550614105757
  21
-243.75000000000003
+195.25000000000003
  31
 0.0
   0
@@ -11895,15 +12425,15 @@ LINE
   8
 0
  10
-543.8085560697231
+564.8550614105757
  20
-243.75000000000003
+195.25000000000003
  30
 0.0
  11
-543.8085560697231
+564.8550614105757
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -11913,15 +12443,15 @@ LINE
   8
 0
  10
-543.8085560697231
+564.8550614105757
  20
-246.75000000000003
+198.25000000000003
  30
 0.0
  11
-540.808556069723
+561.8550614105758
  21
-246.75000000000003
+198.25000000000003
  31
 0.0
   0
@@ -11931,15 +12461,15 @@ LINE
   8
 0
  10
-536.558556069723
+557.6050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -11949,15 +12479,15 @@ LINE
   8
 0
  10
-528.0585560697231
+549.1050614105758
  20
-203.75000000000003
+155.25000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -11967,15 +12497,15 @@ LINE
   8
 0
  10
-528.0585560697231
+549.1050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-203.25000000000003
+154.75
  31
 0.0
   0
@@ -11985,15 +12515,15 @@ LINE
   8
 0
  10
-536.558556069723
+557.6050614105758
  20
-203.25000000000003
+154.75
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-203.75000000000003
+155.25000000000003
  31
 0.0
   0
@@ -12003,15 +12533,15 @@ LINE
   8
 0
  10
-528.0585560697231
+549.1050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -12021,15 +12551,15 @@ LINE
   8
 0
  10
-536.558556069723
+557.6050614105758
  20
-251.50000000000003
+203.00000000000003
  30
 0.0
  11
-536.558556069723
+557.6050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -12039,15 +12569,15 @@ LINE
   8
 0
  10
-536.558556069723
+557.6050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-252.00000000000003
+203.50000000000003
  31
 0.0
   0
@@ -12057,15 +12587,15 @@ LINE
   8
 0
  10
-528.0585560697231
+549.1050614105758
  20
-252.00000000000003
+203.50000000000003
  30
 0.0
  11
-528.0585560697231
+549.1050614105758
  21
-251.50000000000003
+203.00000000000003
  31
 0.0
   0
@@ -12075,15 +12605,15 @@ LINE
   8
 0
  10
-512.808556069723
+533.8550614105758
  20
-207.09090909090912
+158.59090909090912
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-207.09090909090912
+158.59090909090912
  31
 0.0
   0
@@ -12093,15 +12623,15 @@ LINE
   8
 0
  10
-517.808556069723
+538.8550614105758
  20
-207.09090909090912
+158.59090909090912
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-218.1818181818182
+169.68181818181822
  31
 0.0
   0
@@ -12111,15 +12641,15 @@ LINE
   8
 0
  10
-517.808556069723
+538.8550614105758
  20
-218.1818181818182
+169.68181818181822
  30
 0.0
  11
-512.808556069723
+533.8550614105758
  21
-218.1818181818182
+169.68181818181822
  31
 0.0
   0
@@ -12129,15 +12659,15 @@ LINE
   8
 0
  10
-512.808556069723
+533.8550614105758
  20
-234.81818181818184
+186.31818181818184
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-234.81818181818184
+186.31818181818184
  31
 0.0
   0
@@ -12147,15 +12677,15 @@ LINE
   8
 0
  10
-517.808556069723
+538.8550614105758
  20
-234.81818181818184
+186.31818181818184
  30
 0.0
  11
-517.808556069723
+538.8550614105758
  21
-245.90909090909093
+197.40909090909093
  31
 0.0
   0
@@ -12165,15 +12695,15 @@ LINE
   8
 0
  10
-517.808556069723
+538.8550614105758
  20
-245.90909090909093
+197.40909090909093
  30
 0.0
  11
-512.808556069723
+533.8550614105758
  21
-245.90909090909093
+197.40909090909093
  31
 0.0
   0
@@ -12183,15 +12713,15 @@ LINE
   8
 0
  10
-538.0585560697231
+559.1050614105758
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-541.5585560697231
+562.6050614105757
  21
-180.0
+131.50000000000003
  31
 0.0
   0
@@ -12201,15 +12731,15 @@ LINE
   8
 0
  10
-541.5585560697231
+562.6050614105757
  20
-180.0
+131.50000000000003
  30
 0.0
  11
-541.5585560697231
+562.6050614105757
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
@@ -12219,15 +12749,15 @@ LINE
   8
 0
  10
-541.5585560697231
+562.6050614105757
  20
-188.00000000000003
+139.50000000000003
  30
 0.0
  11
-538.0585560697231
+559.1050614105758
  21
-188.00000000000003
+139.50000000000003
  31
 0.0
   0
diff --git a/rocolib/output/BoatWithServoStackBattery/tree.png b/rocolib/output/BoatWithServoStackBattery/tree.png
index c721c3e07badc5055fe700c424da10de2d5b9124..b899517047f47d32124706d638943eaf6320f38f 100644
Binary files a/rocolib/output/BoatWithServoStackBattery/tree.png and b/rocolib/output/BoatWithServoStackBattery/tree.png differ
diff --git a/rocolib/output/ServoStackBatteryMount/graph-anim.svg b/rocolib/output/ServoStackBatteryMount/graph-anim.svg
index ae313234cafc4dcc8c39dde461919586d9d932af..7cfeb558b6534fff31c024647a04d175c4ce6005 100644
--- a/rocolib/output/ServoStackBatteryMount/graph-anim.svg
+++ b/rocolib/output/ServoStackBatteryMount/graph-anim.svg
@@ -1,550 +1,573 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="223.308556mm" version="1.1" viewBox="0.000000 0.000000 770.000000 223.308556" width="770.000000mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="255.500000mm" version="1.1" viewBox="0.000000 0.000000 726.308556 255.500000" width="726.308556mm">
   <defs/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="229.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="140.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="0.0" y1="140.30855600000004" y2="140.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="140.30855600000004"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="168.0" x2="158.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="134.00000000000003" x2="134.00000000000003" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="80.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#ff0000" x1="134.00000000000003" x2="158.00000000000003" y1="80.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="116.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="80.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="35.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="30.308556000000017" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="134.00000000000003" y1="30.308556000000017" y2="30.308556000000017"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="35.30855600000002" y2="30.308556000000017"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="114.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="114.00000000000001" x2="134.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="114.00000000000001" x2="114.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="114.00000000000001" x2="90.0" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="90.0" x2="114.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="90.0" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="90.0" x2="70.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="90.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="70.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="60.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.25" stroke="#0000ff" x1="168.0" x2="229.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="150.30855600000004" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="168.0" x2="168.0" y1="114.16993400081472" y2="150.30855600000004"/>
-  <line opacity="0.25" stroke="#0000ff" x1="229.00000000000003" x2="168.0" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line opacity="0.5" stroke="#0000ff" x1="229.00000000000003" x2="229.00000000000003" y1="90.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="168.0" x2="168.0" y1="54.03131200162941" y2="90.16993400081473"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="90.16993400081473" y2="54.03131200162941"/>
-  <line stroke="#000000" x1="168.0" x2="168.0" y1="44.03131200162941" y2="54.03131200162941"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="168.0" y1="44.03131200162941" y2="44.03131200162941"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="54.03131200162941" y2="44.03131200162941"/>
-  <line stroke="#000000" x1="239.00000000000003" x2="229.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#000000" x1="239.00000000000003" x2="239.00000000000003" y1="114.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="239.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="168.0" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="90.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="168.0" x2="158.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#888888" x1="40.00000000000001" x2="45.0" y1="142.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="45.0" x2="40.00000000000001" y1="142.80855600000004" y2="147.80855600000004"/>
-  <line stroke="#888888" x1="40.00000000000001" x2="20.000000000000004" y1="147.80855600000004" y2="147.80855600000004"/>
-  <line stroke="#888888" x1="20.000000000000004" x2="15.000000000000002" y1="147.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="15.000000000000002" x2="20.000000000000004" y1="142.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="150.25" x2="150.25" y1="139.2252226666667" y2="127.39188933333337"/>
-  <line stroke="#888888" x1="150.25" x2="150.75000000000003" y1="127.39188933333337" y2="127.39188933333337"/>
-  <line stroke="#888888" x1="150.75000000000003" x2="150.75000000000003" y1="127.39188933333337" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="150.75000000000003" x2="150.25" y1="139.2252226666667" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="150.0" x2="152.5" y1="31.558556000000014" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="152.5" x2="150.0" y1="31.558556000000014" y2="34.05855600000001"/>
-  <line stroke="#888888" x1="150.0" x2="142.00000000000003" y1="34.05855600000001" y2="34.05855600000001"/>
-  <line stroke="#888888" x1="142.00000000000003" x2="139.50000000000003" y1="34.05855600000001" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="139.50000000000003" x2="142.00000000000003" y1="31.558556000000014" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="115.00000000000001" x2="119.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="119.00000000000001" x2="119.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="119.00000000000001" x2="115.00000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="115.00000000000001" x2="115.00000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="127.00000000000001" x2="131.0" y1="128.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="131.0" x2="131.0" y1="128.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="131.0" x2="127.00000000000001" y1="137.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="127.00000000000001" x2="127.00000000000001" y1="137.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="90.50000000000001" x2="113.50000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="113.50000000000001" x2="113.50000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="113.50000000000001" x2="90.50000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="85.00000000000001" x2="89.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="89.00000000000001" x2="89.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="89.00000000000001" x2="85.00000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="85.00000000000001" x2="85.00000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="62.50000000000001" x2="67.50000000000001" y1="127.64188933333337" y2="127.64188933333337"/>
-  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="127.64188933333337" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="67.50000000000001" x2="62.50000000000001" y1="138.9752226666667" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="186.00000000000003" x2="197.00000000000003" y1="95.66993400081472" y2="95.66993400081472"/>
-  <line stroke="#888888" x1="197.00000000000003" x2="197.00000000000003" y1="95.66993400081472" y2="108.66993400081472"/>
-  <line stroke="#888888" x1="197.00000000000003" x2="186.00000000000003" y1="108.66993400081472" y2="108.66993400081472"/>
-  <line stroke="#888888" x1="186.00000000000003" x2="186.00000000000003" y1="108.66993400081472" y2="95.66993400081472"/>
-  <line stroke="#888888" x1="217.50000000000003" x2="223.50000000000003" y1="97.16993400081472" y2="97.16993400081472"/>
-  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="97.16993400081472" y2="107.16993400081472"/>
-  <line stroke="#888888" x1="223.50000000000003" x2="217.50000000000003" y1="107.16993400081472" y2="107.16993400081472"/>
-  <line stroke="#888888" x1="217.50000000000003" x2="217.50000000000003" y1="107.16993400081472" y2="97.16993400081472"/>
-  <line stroke="#888888" x1="217.90909090909093" x2="217.90909090909093" y1="46.5313120016294" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="217.90909090909093" x2="206.81818181818184" y1="51.53131200162941" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="206.81818181818184" x2="206.81818181818184" y1="51.53131200162941" y2="46.5313120016294"/>
-  <line stroke="#888888" x1="190.18181818181822" x2="190.18181818181822" y1="46.5313120016294" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="190.18181818181822" x2="179.09090909090912" y1="51.53131200162941" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="179.09090909090912" x2="179.09090909090912" y1="51.53131200162941" y2="46.5313120016294"/>
-  <line stroke="#888888" x1="236.50000000000003" x2="231.50000000000003" y1="106.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#888888" x1="231.50000000000003" x2="231.50000000000003" y1="106.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="231.50000000000003" x2="236.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="160.50000000000003" x2="165.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="165.50000000000003" x2="165.50000000000003" y1="98.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#888888" x1="165.50000000000003" x2="160.50000000000003" y1="106.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="478.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="249.00000000000003" x2="478.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="249.00000000000003" x2="249.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="310.0" x2="249.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="320.00000000000006" x2="310.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="344.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="249.00000000000003" x2="249.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="320.00000000000006" x2="320.00000000000006" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="344.00000000000006" x2="344.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="320.00000000000006" x2="320.00000000000006" y1="80.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#ff0000" x1="320.00000000000006" x2="344.00000000000006" y1="80.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="344.00000000000006" x2="344.00000000000006" y1="116.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="344.00000000000006" x2="344.00000000000006" y1="80.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="320.00000000000006" x2="320.00000000000006" y1="35.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="344.00000000000006" x2="320.00000000000006" y1="35.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="344.00000000000006" x2="364.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="364.0" x2="344.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="364.0" x2="364.0" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="364.0" x2="388.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="388.00000000000006" x2="364.0" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="388.00000000000006" x2="388.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="388.00000000000006" x2="408.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="408.00000000000006" x2="388.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="408.00000000000006" x2="408.00000000000006" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="408.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="408.00000000000006" x2="418.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="478.00000000000006" y1="150.30855600000004" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="88.65427796513858" y2="150.30855600000004"/>
-  <line opacity="0.25" stroke="#ff0000" x1="418.00000000000006" x2="478.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="61.65427796513857" y2="88.65427796513858"/>
-  <line opacity="0.25" stroke="#ff0000" x1="478.00000000000006" x2="418.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line opacity="0.5" stroke="#0000ff" x1="478.00000000000006" x2="478.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="-6.972288701945219e-08" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="418.00000000000006" y1="-6.972288701945219e-08" y2="-6.972288701945219e-08"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="478.00000000000006" y1="61.65427796513857" y2="-6.972288701945219e-08"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="495.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="495.00000000000006" x2="478.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line opacity="0.5" stroke="#0000ff" x1="495.00000000000006" x2="495.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="495.00000000000006" x2="555.0" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="555.0" x2="495.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line opacity="0.5" stroke="#0000ff" x1="555.0" x2="555.0" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="555.0" x2="572.0" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="572.0" x2="555.0" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line opacity="0.5" stroke="#0000ff" x1="572.0" x2="572.0" y1="61.65427796513857" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="582.0" x2="572.0" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="582.0" x2="582.0" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="572.0" x2="582.0" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#888888" x1="271.4318181818182" x2="259.8409090909092" y1="158.058556" y2="158.058556"/>
-  <line stroke="#888888" x1="259.8409090909092" x2="259.8409090909092" y1="158.058556" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="259.8409090909092" x2="271.4318181818182" y1="157.55855600000004" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="271.4318181818182" x2="271.4318181818182" y1="157.55855600000004" y2="158.058556"/>
-  <line stroke="#888888" x1="299.159090909091" x2="287.56818181818187" y1="158.058556" y2="158.058556"/>
-  <line stroke="#888888" x1="287.56818181818187" x2="287.56818181818187" y1="158.058556" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="287.56818181818187" x2="299.159090909091" y1="157.55855600000004" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="299.159090909091" x2="299.159090909091" y1="157.55855600000004" y2="158.058556"/>
-  <line stroke="#888888" x1="327.75" x2="327.75" y1="127.39188933333335" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="327.75" x2="327.25" y1="139.2252226666667" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="327.25" x2="327.25" y1="139.2252226666667" y2="127.39188933333335"/>
-  <line stroke="#888888" x1="327.25" x2="327.75" y1="127.39188933333335" y2="127.39188933333335"/>
-  <line stroke="#888888" x1="336.25" x2="327.75" y1="39.30855600000002" y2="39.30855600000002"/>
-  <line stroke="#888888" x1="327.75" x2="327.75" y1="39.30855600000002" y2="38.80855600000002"/>
-  <line stroke="#888888" x1="327.75" x2="336.25" y1="38.80855600000002" y2="38.80855600000002"/>
-  <line stroke="#888888" x1="336.25" x2="336.25" y1="38.80855600000002" y2="39.30855600000002"/>
-  <line stroke="#888888" x1="363.00000000000006" x2="359.0" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="359.0" x2="359.0" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="359.0" x2="363.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="363.00000000000006" x2="363.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="351.0" x2="347.00000000000006" y1="137.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="347.00000000000006" x2="347.00000000000006" y1="137.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="347.00000000000006" x2="351.0" y1="128.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="351.0" x2="351.0" y1="128.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="387.50000000000006" x2="364.5" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="364.5" x2="364.5" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="364.5" x2="387.50000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="387.50000000000006" x2="387.50000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="393.00000000000006" x2="389.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="389.00000000000006" x2="389.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="389.00000000000006" x2="393.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="393.00000000000006" x2="393.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="415.50000000000006" x2="410.50000000000006" y1="138.9752226666667" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="410.50000000000006" x2="410.50000000000006" y1="138.9752226666667" y2="127.64188933333335"/>
-  <line stroke="#888888" x1="410.50000000000006" x2="415.50000000000006" y1="127.64188933333335" y2="127.64188933333335"/>
-  <line stroke="#888888" x1="481.00000000000006" x2="475.00000000000006" y1="84.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="475.00000000000006" x2="475.00000000000006" y1="84.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="475.00000000000006" x2="481.00000000000006" y1="66.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="481.00000000000006" x2="481.00000000000006" y1="66.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="70.40427796513856" y2="79.90427796513858"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="79.90427796513858" y2="79.90427796513858"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="79.90427796513858" y2="70.40427796513856"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="70.40427796513856" y2="70.40427796513856"/>
-  <line stroke="#888888" x1="458.25000000000006" x2="437.75000000000006" y1="7.749999930277114" y2="7.749999930277114"/>
-  <line stroke="#888888" x1="437.75000000000006" x2="437.75000000000006" y1="7.749999930277114" y2="7.249999930277114"/>
-  <line stroke="#888888" x1="437.75000000000006" x2="458.25000000000006" y1="7.249999930277114" y2="7.249999930277114"/>
-  <line stroke="#888888" x1="458.25000000000006" x2="458.25000000000006" y1="7.249999930277114" y2="7.749999930277114"/>
-  <line stroke="#888888" x1="579.5000000000001" x2="574.5" y1="79.65427796513858" y2="79.65427796513858"/>
-  <line stroke="#888888" x1="574.5" x2="574.5" y1="79.65427796513858" y2="70.65427796513858"/>
-  <line stroke="#888888" x1="574.5" x2="579.5000000000001" y1="70.65427796513858" y2="70.65427796513858"/>
-  <line opacity="0.5" stroke="#0000ff" x1="625.0000000000001" x2="686.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="686.0000000000001" x2="686.0000000000001" y1="138.30855600000004" y2="162.308556"/>
-  <line opacity="0.5" stroke="#0000ff" x1="686.0000000000001" x2="625.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line opacity="0.5" stroke="#0000ff" x1="625.0000000000001" x2="625.0000000000001" y1="162.308556" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="625.0000000000001" x2="625.0000000000001" y1="131.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="685.0000000000001" x2="625.0000000000001" y1="131.30855600000004" y2="131.30855600000004"/>
-  <line stroke="#000000" x1="685.0000000000001" x2="685.0000000000001" y1="138.30855600000004" y2="131.30855600000004"/>
-  <line stroke="#000000" x1="693.0000000000001" x2="686.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="693.0000000000001" x2="693.0000000000001" y1="162.308556" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="686.0000000000001" x2="693.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line opacity="0.5" stroke="#0000ff" x1="686.0000000000001" x2="686.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="626.0000000000001" x2="686.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="626.0000000000001" x2="626.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="710.0" x2="686.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line opacity="0.5" stroke="#0000ff" x1="710.0" x2="710.0" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="686.0000000000001" x2="710.0" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="770.0000000000001" x2="710.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="770.0000000000001" x2="770.0000000000001" y1="223.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="710.0" x2="770.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="626.0000000000001" x2="602.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="602.0" x2="626.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="602.0" x2="602.0" y1="223.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="592.0" x2="602.0" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="592.0" x2="592.0" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="602.0" x2="592.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="618.0" x2="625.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="618.0" x2="618.0" y1="138.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="625.0000000000001" x2="618.0" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#888888" x1="674.0909090909092" x2="677.5909090909091" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="677.5909090909091" x2="674.0909090909092" y1="133.058556" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="674.0909090909092" x2="663.1818181818181" y1="136.55855600000004" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="663.1818181818181" x2="659.6818181818184" y1="136.55855600000004" y2="133.058556"/>
-  <line stroke="#888888" x1="659.6818181818184" x2="663.1818181818181" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="646.818181818182" x2="650.318181818182" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="650.318181818182" x2="646.818181818182" y1="133.058556" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="646.818181818182" x2="635.909090909091" y1="136.55855600000004" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="635.909090909091" x2="632.4090909090909" y1="136.55855600000004" y2="133.058556"/>
-  <line stroke="#888888" x1="632.4090909090909" x2="635.909090909091" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="691.2500000000001" x2="687.75" y1="154.30855600000004" y2="154.30855600000004"/>
-  <line stroke="#888888" x1="687.75" x2="687.75" y1="154.30855600000004" y2="146.308556"/>
-  <line stroke="#888888" x1="687.75" x2="691.2500000000001" y1="146.308556" y2="146.308556"/>
-  <line stroke="#888888" x1="633.5000000000001" x2="633.5000000000001" y1="213.80855600000004" y2="195.80855600000004"/>
-  <line stroke="#888888" x1="633.5000000000001" x2="668.5000000000001" y1="195.80855600000004" y2="195.80855600000004"/>
-  <line stroke="#888888" x1="668.5000000000001" x2="668.5000000000001" y1="195.80855600000004" y2="213.80855600000004"/>
-  <line stroke="#888888" x1="668.5000000000001" x2="633.5000000000001" y1="213.80855600000004" y2="213.80855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="175.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="689.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="689.5000000000001" x2="689.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="689.5000000000001" x2="686.5000000000001" y1="175.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="212.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="212.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="709.5" y1="210.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="709.5" x2="709.5" y1="210.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="709.5" x2="706.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="702.2500000000001" x2="693.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="693.7500000000001" x2="693.7500000000001" y1="170.05855600000004" y2="169.558556"/>
-  <line stroke="#888888" x1="693.7500000000001" x2="702.2500000000001" y1="169.558556" y2="169.558556"/>
-  <line stroke="#888888" x1="702.2500000000001" x2="702.2500000000001" y1="169.558556" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="693.7500000000001" x2="702.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="702.2500000000001" x2="702.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="702.2500000000001" x2="693.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="693.7500000000001" x2="693.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="725.0000000000001" x2="725.0000000000001" y1="213.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="725.0000000000001" x2="755.0" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="755.0" x2="755.0" y1="200.30855600000004" y2="213.30855600000004"/>
-  <line stroke="#888888" x1="755.0" x2="725.0000000000001" y1="213.30855600000004" y2="213.30855600000004"/>
-  <line stroke="#888888" x1="732.0681818181819" x2="720.6590909090909" y1="167.80855600000004" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="720.6590909090909" x2="720.6590909090909" y1="167.80855600000004" y2="167.308556"/>
-  <line stroke="#888888" x1="720.6590909090909" x2="732.0681818181819" y1="167.308556" y2="167.308556"/>
-  <line stroke="#888888" x1="732.0681818181819" x2="732.0681818181819" y1="167.308556" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="759.3409090909092" x2="747.9318181818181" y1="167.80855600000004" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="747.9318181818181" x2="747.9318181818181" y1="167.80855600000004" y2="167.308556"/>
-  <line stroke="#888888" x1="747.9318181818181" x2="759.3409090909092" y1="167.308556" y2="167.308556"/>
-  <line stroke="#888888" x1="759.3409090909092" x2="759.3409090909092" y1="167.308556" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="762.2500000000001" x2="762.2500000000001" y1="184.74037418181823" y2="173.14946509090913"/>
-  <line stroke="#888888" x1="762.2500000000001" x2="762.7500000000001" y1="173.14946509090913" y2="173.14946509090913"/>
-  <line stroke="#888888" x1="762.7500000000001" x2="762.7500000000001" y1="173.14946509090913" y2="184.74037418181823"/>
-  <line stroke="#888888" x1="762.7500000000001" x2="762.2500000000001" y1="184.74037418181823" y2="184.74037418181823"/>
-  <line stroke="#888888" x1="762.2500000000001" x2="762.2500000000001" y1="212.46764690909094" y2="200.87673781818185"/>
-  <line stroke="#888888" x1="762.2500000000001" x2="762.7500000000001" y1="200.87673781818185" y2="200.87673781818185"/>
-  <line stroke="#888888" x1="762.7500000000001" x2="762.7500000000001" y1="200.87673781818185" y2="212.46764690909094"/>
-  <line stroke="#888888" x1="762.7500000000001" x2="762.2500000000001" y1="212.46764690909094" y2="212.46764690909094"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="175.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="605.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="605.5000000000001" x2="605.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="605.5000000000001" x2="602.5000000000001" y1="175.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="212.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="212.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="625.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="625.5000000000001" x2="625.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="625.5000000000001" x2="622.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="618.2500000000001" x2="609.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="609.7500000000001" x2="609.7500000000001" y1="170.05855600000004" y2="169.558556"/>
-  <line stroke="#888888" x1="609.7500000000001" x2="618.2500000000001" y1="169.558556" y2="169.558556"/>
-  <line stroke="#888888" x1="618.2500000000001" x2="618.2500000000001" y1="169.558556" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="609.7500000000001" x2="618.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="618.2500000000001" x2="618.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="618.2500000000001" x2="609.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="609.7500000000001" x2="609.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="594.5000000000001" x2="599.5" y1="173.39946509090913" y2="173.39946509090913"/>
-  <line stroke="#888888" x1="599.5" x2="599.5" y1="173.39946509090913" y2="184.49037418181823"/>
-  <line stroke="#888888" x1="599.5" x2="594.5000000000001" y1="184.49037418181823" y2="184.49037418181823"/>
-  <line stroke="#888888" x1="594.5000000000001" x2="599.5" y1="201.12673781818185" y2="201.12673781818185"/>
-  <line stroke="#888888" x1="599.5" x2="599.5" y1="201.12673781818185" y2="212.21764690909094"/>
-  <line stroke="#888888" x1="599.5" x2="594.5000000000001" y1="212.21764690909094" y2="212.21764690909094"/>
-  <line stroke="#888888" x1="619.7500000000001" x2="623.25" y1="146.308556" y2="146.308556"/>
-  <line stroke="#888888" x1="623.25" x2="623.25" y1="146.308556" y2="154.30855600000004"/>
-  <line stroke="#888888" x1="623.25" x2="619.7500000000001" y1="154.30855600000004" y2="154.30855600000004"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="166.0" y2="166.0"/>
+  <line opacity="0.25" stroke="#ff0000" x1="98.65427803486146" x2="98.65427803486146" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="166.0" y2="166.0"/>
+  <line opacity="0.25" stroke="#ff0000" x1="71.65427803486145" x2="71.65427803486145" y1="105.00000000000001" y2="166.0"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="88.00000000000001" y2="105.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="27.000000000000004" y2="88.00000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="98.65427803486146" x2="71.65427803486145" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="10.000000000000002" y2="27.000000000000004"/>
+  <line opacity="0.5" stroke="#0000ff" x1="71.65427803486145" x2="98.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="154.90909090909093" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="127.1818181818182" y2="127.1818181818182"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="127.1818181818182" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="102.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="102.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="116.09090909090911" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="127.18181818181822" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="143.81818181818184" y2="143.81818181818184"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="143.81818181818184" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="190.30855606972293" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="251.30855606972293" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="359.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="359.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="261.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="359.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="285.3085560697229" x2="285.3085560697229" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="285.3085560697229" y1="205.50000000000003" y2="169.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="285.3085560697229" x2="261.30855606972295" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="169.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="205.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="285.3085560697229" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="285.3085560697229" y1="255.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="285.3085560697229" y1="255.50000000000003" y2="255.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="250.50000000000003" y2="255.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="305.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="305.30855606972295" x2="285.3085560697229" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="305.30855606972295" x2="305.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="305.30855606972295" x2="329.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="329.30855606972295" x2="305.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="329.30855606972295" x2="329.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="329.30855606972295" x2="349.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="349.30855606972295" x2="329.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="349.30855606972295" x2="349.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="349.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="359.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="349.30855606972295" x2="359.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line opacity="0.25" stroke="#0000ff" x1="251.30855606972293" x2="190.30855606972293" y1="171.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="135.50000000000003" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="251.30855606972293" y1="171.63862199918535" y2="135.50000000000003"/>
+  <line opacity="0.25" stroke="#0000ff" x1="190.30855606972293" x2="251.30855606972293" y1="195.63862199918535" y2="195.63862199918535"/>
+  <line opacity="0.5" stroke="#0000ff" x1="190.30855606972293" x2="190.30855606972293" y1="195.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="251.30855606972293" y1="231.77724399837064" y2="195.63862199918532"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="195.63862199918532" y2="231.77724399837064"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="251.30855606972293" y1="241.7772439983706" y2="231.77724399837064"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="251.30855606972293" y1="241.7772439983706" y2="241.7772439983706"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="231.77724399837064" y2="241.7772439983706"/>
+  <line stroke="#000000" x1="180.3085560697229" x2="190.30855606972293" y1="195.63862199918535" y2="195.63862199918535"/>
+  <line stroke="#000000" x1="180.3085560697229" x2="180.3085560697229" y1="171.63862199918535" y2="195.63862199918535"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="180.3085560697229" y1="171.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="251.30855606972293" y1="171.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="195.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="261.30855606972295" y1="195.63862199918535" y2="195.63862199918535"/>
+  <line stroke="#888888" x1="212.7403742515411" x2="201.14946516063202" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="201.14946516063202" x2="201.14946516063202" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="201.14946516063202" x2="212.7403742515411" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="212.7403742515411" x2="212.7403742515411" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="240.4676469788138" x2="228.87673788790474" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="228.87673788790474" x2="228.87673788790474" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="228.87673788790474" x2="240.4676469788138" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="240.4676469788138" x2="240.4676469788138" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="269.0585560697229" x2="269.0585560697229" y1="146.58333333333337" y2="158.41666666666669"/>
+  <line stroke="#888888" x1="269.0585560697229" x2="268.55855606972295" y1="158.41666666666669" y2="158.41666666666669"/>
+  <line stroke="#888888" x1="268.55855606972295" x2="268.55855606972295" y1="158.41666666666669" y2="146.58333333333337"/>
+  <line stroke="#888888" x1="268.55855606972295" x2="269.0585560697229" y1="146.58333333333337" y2="146.58333333333337"/>
+  <line stroke="#888888" x1="269.3085560697229" x2="266.8085560697229" y1="254.25000000000003" y2="254.25000000000003"/>
+  <line stroke="#888888" x1="266.8085560697229" x2="269.3085560697229" y1="254.25000000000003" y2="251.75000000000003"/>
+  <line stroke="#888888" x1="269.3085560697229" x2="277.30855606972295" y1="251.75000000000003" y2="251.75000000000003"/>
+  <line stroke="#888888" x1="277.30855606972295" x2="279.8085560697229" y1="251.75000000000003" y2="254.25000000000003"/>
+  <line stroke="#888888" x1="279.8085560697229" x2="277.30855606972295" y1="254.25000000000003" y2="254.25000000000003"/>
+  <line stroke="#888888" x1="304.30855606972295" x2="300.30855606972295" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="300.30855606972295" x2="300.30855606972295" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="300.30855606972295" x2="304.30855606972295" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="304.30855606972295" x2="304.30855606972295" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="292.30855606972295" x2="288.3085560697229" y1="157.0" y2="157.0"/>
+  <line stroke="#888888" x1="288.3085560697229" x2="288.3085560697229" y1="157.0" y2="148.0"/>
+  <line stroke="#888888" x1="288.3085560697229" x2="292.30855606972295" y1="148.0" y2="148.0"/>
+  <line stroke="#888888" x1="292.30855606972295" x2="292.30855606972295" y1="148.0" y2="157.0"/>
+  <line stroke="#888888" x1="328.80855606972295" x2="305.80855606972295" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="305.80855606972295" x2="305.80855606972295" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="305.80855606972295" x2="328.80855606972295" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="328.80855606972295" x2="328.80855606972295" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="334.3085560697229" x2="330.3085560697229" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="330.3085560697229" x2="330.3085560697229" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="330.3085560697229" x2="334.3085560697229" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="334.3085560697229" x2="334.3085560697229" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="356.80855606972295" x2="351.80855606972295" y1="158.16666666666669" y2="158.16666666666669"/>
+  <line stroke="#888888" x1="351.80855606972295" x2="351.80855606972295" y1="158.16666666666669" y2="146.83333333333337"/>
+  <line stroke="#888888" x1="351.80855606972295" x2="356.80855606972295" y1="146.83333333333337" y2="146.83333333333337"/>
+  <line stroke="#888888" x1="233.30855606972293" x2="222.30855606972293" y1="190.13862199918535" y2="190.13862199918535"/>
+  <line stroke="#888888" x1="222.30855606972293" x2="222.30855606972293" y1="190.13862199918535" y2="177.13862199918535"/>
+  <line stroke="#888888" x1="222.30855606972293" x2="233.30855606972293" y1="177.13862199918535" y2="177.13862199918535"/>
+  <line stroke="#888888" x1="233.30855606972293" x2="233.30855606972293" y1="177.13862199918535" y2="190.13862199918535"/>
+  <line stroke="#888888" x1="201.80855606972293" x2="195.8085560697229" y1="188.63862199918535" y2="188.63862199918535"/>
+  <line stroke="#888888" x1="195.8085560697229" x2="195.8085560697229" y1="188.63862199918535" y2="178.63862199918535"/>
+  <line stroke="#888888" x1="195.8085560697229" x2="201.80855606972293" y1="178.63862199918535" y2="178.63862199918535"/>
+  <line stroke="#888888" x1="201.80855606972293" x2="201.80855606972293" y1="178.63862199918535" y2="188.63862199918535"/>
+  <line stroke="#888888" x1="201.399465160632" x2="201.399465160632" y1="239.27724399837064" y2="234.27724399837064"/>
+  <line stroke="#888888" x1="201.399465160632" x2="212.4903742515411" y1="234.27724399837064" y2="234.27724399837064"/>
+  <line stroke="#888888" x1="212.4903742515411" x2="212.4903742515411" y1="234.27724399837064" y2="239.27724399837064"/>
+  <line stroke="#888888" x1="229.12673788790474" x2="229.12673788790474" y1="239.27724399837064" y2="234.27724399837064"/>
+  <line stroke="#888888" x1="229.12673788790474" x2="240.21764697881383" y1="234.27724399837064" y2="234.27724399837064"/>
+  <line stroke="#888888" x1="240.21764697881383" x2="240.21764697881383" y1="234.27724399837064" y2="239.27724399837064"/>
+  <line stroke="#888888" x1="182.80855606972293" x2="187.80855606972293" y1="179.63862199918535" y2="179.63862199918535"/>
+  <line stroke="#888888" x1="187.80855606972293" x2="187.80855606972293" y1="179.63862199918535" y2="187.63862199918535"/>
+  <line stroke="#888888" x1="187.80855606972293" x2="182.80855606972293" y1="187.63862199918535" y2="187.63862199918535"/>
+  <line stroke="#888888" x1="258.80855606972295" x2="253.80855606972293" y1="187.63862199918535" y2="187.63862199918535"/>
+  <line stroke="#888888" x1="253.80855606972293" x2="253.80855606972293" y1="187.63862199918535" y2="179.63862199918535"/>
+  <line stroke="#888888" x1="253.80855606972293" x2="258.80855606972295" y1="179.63862199918535" y2="179.63862199918535"/>
+  <line stroke="#000000" x1="477.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="538.3085560697231" x2="477.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="538.3085560697231" x2="538.3085560697231" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="477.30855606972295" x2="538.3085560697231" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="467.30855606972295" x2="477.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="443.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="538.3085560697231" x2="538.3085560697231" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="467.30855606972295" x2="467.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="443.30855606972295" x2="443.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="467.30855606972295" x2="467.30855606972295" y1="205.50000000000003" y2="169.50000000000003"/>
+  <line opacity="0.5" stroke="#ff0000" x1="467.30855606972295" x2="443.30855606972295" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="443.30855606972295" x2="443.30855606972295" y1="169.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="443.30855606972295" x2="443.30855606972295" y1="205.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="467.30855606972295" x2="467.30855606972295" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="443.30855606972295" x2="467.30855606972295" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="443.30855606972295" x2="423.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="423.30855606972295" x2="443.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="423.30855606972295" x2="423.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="423.30855606972295" x2="399.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="399.30855606972295" x2="423.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="399.30855606972295" x2="399.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="399.30855606972295" x2="379.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="379.30855606972295" x2="399.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="379.30855606972295" x2="379.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="379.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="379.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#888888" x1="499.74037425154114" x2="488.1494651606321" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="488.1494651606321" x2="488.1494651606321" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="488.1494651606321" x2="499.74037425154114" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="499.74037425154114" x2="499.74037425154114" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="527.4676469788138" x2="515.8767378879047" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="515.8767378879047" x2="515.8767378879047" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="515.8767378879047" x2="527.4676469788138" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="527.4676469788138" x2="527.4676469788138" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="515.8767378879047" x2="527.4676469788138" y1="127.75000000000001" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="527.4676469788138" x2="527.4676469788138" y1="127.75000000000001" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="527.4676469788138" x2="515.8767378879047" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="515.8767378879047" x2="515.8767378879047" y1="128.25000000000003" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="488.1494651606321" x2="499.74037425154114" y1="127.75000000000001" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="499.74037425154114" x2="499.74037425154114" y1="127.75000000000001" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="499.74037425154114" x2="488.1494651606321" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="488.1494651606321" x2="488.1494651606321" y1="128.25000000000003" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="459.55855606972295" x2="459.55855606972295" y1="158.41666666666669" y2="146.58333333333337"/>
+  <line stroke="#888888" x1="459.55855606972295" x2="460.05855606972295" y1="146.58333333333337" y2="146.58333333333337"/>
+  <line stroke="#888888" x1="460.05855606972295" x2="460.05855606972295" y1="146.58333333333337" y2="158.41666666666669"/>
+  <line stroke="#888888" x1="460.05855606972295" x2="459.55855606972295" y1="158.41666666666669" y2="158.41666666666669"/>
+  <line stroke="#888888" x1="451.05855606972295" x2="459.55855606972295" y1="246.50000000000003" y2="246.50000000000003"/>
+  <line stroke="#888888" x1="459.55855606972295" x2="459.55855606972295" y1="246.50000000000003" y2="247.00000000000003"/>
+  <line stroke="#888888" x1="459.55855606972295" x2="451.05855606972295" y1="247.00000000000003" y2="247.00000000000003"/>
+  <line stroke="#888888" x1="451.05855606972295" x2="451.05855606972295" y1="247.00000000000003" y2="246.50000000000003"/>
+  <line stroke="#888888" x1="424.30855606972295" x2="428.30855606972295" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="428.30855606972295" x2="428.30855606972295" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="428.30855606972295" x2="424.30855606972295" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="424.30855606972295" x2="424.30855606972295" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="436.30855606972295" x2="440.30855606972295" y1="148.0" y2="148.0"/>
+  <line stroke="#888888" x1="440.30855606972295" x2="440.30855606972295" y1="148.0" y2="157.0"/>
+  <line stroke="#888888" x1="440.30855606972295" x2="436.30855606972295" y1="157.0" y2="157.0"/>
+  <line stroke="#888888" x1="436.30855606972295" x2="436.30855606972295" y1="157.0" y2="148.0"/>
+  <line stroke="#888888" x1="399.80855606972295" x2="422.80855606972295" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="422.80855606972295" x2="422.80855606972295" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="422.80855606972295" x2="399.80855606972295" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="399.80855606972295" x2="399.80855606972295" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="394.3085560697229" x2="398.3085560697229" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="398.3085560697229" x2="398.3085560697229" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="398.3085560697229" x2="394.3085560697229" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="394.3085560697229" x2="394.3085560697229" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="371.80855606972295" x2="376.80855606972295" y1="146.83333333333337" y2="146.83333333333337"/>
+  <line stroke="#888888" x1="376.80855606972295" x2="376.80855606972295" y1="146.83333333333337" y2="158.16666666666669"/>
+  <line stroke="#888888" x1="376.80855606972295" x2="371.80855606972295" y1="158.16666666666669" y2="158.16666666666669"/>
+  <line opacity="0.5" stroke="#0000ff" x1="581.3085560697231" x2="642.3085560697231" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="642.3085560697231" x2="642.3085560697231" y1="123.50000000000001" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="642.3085560697231" x2="581.3085560697231" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="581.3085560697231" x2="581.3085560697231" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="581.3085560697231" x2="581.3085560697231" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="641.3085560697231" x2="581.3085560697231" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="641.3085560697231" x2="641.3085560697231" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="649.308556069723" x2="642.3085560697231" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="649.308556069723" x2="649.308556069723" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="642.3085560697231" x2="649.308556069723" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="642.3085560697231" x2="642.3085560697231" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="582.3085560697231" x2="642.3085560697231" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="582.3085560697231" x2="582.3085560697231" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="666.308556069723" x2="642.3085560697231" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="666.308556069723" x2="666.308556069723" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="642.3085560697231" x2="666.308556069723" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="726.3085560697231" x2="666.308556069723" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="726.3085560697231" x2="726.3085560697231" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="666.308556069723" x2="726.3085560697231" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="582.3085560697231" x2="558.308556069723" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="558.308556069723" x2="582.3085560697231" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="558.308556069723" x2="558.308556069723" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="548.308556069723" x2="558.308556069723" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="548.308556069723" x2="548.308556069723" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="558.308556069723" x2="548.308556069723" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="574.308556069723" x2="581.3085560697231" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="574.308556069723" x2="574.308556069723" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="581.3085560697231" x2="574.308556069723" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="630.3994651606322" x2="633.8994651606321" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="633.8994651606321" x2="630.3994651606322" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="630.3994651606322" x2="619.4903742515411" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="619.4903742515411" x2="615.9903742515413" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="615.9903742515413" x2="619.4903742515411" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="603.1267378879049" x2="606.6267378879048" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="606.6267378879048" x2="603.1267378879049" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="603.1267378879049" x2="592.2176469788138" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="592.2176469788138" x2="588.717646978814" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="588.717646978814" x2="592.2176469788138" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="647.5585560697231" x2="644.058556069723" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="644.058556069723" x2="644.058556069723" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="644.058556069723" x2="647.5585560697231" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="589.8085560697231" x2="589.8085560697231" y1="199.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="589.8085560697231" x2="624.8085560697231" y1="181.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="624.8085560697231" x2="624.8085560697231" y1="181.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="624.8085560697231" x2="589.8085560697231" y1="199.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="642.8085560697231" x2="642.8085560697231" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="642.8085560697231" x2="645.8085560697231" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="645.8085560697231" x2="645.8085560697231" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="645.8085560697231" x2="642.8085560697231" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="662.8085560697231" x2="662.8085560697231" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="662.8085560697231" x2="665.808556069723" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="665.808556069723" x2="665.808556069723" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="665.808556069723" x2="662.8085560697231" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="658.5585560697231" x2="650.0585560697231" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="650.0585560697231" x2="650.0585560697231" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="650.0585560697231" x2="658.5585560697231" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="658.5585560697231" x2="658.5585560697231" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="650.0585560697231" x2="658.5585560697231" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="658.5585560697231" x2="658.5585560697231" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="658.5585560697231" x2="650.0585560697231" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="650.0585560697231" x2="650.0585560697231" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="681.3085560697231" x2="681.3085560697231" y1="198.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="681.3085560697231" x2="711.308556069723" y1="185.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="711.308556069723" x2="711.308556069723" y1="185.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="711.308556069723" x2="681.3085560697231" y1="198.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="688.3767378879048" x2="676.9676469788138" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="676.9676469788138" x2="676.9676469788138" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="676.9676469788138" x2="688.3767378879048" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="688.3767378879048" x2="688.3767378879048" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="715.6494651606322" x2="704.2403742515411" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="704.2403742515411" x2="704.2403742515411" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="704.2403742515411" x2="715.6494651606322" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="715.6494651606322" x2="715.6494651606322" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="718.5585560697231" x2="718.5585560697231" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="718.5585560697231" x2="719.0585560697231" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="719.0585560697231" x2="719.0585560697231" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="719.0585560697231" x2="718.5585560697231" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="718.5585560697231" x2="718.5585560697231" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="718.5585560697231" x2="719.0585560697231" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="719.0585560697231" x2="719.0585560697231" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="719.0585560697231" x2="718.5585560697231" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="558.808556069723" x2="558.808556069723" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="558.808556069723" x2="561.8085560697231" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="561.8085560697231" x2="561.8085560697231" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="561.8085560697231" x2="558.808556069723" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="578.8085560697231" x2="578.8085560697231" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="578.8085560697231" x2="581.8085560697231" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="581.8085560697231" x2="581.8085560697231" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="581.8085560697231" x2="578.8085560697231" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="574.5585560697231" x2="566.0585560697231" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="566.0585560697231" x2="566.0585560697231" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="566.0585560697231" x2="574.5585560697231" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="574.5585560697231" x2="574.5585560697231" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="566.0585560697231" x2="574.5585560697231" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="574.5585560697231" x2="574.5585560697231" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="574.5585560697231" x2="566.0585560697231" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="566.0585560697231" x2="566.0585560697231" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="550.8085560697231" x2="555.808556069723" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="555.808556069723" x2="555.808556069723" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="555.808556069723" x2="550.8085560697231" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="550.8085560697231" x2="555.808556069723" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="555.808556069723" x2="555.808556069723" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="555.808556069723" x2="550.8085560697231" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="576.0585560697231" x2="579.558556069723" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="579.558556069723" x2="579.558556069723" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="579.558556069723" x2="576.0585560697231" y1="139.50000000000003" y2="139.50000000000003"/>
 </svg>
diff --git a/rocolib/output/ServoStackBatteryMount/graph-autofold-default.dxf b/rocolib/output/ServoStackBatteryMount/graph-autofold-default.dxf
index 2d37331c99a8f10ced0e40760414192586e83875..55e904d8fd09cc80639ad70bc4538b84397fdead 100644
--- a/rocolib/output/ServoStackBatteryMount/graph-autofold-default.dxf
+++ b/rocolib/output/ServoStackBatteryMount/graph-autofold-default.dxf
@@ -557,7 +557,7 @@ CONTINUOUS
   0
 LAYER
   2
-90
+-45
  70
 0
  62
@@ -567,7 +567,7 @@ CONTINUOUS
   0
 LAYER
   2
--90
+90
  70
 0
  62
@@ -577,7 +577,7 @@ CONTINUOUS
   0
 LAYER
   2
-45
+-90
  70
 0
  62
@@ -587,7 +587,7 @@ CONTINUOUS
   0
 LAYER
   2
--45
+45
  70
 0
  62
@@ -993,15 +993,15 @@ LINE
   8
 cut
  10
-229.00000000000003
+160.30855606972293
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-229.00000000000003
+98.65427803486146
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -1011,15 +1011,35 @@ LINE
   8
 cut
  10
+98.65427803486146
+ 20
+166.0
+ 30
 0.0
+ 11
+160.30855606972293
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-45
+ 10
+98.65427803486146
  20
-150.30855600000004
+166.0
  30
 0.0
  11
-229.00000000000003
+98.65427803486146
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -1029,15 +1049,51 @@ LINE
   8
 cut
  10
+170.30855606972293
+ 20
+105.00000000000001
+ 30
 0.0
+ 11
+160.30855606972293
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+170.30855606972293
  20
-150.30855600000004
+166.0
  30
 0.0
  11
+170.30855606972293
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+160.30855606972293
+ 20
+166.0
+ 30
 0.0
+ 11
+170.30855606972293
  21
-150.30855600000004
+166.0
  31
 0.0
   0
@@ -1047,15 +1103,73 @@ LINE
   8
 cut
  10
+71.65427803486145
+ 20
+166.0
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-45
+ 10
+71.65427803486145
+ 20
+105.00000000000001
+ 30
 0.0
+ 11
+71.65427803486145
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+98.65427803486146
  20
-140.30855600000004
+105.00000000000001
  30
 0.0
  11
+71.65427803486145
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+10.000000000000002
+ 20
+166.0
+ 30
 0.0
+ 11
+71.65427803486145
  21
-150.30855600000004
+166.0
  31
 0.0
   0
@@ -1065,15 +1179,33 @@ LINE
   8
 cut
  10
-60.00000000000001
+71.65427803486145
  20
-140.30855600000004
+105.00000000000001
  30
 0.0
  11
+10.000000000000002
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+0.0
+ 20
+166.0
+ 30
 0.0
+ 11
+10.000000000000002
  21
-140.30855600000004
+166.0
  31
 0.0
   0
@@ -1083,15 +1215,15 @@ LINE
   8
 cut
  10
-60.00000000000001
+0.0
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-60.00000000000001
+0.0
  21
-140.30855600000004
+166.0
  31
 0.0
   0
@@ -1101,15 +1233,15 @@ LINE
   8
 cut
  10
-134.00000000000003
+10.000000000000002
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-60.00000000000001
+0.0
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -1119,15 +1251,15 @@ LINE
   8
 cut
  10
-168.0
+98.65427803486146
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-158.00000000000003
+98.65427803486146
  21
-150.30855600000004
+88.00000000000001
  31
 0.0
   0
@@ -1137,15 +1269,35 @@ LINE
   8
 cut
  10
-229.00000000000003
+71.65427803486145
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+98.65427803486146
  20
-150.30855600000004
+88.00000000000001
  30
 0.0
  11
-229.00000000000003
+71.65427803486145
  21
-150.30855600000004
+88.00000000000001
  31
 0.0
   0
@@ -1155,15 +1307,15 @@ LINE
   8
 cut
  10
-60.00000000000001
+98.65427803486146
  20
-150.30855600000004
+88.00000000000001
  30
 0.0
  11
-60.00000000000001
+98.65427803486146
  21
-150.30855600000004
+27.000000000000004
  31
 0.0
   0
@@ -1173,15 +1325,15 @@ LINE
   8
 cut
  10
-158.00000000000003
+71.65427803486145
  20
-150.30855600000004
+27.000000000000004
  30
 0.0
  11
-158.00000000000003
+71.65427803486145
  21
-116.30855600000002
+88.00000000000001
  31
 0.0
   0
@@ -1193,15 +1345,33 @@ DOTTED
   8
 90
  10
-134.00000000000003
+98.65427803486146
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+98.65427803486146
  20
-116.30855600000002
+27.000000000000004
  30
 0.0
  11
-134.00000000000003
+98.65427803486146
  21
-150.30855600000004
+10.000000000000002
  31
 0.0
   0
@@ -1211,15 +1381,15 @@ LINE
   8
 cut
  10
-134.00000000000003
+71.65427803486145
  20
-80.30855600000002
+10.000000000000002
  30
 0.0
  11
-134.00000000000003
+71.65427803486145
  21
-116.30855600000002
+27.000000000000004
  31
 0.0
   0
@@ -1229,17 +1399,17 @@ DOTTED
  62
 1
   8
--90
+90
  10
-134.00000000000003
+71.65427803486145
  20
-80.30855600000002
+10.000000000000002
  30
 0.0
  11
-158.00000000000003
+98.65427803486146
  21
-80.30855600000002
+10.000000000000002
  31
 0.0
   0
@@ -1249,15 +1419,15 @@ LINE
   8
 cut
  10
-158.00000000000003
+71.65427803486145
  20
-116.30855600000002
+0.0
  30
 0.0
  11
-158.00000000000003
+71.65427803486145
  21
-80.30855600000002
+10.000000000000002
  31
 0.0
   0
@@ -1267,15 +1437,15 @@ LINE
   8
 cut
  10
-158.00000000000003
+98.65427803486146
  20
-80.30855600000002
+0.0
  30
 0.0
  11
-158.00000000000003
+71.65427803486145
  21
-35.30855600000002
+0.0
  31
 0.0
   0
@@ -1285,15 +1455,15 @@ LINE
   8
 cut
  10
-134.00000000000003
+98.65427803486146
  20
-35.30855600000002
+10.000000000000002
  30
 0.0
  11
-134.00000000000003
+98.65427803486146
  21
-80.30855600000002
+0.0
  31
 0.0
   0
@@ -1303,15 +1473,15 @@ LINE
   8
 cut
  10
-134.00000000000003
+167.80855606972293
  20
-30.308556000000017
+154.90909090909093
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-35.30855600000002
+154.90909090909093
  31
 0.0
   0
@@ -1321,15 +1491,15 @@ LINE
   8
 cut
  10
-158.00000000000003
+162.80855606972293
  20
-30.308556000000017
+154.90909090909093
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-30.308556000000017
+143.8181818181818
  31
 0.0
   0
@@ -1339,15 +1509,15 @@ LINE
   8
 cut
  10
-158.00000000000003
+162.80855606972293
  20
-35.30855600000002
+143.8181818181818
  30
 0.0
  11
-158.00000000000003
+167.80855606972293
  21
-30.308556000000017
+143.8181818181818
  31
 0.0
   0
@@ -1357,15 +1527,15 @@ LINE
   8
 cut
  10
-134.00000000000003
+167.80855606972293
  20
-116.30855600000002
+127.1818181818182
  30
 0.0
  11
-114.00000000000001
+162.80855606972293
  21
-116.30855600000002
+127.1818181818182
  31
 0.0
   0
@@ -1375,35 +1545,33 @@ LINE
   8
 cut
  10
-114.00000000000001
+162.80855606972293
  20
-150.30855600000004
+127.1818181818182
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-150.30855600000004
+116.09090909090911
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-114.00000000000001
+162.80855606972293
  20
-116.30855600000002
+116.09090909090911
  30
 0.0
  11
-114.00000000000001
+167.80855606972293
  21
-150.30855600000004
+116.09090909090911
  31
 0.0
   0
@@ -1413,15 +1581,15 @@ LINE
   8
 cut
  10
-114.00000000000001
+94.15427803486146
  20
-116.30855600000002
+102.50000000000001
  30
 0.0
  11
-90.0
+94.15427803486146
  21
-116.30855600000002
+108.50000000000001
  31
 0.0
   0
@@ -1431,35 +1599,33 @@ LINE
   8
 cut
  10
-90.0
+94.15427803486146
  20
-150.30855600000004
+108.50000000000001
  30
 0.0
  11
-114.00000000000001
+76.15427803486145
  21
-150.30855600000004
+108.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-90.0
+76.15427803486145
  20
-116.30855600000002
+108.50000000000001
  30
 0.0
  11
-90.0
+76.15427803486145
  21
-150.30855600000004
+102.50000000000001
  31
 0.0
   0
@@ -1469,15 +1635,15 @@ LINE
   8
 cut
  10
-90.0
+76.15427803486145
  20
-116.30855600000002
+102.50000000000001
  30
 0.0
  11
-70.00000000000001
+94.15427803486146
  21
-116.30855600000002
+102.50000000000001
  31
 0.0
   0
@@ -1487,35 +1653,33 @@ LINE
   8
 cut
  10
-70.00000000000001
+80.40427803486146
  20
-150.30855600000004
+158.25000000000003
  30
 0.0
  11
-90.0
+89.90427803486145
  21
-150.30855600000004
+158.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-70.00000000000001
+89.90427803486145
  20
-150.30855600000004
+158.25000000000003
  30
 0.0
  11
-70.00000000000001
+89.90427803486145
  21
-116.30855600000002
+158.75000000000003
  31
 0.0
   0
@@ -1525,15 +1689,15 @@ LINE
   8
 cut
  10
-60.00000000000001
+89.90427803486145
  20
-150.30855600000004
+158.75000000000003
  30
 0.0
  11
-70.00000000000001
+80.40427803486146
  21
-150.30855600000004
+158.75000000000003
  31
 0.0
   0
@@ -1543,15 +1707,15 @@ LINE
   8
 cut
  10
-60.00000000000001
+80.40427803486146
  20
-116.30855600000002
+158.75000000000003
  30
 0.0
  11
-60.00000000000001
+80.40427803486146
  21
-150.30855600000004
+158.25000000000003
  31
 0.0
   0
@@ -1561,35 +1725,33 @@ LINE
   8
 cut
  10
-70.00000000000001
+2.5000000000000004
  20
-116.30855600000002
+116.09090909090911
  30
 0.0
  11
-60.00000000000001
+7.500000000000001
  21
-116.30855600000002
+116.09090909090911
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-45
+cut
  10
-168.0
+7.500000000000001
  20
-114.16993400081472
+116.09090909090911
  30
 0.0
  11
-229.00000000000003
+7.500000000000001
  21
-114.16993400081472
+127.18181818181822
  31
 0.0
   0
@@ -1599,15 +1761,15 @@ LINE
   8
 cut
  10
-229.00000000000003
+7.500000000000001
  20
-150.30855600000004
+127.18181818181822
  30
 0.0
  11
-229.00000000000003
+2.5000000000000004
  21
-114.16993400081472
+127.18181818181822
  31
 0.0
   0
@@ -1617,55 +1779,51 @@ LINE
   8
 cut
  10
-168.0
+2.5000000000000004
  20
-114.16993400081472
+143.81818181818184
  30
 0.0
  11
-168.0
+7.500000000000001
  21
-150.30855600000004
+143.81818181818184
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-45
+cut
  10
-229.00000000000003
+7.500000000000001
  20
-90.16993400081472
+143.81818181818184
  30
 0.0
  11
-168.0
+7.500000000000001
  21
-90.16993400081472
+154.90909090909093
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-229.00000000000003
+7.500000000000001
  20
-90.16993400081472
+154.90909090909093
  30
 0.0
  11
-229.00000000000003
+2.5000000000000004
  21
-114.16993400081472
+154.90909090909093
  31
 0.0
   0
@@ -1675,15 +1833,15 @@ LINE
   8
 cut
  10
-168.0
+89.65427803486146
  20
-54.03131200162941
+2.5000000000000004
  30
 0.0
  11
-168.0
+89.65427803486146
  21
-90.16993400081473
+7.500000000000001
  31
 0.0
   0
@@ -1693,15 +1851,15 @@ LINE
   8
 cut
  10
-229.00000000000003
+89.65427803486146
  20
-90.16993400081473
+7.500000000000001
  30
 0.0
  11
-229.00000000000003
+80.65427803486146
  21
-54.03131200162941
+7.500000000000001
  31
 0.0
   0
@@ -1711,15 +1869,15 @@ LINE
   8
 cut
  10
-168.0
+80.65427803486146
  20
-44.03131200162941
+7.500000000000001
  30
 0.0
  11
-168.0
+80.65427803486146
  21
-54.03131200162941
+2.5000000000000004
  31
 0.0
   0
@@ -1729,15 +1887,15 @@ LINE
   8
 cut
  10
-229.00000000000003
+251.30855606972293
  20
-44.03131200162941
+135.50000000000003
  30
 0.0
  11
-168.0
+190.30855606972293
  21
-44.03131200162941
+135.50000000000003
  31
 0.0
   0
@@ -1747,15 +1905,15 @@ LINE
   8
 cut
  10
-229.00000000000003
+359.30855606972295
  20
-54.03131200162941
+135.50000000000003
  30
 0.0
  11
-229.00000000000003
+251.30855606972293
  21
-44.03131200162941
+135.50000000000003
  31
 0.0
   0
@@ -1765,15 +1923,15 @@ LINE
   8
 cut
  10
-239.00000000000003
+359.30855606972295
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-229.00000000000003
+359.30855606972295
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1783,15 +1941,15 @@ LINE
   8
 cut
  10
-239.00000000000003
+190.30855606972293
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-239.00000000000003
+190.30855606972293
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1801,15 +1959,15 @@ LINE
   8
 cut
  10
-229.00000000000003
+285.3085560697229
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-239.00000000000003
+359.30855606972295
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1819,15 +1977,15 @@ LINE
   8
 cut
  10
-158.00000000000003
+251.30855606972293
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-168.0
+261.30855606972295
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1837,15 +1995,15 @@ LINE
   8
 cut
  10
-158.00000000000003
+190.30855606972293
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-158.00000000000003
+190.30855606972293
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1855,15 +2013,15 @@ LINE
   8
 cut
  10
-168.0
+359.30855606972295
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-158.00000000000003
+359.30855606972295
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1873,15 +2031,35 @@ LINE
   8
 cut
  10
-40.00000000000001
+261.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+261.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+285.3085560697229
  20
-142.80855600000004
+169.50000000000003
  30
 0.0
  11
-45.0
+285.3085560697229
  21
-142.80855600000004
+135.50000000000003
  31
 0.0
   0
@@ -1891,15 +2069,35 @@ LINE
   8
 cut
  10
-45.0
+285.3085560697229
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+285.3085560697229
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+285.3085560697229
  20
-142.80855600000004
+205.50000000000003
  30
 0.0
  11
-40.00000000000001
+261.30855606972295
  21
-147.80855600000004
+205.50000000000003
  31
 0.0
   0
@@ -1909,15 +2107,15 @@ LINE
   8
 cut
  10
-40.00000000000001
+261.30855606972295
  20
-147.80855600000004
+169.50000000000003
  30
 0.0
  11
-20.000000000000004
+261.30855606972295
  21
-147.80855600000004
+205.50000000000003
  31
 0.0
   0
@@ -1927,15 +2125,15 @@ LINE
   8
 cut
  10
-20.000000000000004
+261.30855606972295
  20
-147.80855600000004
+205.50000000000003
  30
 0.0
  11
-15.000000000000002
+261.30855606972295
  21
-142.80855600000004
+250.50000000000003
  31
 0.0
   0
@@ -1945,15 +2143,15 @@ LINE
   8
 cut
  10
-15.000000000000002
+285.3085560697229
  20
-142.80855600000004
+250.50000000000003
  30
 0.0
  11
-20.000000000000004
+285.3085560697229
  21
-142.80855600000004
+205.50000000000003
  31
 0.0
   0
@@ -1963,15 +2161,15 @@ LINE
   8
 cut
  10
-150.25
+285.3085560697229
  20
-139.2252226666667
+255.50000000000003
  30
 0.0
  11
-150.25
+285.3085560697229
  21
-127.39188933333337
+250.50000000000003
  31
 0.0
   0
@@ -1981,15 +2179,15 @@ LINE
   8
 cut
  10
-150.25
+261.30855606972295
  20
-127.39188933333337
+255.50000000000003
  30
 0.0
  11
-150.75000000000003
+285.3085560697229
  21
-127.39188933333337
+255.50000000000003
  31
 0.0
   0
@@ -1999,15 +2197,15 @@ LINE
   8
 cut
  10
-150.75000000000003
+261.30855606972295
  20
-127.39188933333337
+250.50000000000003
  30
 0.0
  11
-150.75000000000003
+261.30855606972295
  21
-139.2252226666667
+255.50000000000003
  31
 0.0
   0
@@ -2017,15 +2215,15 @@ LINE
   8
 cut
  10
-150.75000000000003
+285.3085560697229
  20
-139.2252226666667
+169.50000000000003
  30
 0.0
  11
-150.25
+305.30855606972295
  21
-139.2252226666667
+169.50000000000003
  31
 0.0
   0
@@ -2035,15 +2233,35 @@ LINE
   8
 cut
  10
-150.0
+305.30855606972295
  20
-31.558556000000014
+135.50000000000003
  30
 0.0
  11
-152.5
+285.3085560697229
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+305.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+305.30855606972295
  21
-31.558556000000014
+135.50000000000003
  31
 0.0
   0
@@ -2053,15 +2271,53 @@ LINE
   8
 cut
  10
-152.5
+305.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+329.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+329.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+305.30855606972295
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+329.30855606972295
  20
-31.558556000000014
+169.50000000000003
  30
 0.0
  11
-150.0
+329.30855606972295
  21
-34.05855600000001
+135.50000000000003
  31
 0.0
   0
@@ -2071,15 +2327,15 @@ LINE
   8
 cut
  10
-150.0
+329.30855606972295
  20
-34.05855600000001
+169.50000000000003
  30
 0.0
  11
-142.00000000000003
+349.30855606972295
  21
-34.05855600000001
+169.50000000000003
  31
 0.0
   0
@@ -2089,15 +2345,35 @@ LINE
   8
 cut
  10
-142.00000000000003
+349.30855606972295
  20
-34.05855600000001
+135.50000000000003
  30
 0.0
  11
-139.50000000000003
+329.30855606972295
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+349.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+349.30855606972295
  21
-31.558556000000014
+169.50000000000003
  31
 0.0
   0
@@ -2107,15 +2383,15 @@ LINE
   8
 cut
  10
-139.50000000000003
+359.30855606972295
  20
-31.558556000000014
+135.50000000000003
  30
 0.0
  11
-142.00000000000003
+349.30855606972295
  21
-31.558556000000014
+135.50000000000003
  31
 0.0
   0
@@ -2125,15 +2401,15 @@ LINE
   8
 cut
  10
-115.00000000000001
+359.30855606972295
  20
-127.30855600000004
+169.50000000000003
  30
 0.0
  11
-119.00000000000001
+359.30855606972295
  21
-127.30855600000004
+135.50000000000003
  31
 0.0
   0
@@ -2143,15 +2419,35 @@ LINE
   8
 cut
  10
-119.00000000000001
+349.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+359.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+251.30855606972293
  20
-127.30855600000004
+171.63862199918535
  30
 0.0
  11
-119.00000000000001
+190.30855606972293
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2161,15 +2457,15 @@ LINE
   8
 cut
  10
-119.00000000000001
+190.30855606972293
  20
-139.30855600000004
+135.50000000000003
  30
 0.0
  11
-115.00000000000001
+190.30855606972293
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2179,15 +2475,55 @@ LINE
   8
 cut
  10
-115.00000000000001
+251.30855606972293
+ 20
+171.63862199918535
+ 30
+0.0
+ 11
+251.30855606972293
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+45
+ 10
+190.30855606972293
+ 20
+195.63862199918535
+ 30
+0.0
+ 11
+251.30855606972293
+ 21
+195.63862199918535
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+190.30855606972293
  20
-139.30855600000004
+195.63862199918535
  30
 0.0
  11
-115.00000000000001
+190.30855606972293
  21
-127.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2197,15 +2533,15 @@ LINE
   8
 cut
  10
-127.00000000000001
+251.30855606972293
  20
-128.808556
+231.77724399837064
  30
 0.0
  11
-131.0
+251.30855606972293
  21
-128.808556
+195.63862199918532
  31
 0.0
   0
@@ -2215,15 +2551,15 @@ LINE
   8
 cut
  10
-131.0
+190.30855606972293
  20
-128.808556
+195.63862199918532
  30
 0.0
  11
-131.0
+190.30855606972293
  21
-137.808556
+231.77724399837064
  31
 0.0
   0
@@ -2233,15 +2569,15 @@ LINE
   8
 cut
  10
-131.0
+251.30855606972293
  20
-137.808556
+241.7772439983706
  30
 0.0
  11
-127.00000000000001
+251.30855606972293
  21
-137.808556
+231.77724399837064
  31
 0.0
   0
@@ -2251,15 +2587,15 @@ LINE
   8
 cut
  10
-127.00000000000001
+190.30855606972293
  20
-137.808556
+241.7772439983706
  30
 0.0
  11
-127.00000000000001
+251.30855606972293
  21
-128.808556
+241.7772439983706
  31
 0.0
   0
@@ -2269,15 +2605,15 @@ LINE
   8
 cut
  10
-90.50000000000001
+190.30855606972293
  20
-127.30855600000004
+231.77724399837064
  30
 0.0
  11
-113.50000000000001
+190.30855606972293
  21
-127.30855600000004
+241.7772439983706
  31
 0.0
   0
@@ -2287,15 +2623,15 @@ LINE
   8
 cut
  10
-113.50000000000001
+180.3085560697229
  20
-127.30855600000004
+195.63862199918535
  30
 0.0
  11
-113.50000000000001
+190.30855606972293
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2305,15 +2641,15 @@ LINE
   8
 cut
  10
-113.50000000000001
+180.3085560697229
  20
-139.30855600000004
+171.63862199918535
  30
 0.0
  11
-90.50000000000001
+180.3085560697229
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2323,15 +2659,15 @@ LINE
   8
 cut
  10
-90.50000000000001
+190.30855606972293
  20
-139.30855600000004
+171.63862199918535
  30
 0.0
  11
-90.50000000000001
+180.3085560697229
  21
-127.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2341,15 +2677,15 @@ LINE
   8
 cut
  10
-85.00000000000001
+261.30855606972295
  20
-127.30855600000004
+171.63862199918535
  30
 0.0
  11
-89.00000000000001
+251.30855606972293
  21
-127.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2359,15 +2695,15 @@ LINE
   8
 cut
  10
-89.00000000000001
+261.30855606972295
  20
-127.30855600000004
+195.63862199918535
  30
 0.0
  11
-89.00000000000001
+261.30855606972295
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2377,15 +2713,15 @@ LINE
   8
 cut
  10
-89.00000000000001
+251.30855606972293
  20
-139.30855600000004
+195.63862199918535
  30
 0.0
  11
-85.00000000000001
+261.30855606972295
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2395,15 +2731,15 @@ LINE
   8
 cut
  10
-85.00000000000001
+212.7403742515411
  20
-139.30855600000004
+143.25
  30
 0.0
  11
-85.00000000000001
+201.14946516063202
  21
-127.30855600000004
+143.25
  31
 0.0
   0
@@ -2413,15 +2749,15 @@ LINE
   8
 cut
  10
-62.50000000000001
+201.14946516063202
  20
-127.64188933333337
+143.25
  30
 0.0
  11
-67.50000000000001
+201.14946516063202
  21
-127.64188933333337
+142.75000000000003
  31
 0.0
   0
@@ -2431,15 +2767,15 @@ LINE
   8
 cut
  10
-67.50000000000001
+201.14946516063202
  20
-127.64188933333337
+142.75000000000003
  30
 0.0
  11
-67.50000000000001
+212.7403742515411
  21
-138.9752226666667
+142.75000000000003
  31
 0.0
   0
@@ -2449,15 +2785,15 @@ LINE
   8
 cut
  10
-67.50000000000001
+212.7403742515411
  20
-138.9752226666667
+142.75000000000003
  30
 0.0
  11
-62.50000000000001
+212.7403742515411
  21
-138.9752226666667
+143.25
  31
 0.0
   0
@@ -2467,15 +2803,15 @@ LINE
   8
 cut
  10
-186.00000000000003
+240.4676469788138
  20
-95.66993400081472
+143.25
  30
 0.0
  11
-197.00000000000003
+228.87673788790474
  21
-95.66993400081472
+143.25
  31
 0.0
   0
@@ -2485,15 +2821,15 @@ LINE
   8
 cut
  10
-197.00000000000003
+228.87673788790474
  20
-95.66993400081472
+143.25
  30
 0.0
  11
-197.00000000000003
+228.87673788790474
  21
-108.66993400081472
+142.75000000000003
  31
 0.0
   0
@@ -2503,15 +2839,15 @@ LINE
   8
 cut
  10
-197.00000000000003
+228.87673788790474
  20
-108.66993400081472
+142.75000000000003
  30
 0.0
  11
-186.00000000000003
+240.4676469788138
  21
-108.66993400081472
+142.75000000000003
  31
 0.0
   0
@@ -2521,15 +2857,15 @@ LINE
   8
 cut
  10
-186.00000000000003
+240.4676469788138
  20
-108.66993400081472
+142.75000000000003
  30
 0.0
  11
-186.00000000000003
+240.4676469788138
  21
-95.66993400081472
+143.25
  31
 0.0
   0
@@ -2539,15 +2875,15 @@ LINE
   8
 cut
  10
-217.50000000000003
+269.0585560697229
  20
-97.16993400081472
+146.58333333333337
  30
 0.0
  11
-223.50000000000003
+269.0585560697229
  21
-97.16993400081472
+158.41666666666669
  31
 0.0
   0
@@ -2557,15 +2893,15 @@ LINE
   8
 cut
  10
-223.50000000000003
+269.0585560697229
  20
-97.16993400081472
+158.41666666666669
  30
 0.0
  11
-223.50000000000003
+268.55855606972295
  21
-107.16993400081472
+158.41666666666669
  31
 0.0
   0
@@ -2575,15 +2911,15 @@ LINE
   8
 cut
  10
-223.50000000000003
+268.55855606972295
  20
-107.16993400081472
+158.41666666666669
  30
 0.0
  11
-217.50000000000003
+268.55855606972295
  21
-107.16993400081472
+146.58333333333337
  31
 0.0
   0
@@ -2593,15 +2929,15 @@ LINE
   8
 cut
  10
-217.50000000000003
+268.55855606972295
  20
-107.16993400081472
+146.58333333333337
  30
 0.0
  11
-217.50000000000003
+269.0585560697229
  21
-97.16993400081472
+146.58333333333337
  31
 0.0
   0
@@ -2611,15 +2947,15 @@ LINE
   8
 cut
  10
-217.90909090909093
+269.3085560697229
  20
-46.5313120016294
+254.25000000000003
  30
 0.0
  11
-217.90909090909093
+266.8085560697229
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2629,15 +2965,15 @@ LINE
   8
 cut
  10
-217.90909090909093
+266.8085560697229
  20
-51.53131200162941
+254.25000000000003
  30
 0.0
  11
-206.81818181818184
+269.3085560697229
  21
-51.53131200162941
+251.75000000000003
  31
 0.0
   0
@@ -2647,15 +2983,15 @@ LINE
   8
 cut
  10
-206.81818181818184
+269.3085560697229
  20
-51.53131200162941
+251.75000000000003
  30
 0.0
  11
-206.81818181818184
+277.30855606972295
  21
-46.5313120016294
+251.75000000000003
  31
 0.0
   0
@@ -2665,15 +3001,15 @@ LINE
   8
 cut
  10
-190.18181818181822
+277.30855606972295
  20
-46.5313120016294
+251.75000000000003
  30
 0.0
  11
-190.18181818181822
+279.8085560697229
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2683,15 +3019,15 @@ LINE
   8
 cut
  10
-190.18181818181822
+279.8085560697229
  20
-51.53131200162941
+254.25000000000003
  30
 0.0
  11
-179.09090909090912
+277.30855606972295
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2701,15 +3037,15 @@ LINE
   8
 cut
  10
-179.09090909090912
+304.30855606972295
  20
-51.53131200162941
+158.50000000000003
  30
 0.0
  11
-179.09090909090912
+300.30855606972295
  21
-46.5313120016294
+158.50000000000003
  31
 0.0
   0
@@ -2719,15 +3055,15 @@ LINE
   8
 cut
  10
-236.50000000000003
+300.30855606972295
  20
-106.16993400081472
+158.50000000000003
  30
 0.0
  11
-231.50000000000003
+300.30855606972295
  21
-106.16993400081472
+146.50000000000003
  31
 0.0
   0
@@ -2737,15 +3073,15 @@ LINE
   8
 cut
  10
-231.50000000000003
+300.30855606972295
  20
-106.16993400081472
+146.50000000000003
  30
 0.0
  11
-231.50000000000003
+304.30855606972295
  21
-98.16993400081472
+146.50000000000003
  31
 0.0
   0
@@ -2755,15 +3091,15 @@ LINE
   8
 cut
  10
-231.50000000000003
+304.30855606972295
  20
-98.16993400081472
+146.50000000000003
  30
 0.0
  11
-236.50000000000003
+304.30855606972295
  21
-98.16993400081472
+158.50000000000003
  31
 0.0
   0
@@ -2773,15 +3109,15 @@ LINE
   8
 cut
  10
-160.50000000000003
+292.30855606972295
  20
-98.16993400081472
+157.0
  30
 0.0
  11
-165.50000000000003
+288.3085560697229
  21
-98.16993400081472
+157.0
  31
 0.0
   0
@@ -2791,15 +3127,15 @@ LINE
   8
 cut
  10
-165.50000000000003
+288.3085560697229
  20
-98.16993400081472
+157.0
  30
 0.0
  11
-165.50000000000003
+288.3085560697229
  21
-106.16993400081472
+148.0
  31
 0.0
   0
@@ -2809,15 +3145,15 @@ LINE
   8
 cut
  10
-165.50000000000003
+288.3085560697229
  20
-106.16993400081472
+148.0
  30
 0.0
  11
-160.50000000000003
+292.30855606972295
  21
-106.16993400081472
+148.0
  31
 0.0
   0
@@ -2827,15 +3163,15 @@ LINE
   8
 cut
  10
-478.00000000000006
+292.30855606972295
  20
-150.30855600000004
+148.0
  30
 0.0
  11
-478.00000000000006
+292.30855606972295
  21
-150.30855600000004
+157.0
  31
 0.0
   0
@@ -2845,15 +3181,15 @@ LINE
   8
 cut
  10
-249.00000000000003
+328.80855606972295
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-478.00000000000006
+305.80855606972295
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2863,15 +3199,15 @@ LINE
   8
 cut
  10
-249.00000000000003
+305.80855606972295
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-249.00000000000003
+305.80855606972295
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2881,15 +3217,15 @@ LINE
   8
 cut
  10
-310.0
+305.80855606972295
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-249.00000000000003
+328.80855606972295
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2899,15 +3235,15 @@ LINE
   8
 cut
  10
-320.00000000000006
+328.80855606972295
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-310.0
+328.80855606972295
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2917,15 +3253,15 @@ LINE
   8
 cut
  10
-418.00000000000006
+334.3085560697229
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-344.00000000000006
+330.3085560697229
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2935,15 +3271,15 @@ LINE
   8
 cut
  10
-418.00000000000006
+330.3085560697229
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-418.00000000000006
+330.3085560697229
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2953,15 +3289,15 @@ LINE
   8
 cut
  10
-249.00000000000003
+330.3085560697229
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-249.00000000000003
+334.3085560697229
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2971,35 +3307,33 @@ LINE
   8
 cut
  10
-320.00000000000006
+334.3085560697229
  20
-116.30855600000002
+146.50000000000003
  30
 0.0
  11
-320.00000000000006
+334.3085560697229
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-344.00000000000006
+356.80855606972295
  20
-150.30855600000004
+158.16666666666669
  30
 0.0
  11
-344.00000000000006
+351.80855606972295
  21
-116.30855600000002
+158.16666666666669
  31
 0.0
   0
@@ -3009,35 +3343,33 @@ LINE
   8
 cut
  10
-320.00000000000006
+351.80855606972295
  20
-80.30855600000002
+158.16666666666669
  30
 0.0
  11
-320.00000000000006
+351.80855606972295
  21
-116.30855600000002
+146.83333333333337
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--90
+cut
  10
-320.00000000000006
+351.80855606972295
  20
-80.30855600000002
+146.83333333333337
  30
 0.0
  11
-344.00000000000006
+356.80855606972295
  21
-80.30855600000002
+146.83333333333337
  31
 0.0
   0
@@ -3047,15 +3379,15 @@ LINE
   8
 cut
  10
-344.00000000000006
+233.30855606972293
  20
-116.30855600000002
+190.13862199918535
  30
 0.0
  11
-344.00000000000006
+222.30855606972293
  21
-80.30855600000002
+190.13862199918535
  31
 0.0
   0
@@ -3065,15 +3397,15 @@ LINE
   8
 cut
  10
-344.00000000000006
+222.30855606972293
  20
-80.30855600000002
+190.13862199918535
  30
 0.0
  11
-344.00000000000006
+222.30855606972293
  21
-35.30855600000002
+177.13862199918535
  31
 0.0
   0
@@ -3083,15 +3415,15 @@ LINE
   8
 cut
  10
-320.00000000000006
+222.30855606972293
  20
-35.30855600000002
+177.13862199918535
  30
 0.0
  11
-320.00000000000006
+233.30855606972293
  21
-80.30855600000002
+177.13862199918535
  31
 0.0
   0
@@ -3101,15 +3433,15 @@ LINE
   8
 cut
  10
-344.00000000000006
+233.30855606972293
  20
-35.30855600000002
+177.13862199918535
  30
 0.0
  11
-320.00000000000006
+233.30855606972293
  21
-35.30855600000002
+190.13862199918535
  31
 0.0
   0
@@ -3119,15 +3451,15 @@ LINE
   8
 cut
  10
-344.00000000000006
+201.80855606972293
  20
-150.30855600000004
+188.63862199918535
  30
 0.0
  11
-364.0
+195.8085560697229
  21
-150.30855600000004
+188.63862199918535
  31
 0.0
   0
@@ -3137,35 +3469,33 @@ LINE
   8
 cut
  10
-364.0
+195.8085560697229
  20
-116.30855600000002
+188.63862199918535
  30
 0.0
  11
-344.00000000000006
+195.8085560697229
  21
-116.30855600000002
+178.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-364.0
+195.8085560697229
  20
-150.30855600000004
+178.63862199918535
  30
 0.0
  11
-364.0
+201.80855606972293
  21
-116.30855600000002
+178.63862199918535
  31
 0.0
   0
@@ -3175,15 +3505,15 @@ LINE
   8
 cut
  10
-364.0
+201.80855606972293
  20
-150.30855600000004
+178.63862199918535
  30
 0.0
  11
-388.00000000000006
+201.80855606972293
  21
-150.30855600000004
+188.63862199918535
  31
 0.0
   0
@@ -3193,35 +3523,33 @@ LINE
   8
 cut
  10
-388.00000000000006
+201.399465160632
  20
-116.30855600000002
+239.27724399837064
  30
 0.0
  11
-364.0
+201.399465160632
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-388.00000000000006
+201.399465160632
  20
-150.30855600000004
+234.27724399837064
  30
 0.0
  11
-388.00000000000006
+212.4903742515411
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
@@ -3231,15 +3559,15 @@ LINE
   8
 cut
  10
-388.00000000000006
+212.4903742515411
  20
-150.30855600000004
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+212.4903742515411
  21
-150.30855600000004
+239.27724399837064
  31
 0.0
   0
@@ -3249,35 +3577,33 @@ LINE
   8
 cut
  10
-408.00000000000006
+229.12673788790474
  20
-116.30855600000002
+239.27724399837064
  30
 0.0
  11
-388.00000000000006
+229.12673788790474
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-408.00000000000006
+229.12673788790474
  20
-116.30855600000002
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+240.21764697881383
  21
-150.30855600000004
+234.27724399837064
  31
 0.0
   0
@@ -3287,15 +3613,15 @@ LINE
   8
 cut
  10
-418.00000000000006
+240.21764697881383
  20
-116.30855600000002
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+240.21764697881383
  21
-116.30855600000002
+239.27724399837064
  31
 0.0
   0
@@ -3305,15 +3631,15 @@ LINE
   8
 cut
  10
-418.00000000000006
+182.80855606972293
  20
-150.30855600000004
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+187.80855606972293
  21
-116.30855600000002
+179.63862199918535
  31
 0.0
   0
@@ -3323,15 +3649,15 @@ LINE
   8
 cut
  10
-408.00000000000006
+187.80855606972293
  20
-150.30855600000004
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+187.80855606972293
  21
-150.30855600000004
+187.63862199918535
  31
 0.0
   0
@@ -3341,15 +3667,15 @@ LINE
   8
 cut
  10
-478.00000000000006
+187.80855606972293
  20
-150.30855600000004
+187.63862199918535
  30
 0.0
  11
-478.00000000000006
+182.80855606972293
  21
-88.65427796513858
+187.63862199918535
  31
 0.0
   0
@@ -3359,35 +3685,33 @@ LINE
   8
 cut
  10
-418.00000000000006
+258.80855606972295
  20
-88.65427796513858
+187.63862199918535
  30
 0.0
  11
-418.00000000000006
+253.80855606972293
  21
-150.30855600000004
+187.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--45
+cut
  10
-418.00000000000006
+253.80855606972293
  20
-88.65427796513858
+187.63862199918535
  30
 0.0
  11
-478.00000000000006
+253.80855606972293
  21
-88.65427796513858
+179.63862199918535
  31
 0.0
   0
@@ -3397,55 +3721,51 @@ LINE
   8
 cut
  10
-418.00000000000006
+253.80855606972293
  20
-61.65427796513857
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+258.80855606972295
  21
-88.65427796513858
+179.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--45
+cut
  10
-478.00000000000006
+477.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+369.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-478.00000000000006
+538.3085560697231
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+477.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3455,15 +3775,15 @@ LINE
   8
 cut
  10
-418.00000000000006
+538.3085560697231
  20
--6.972288701945219e-08
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+538.3085560697231
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3473,15 +3793,15 @@ LINE
   8
 cut
  10
-478.00000000000006
+369.30855606972295
  20
--6.972288701945219e-08
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+369.30855606972295
  21
--6.972288701945219e-08
+135.50000000000003
  31
 0.0
   0
@@ -3491,15 +3811,15 @@ LINE
   8
 cut
  10
-478.00000000000006
+477.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+538.3085560697231
  21
--6.972288701945219e-08
+135.50000000000003
  31
 0.0
   0
@@ -3509,15 +3829,15 @@ LINE
   8
 cut
  10
-478.00000000000006
+467.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-495.00000000000006
+477.30855606972295
  21
-88.65427796513858
+135.50000000000003
  31
 0.0
   0
@@ -3527,35 +3847,33 @@ LINE
   8
 cut
  10
-495.00000000000006
+369.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+443.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-495.00000000000006
+369.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-495.00000000000006
+369.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3565,15 +3883,15 @@ LINE
   8
 cut
  10
-495.00000000000006
+538.3085560697231
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-555.0
+538.3085560697231
  21
-88.65427796513858
+135.50000000000003
  31
 0.0
   0
@@ -3583,15 +3901,15 @@ LINE
   8
 cut
  10
-555.0
+467.30855606972295
  20
-61.65427796513857
+169.50000000000003
  30
 0.0
  11
-495.00000000000006
+467.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3603,15 +3921,53 @@ DOTTED
   8
 90
  10
-555.0
+443.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+443.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+467.30855606972295
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+467.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+467.30855606972295
  20
-88.65427796513858
+205.50000000000003
  30
 0.0
  11
-555.0
+443.30855606972295
  21
-61.65427796513857
+205.50000000000003
  31
 0.0
   0
@@ -3621,15 +3977,15 @@ LINE
   8
 cut
  10
-555.0
+443.30855606972295
  20
-88.65427796513858
+169.50000000000003
  30
 0.0
  11
-572.0
+443.30855606972295
  21
-88.65427796513858
+205.50000000000003
  31
 0.0
   0
@@ -3639,35 +3995,33 @@ LINE
   8
 cut
  10
-572.0
+443.30855606972295
  20
-61.65427796513857
+205.50000000000003
  30
 0.0
  11
-555.0
+443.30855606972295
  21
-61.65427796513857
+250.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-572.0
+467.30855606972295
  20
-61.65427796513857
+250.50000000000003
  30
 0.0
  11
-572.0
+467.30855606972295
  21
-88.65427796513858
+205.50000000000003
  31
 0.0
   0
@@ -3677,15 +4031,15 @@ LINE
   8
 cut
  10
-582.0
+443.30855606972295
  20
-61.65427796513857
+250.50000000000003
  30
 0.0
  11
-572.0
+467.30855606972295
  21
-61.65427796513857
+250.50000000000003
  31
 0.0
   0
@@ -3695,15 +4049,15 @@ LINE
   8
 cut
  10
-582.0
+443.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-582.0
+423.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3713,15 +4067,35 @@ LINE
   8
 cut
  10
-572.0
+423.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+443.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+423.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-582.0
+423.30855606972295
  21
-88.65427796513858
+169.50000000000003
  31
 0.0
   0
@@ -3731,15 +4105,15 @@ LINE
   8
 cut
  10
-271.4318181818182
+423.30855606972295
  20
-158.058556
+135.50000000000003
  30
 0.0
  11
-259.8409090909092
+399.30855606972295
  21
-158.058556
+135.50000000000003
  31
 0.0
   0
@@ -3749,15 +4123,35 @@ LINE
   8
 cut
  10
-259.8409090909092
+399.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+423.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+399.30855606972295
  20
-158.058556
+135.50000000000003
  30
 0.0
  11
-259.8409090909092
+399.30855606972295
  21
-157.55855600000004
+169.50000000000003
  31
 0.0
   0
@@ -3767,15 +4161,15 @@ LINE
   8
 cut
  10
-259.8409090909092
+399.30855606972295
  20
-157.55855600000004
+135.50000000000003
  30
 0.0
  11
-271.4318181818182
+379.30855606972295
  21
-157.55855600000004
+135.50000000000003
  31
 0.0
   0
@@ -3785,15 +4179,35 @@ LINE
   8
 cut
  10
-271.4318181818182
+379.30855606972295
  20
-157.55855600000004
+169.50000000000003
  30
 0.0
  11
-271.4318181818182
+399.30855606972295
  21
-158.058556
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+379.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+379.30855606972295
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -3803,15 +4217,15 @@ LINE
   8
 cut
  10
-299.159090909091
+369.30855606972295
  20
-158.058556
+169.50000000000003
  30
 0.0
  11
-287.56818181818187
+379.30855606972295
  21
-158.058556
+169.50000000000003
  31
 0.0
   0
@@ -3821,15 +4235,15 @@ LINE
   8
 cut
  10
-287.56818181818187
+369.30855606972295
  20
-158.058556
+135.50000000000003
  30
 0.0
  11
-287.56818181818187
+369.30855606972295
  21
-157.55855600000004
+169.50000000000003
  31
 0.0
   0
@@ -3839,15 +4253,15 @@ LINE
   8
 cut
  10
-287.56818181818187
+379.30855606972295
  20
-157.55855600000004
+135.50000000000003
  30
 0.0
  11
-299.159090909091
+369.30855606972295
  21
-157.55855600000004
+135.50000000000003
  31
 0.0
   0
@@ -3857,15 +4271,15 @@ LINE
   8
 cut
  10
-299.159090909091
+499.74037425154114
  20
-157.55855600000004
+143.25
  30
 0.0
  11
-299.159090909091
+488.1494651606321
  21
-158.058556
+143.25
  31
 0.0
   0
@@ -3875,15 +4289,15 @@ LINE
   8
 cut
  10
-327.75
+488.1494651606321
  20
-127.39188933333335
+143.25
  30
 0.0
  11
-327.75
+488.1494651606321
  21
-139.2252226666667
+142.75000000000003
  31
 0.0
   0
@@ -3893,15 +4307,15 @@ LINE
   8
 cut
  10
-327.75
+488.1494651606321
  20
-139.2252226666667
+142.75000000000003
  30
 0.0
  11
-327.25
+499.74037425154114
  21
-139.2252226666667
+142.75000000000003
  31
 0.0
   0
@@ -3911,15 +4325,15 @@ LINE
   8
 cut
  10
-327.25
+499.74037425154114
  20
-139.2252226666667
+142.75000000000003
  30
 0.0
  11
-327.25
+499.74037425154114
  21
-127.39188933333335
+143.25
  31
 0.0
   0
@@ -3929,15 +4343,15 @@ LINE
   8
 cut
  10
-327.25
+527.4676469788138
  20
-127.39188933333335
+143.25
  30
 0.0
  11
-327.75
+515.8767378879047
  21
-127.39188933333335
+143.25
  31
 0.0
   0
@@ -3947,15 +4361,15 @@ LINE
   8
 cut
  10
-336.25
+515.8767378879047
  20
-39.30855600000002
+143.25
  30
 0.0
  11
-327.75
+515.8767378879047
  21
-39.30855600000002
+142.75000000000003
  31
 0.0
   0
@@ -3965,15 +4379,15 @@ LINE
   8
 cut
  10
-327.75
+515.8767378879047
  20
-39.30855600000002
+142.75000000000003
  30
 0.0
  11
-327.75
+527.4676469788138
  21
-38.80855600000002
+142.75000000000003
  31
 0.0
   0
@@ -3983,15 +4397,15 @@ LINE
   8
 cut
  10
-327.75
+527.4676469788138
  20
-38.80855600000002
+142.75000000000003
  30
 0.0
  11
-336.25
+527.4676469788138
  21
-38.80855600000002
+143.25
  31
 0.0
   0
@@ -4001,15 +4415,15 @@ LINE
   8
 cut
  10
-336.25
+515.8767378879047
  20
-38.80855600000002
+127.75000000000001
  30
 0.0
  11
-336.25
+527.4676469788138
  21
-39.30855600000002
+127.75000000000001
  31
 0.0
   0
@@ -4019,15 +4433,15 @@ LINE
   8
 cut
  10
-363.00000000000006
+527.4676469788138
  20
-139.30855600000004
+127.75000000000001
  30
 0.0
  11
-359.0
+527.4676469788138
  21
-139.30855600000004
+128.25000000000003
  31
 0.0
   0
@@ -4037,15 +4451,15 @@ LINE
   8
 cut
  10
-359.0
+527.4676469788138
  20
-139.30855600000004
+128.25000000000003
  30
 0.0
  11
-359.0
+515.8767378879047
  21
-127.30855600000004
+128.25000000000003
  31
 0.0
   0
@@ -4055,15 +4469,15 @@ LINE
   8
 cut
  10
-359.0
+515.8767378879047
  20
-127.30855600000004
+128.25000000000003
  30
 0.0
  11
-363.00000000000006
+515.8767378879047
  21
-127.30855600000004
+127.75000000000001
  31
 0.0
   0
@@ -4073,15 +4487,15 @@ LINE
   8
 cut
  10
-363.00000000000006
+488.1494651606321
  20
-127.30855600000004
+127.75000000000001
  30
 0.0
  11
-363.00000000000006
+499.74037425154114
  21
-139.30855600000004
+127.75000000000001
  31
 0.0
   0
@@ -4091,15 +4505,15 @@ LINE
   8
 cut
  10
-351.0
+499.74037425154114
  20
-137.808556
+127.75000000000001
  30
 0.0
  11
-347.00000000000006
+499.74037425154114
  21
-137.808556
+128.25000000000003
  31
 0.0
   0
@@ -4109,15 +4523,15 @@ LINE
   8
 cut
  10
-347.00000000000006
+499.74037425154114
  20
-137.808556
+128.25000000000003
  30
 0.0
  11
-347.00000000000006
+488.1494651606321
  21
-128.808556
+128.25000000000003
  31
 0.0
   0
@@ -4127,15 +4541,15 @@ LINE
   8
 cut
  10
-347.00000000000006
+488.1494651606321
  20
-128.808556
+128.25000000000003
  30
 0.0
  11
-351.0
+488.1494651606321
  21
-128.808556
+127.75000000000001
  31
 0.0
   0
@@ -4145,15 +4559,15 @@ LINE
   8
 cut
  10
-351.0
+459.55855606972295
  20
-128.808556
+158.41666666666669
  30
 0.0
  11
-351.0
+459.55855606972295
  21
-137.808556
+146.58333333333337
  31
 0.0
   0
@@ -4163,15 +4577,15 @@ LINE
   8
 cut
  10
-387.50000000000006
+459.55855606972295
  20
-139.30855600000004
+146.58333333333337
  30
 0.0
  11
-364.5
+460.05855606972295
  21
-139.30855600000004
+146.58333333333337
  31
 0.0
   0
@@ -4181,15 +4595,15 @@ LINE
   8
 cut
  10
-364.5
+460.05855606972295
  20
-139.30855600000004
+146.58333333333337
  30
 0.0
  11
-364.5
+460.05855606972295
  21
-127.30855600000004
+158.41666666666669
  31
 0.0
   0
@@ -4199,15 +4613,15 @@ LINE
   8
 cut
  10
-364.5
+460.05855606972295
  20
-127.30855600000004
+158.41666666666669
  30
 0.0
  11
-387.50000000000006
+459.55855606972295
  21
-127.30855600000004
+158.41666666666669
  31
 0.0
   0
@@ -4217,15 +4631,15 @@ LINE
   8
 cut
  10
-387.50000000000006
+451.05855606972295
  20
-127.30855600000004
+246.50000000000003
  30
 0.0
  11
-387.50000000000006
+459.55855606972295
  21
-139.30855600000004
+246.50000000000003
  31
 0.0
   0
@@ -4235,15 +4649,15 @@ LINE
   8
 cut
  10
-393.00000000000006
+459.55855606972295
  20
-139.30855600000004
+246.50000000000003
  30
 0.0
  11
-389.00000000000006
+459.55855606972295
  21
-139.30855600000004
+247.00000000000003
  31
 0.0
   0
@@ -4253,15 +4667,15 @@ LINE
   8
 cut
  10
-389.00000000000006
+459.55855606972295
  20
-139.30855600000004
+247.00000000000003
  30
 0.0
  11
-389.00000000000006
+451.05855606972295
  21
-127.30855600000004
+247.00000000000003
  31
 0.0
   0
@@ -4271,15 +4685,15 @@ LINE
   8
 cut
  10
-389.00000000000006
+451.05855606972295
  20
-127.30855600000004
+247.00000000000003
  30
 0.0
  11
-393.00000000000006
+451.05855606972295
  21
-127.30855600000004
+246.50000000000003
  31
 0.0
   0
@@ -4289,15 +4703,15 @@ LINE
   8
 cut
  10
-393.00000000000006
+424.30855606972295
  20
-127.30855600000004
+146.50000000000003
  30
 0.0
  11
-393.00000000000006
+428.30855606972295
  21
-139.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -4307,15 +4721,15 @@ LINE
   8
 cut
  10
-415.50000000000006
+428.30855606972295
  20
-138.9752226666667
+146.50000000000003
  30
 0.0
  11
-410.50000000000006
+428.30855606972295
  21
-138.9752226666667
+158.50000000000003
  31
 0.0
   0
@@ -4325,15 +4739,15 @@ LINE
   8
 cut
  10
-410.50000000000006
+428.30855606972295
  20
-138.9752226666667
+158.50000000000003
  30
 0.0
  11
-410.50000000000006
+424.30855606972295
  21
-127.64188933333335
+158.50000000000003
  31
 0.0
   0
@@ -4343,15 +4757,15 @@ LINE
   8
 cut
  10
-410.50000000000006
+424.30855606972295
  20
-127.64188933333335
+158.50000000000003
  30
 0.0
  11
-415.50000000000006
+424.30855606972295
  21
-127.64188933333335
+146.50000000000003
  31
 0.0
   0
@@ -4361,15 +4775,15 @@ LINE
   8
 cut
  10
-481.00000000000006
+436.30855606972295
  20
-84.15427796513858
+148.0
  30
 0.0
  11
-475.00000000000006
+440.30855606972295
  21
-84.15427796513858
+148.0
  31
 0.0
   0
@@ -4379,15 +4793,15 @@ LINE
   8
 cut
  10
-475.00000000000006
+440.30855606972295
  20
-84.15427796513858
+148.0
  30
 0.0
  11
-475.00000000000006
+440.30855606972295
  21
-66.15427796513858
+157.0
  31
 0.0
   0
@@ -4397,15 +4811,15 @@ LINE
   8
 cut
  10
-475.00000000000006
+440.30855606972295
  20
-66.15427796513858
+157.0
  30
 0.0
  11
-481.00000000000006
+436.30855606972295
  21
-66.15427796513858
+157.0
  31
 0.0
   0
@@ -4415,15 +4829,15 @@ LINE
   8
 cut
  10
-481.00000000000006
+436.30855606972295
  20
-66.15427796513858
+157.0
  30
 0.0
  11
-481.00000000000006
+436.30855606972295
  21
-84.15427796513858
+148.0
  31
 0.0
   0
@@ -4433,15 +4847,15 @@ LINE
   8
 cut
  10
-425.75000000000006
+399.80855606972295
  20
-70.40427796513856
+146.50000000000003
  30
 0.0
  11
-425.75000000000006
+422.80855606972295
  21
-79.90427796513858
+146.50000000000003
  31
 0.0
   0
@@ -4451,15 +4865,15 @@ LINE
   8
 cut
  10
-425.75000000000006
+422.80855606972295
  20
-79.90427796513858
+146.50000000000003
  30
 0.0
  11
-425.25000000000006
+422.80855606972295
  21
-79.90427796513858
+158.50000000000003
  31
 0.0
   0
@@ -4469,15 +4883,15 @@ LINE
   8
 cut
  10
-425.25000000000006
+422.80855606972295
  20
-79.90427796513858
+158.50000000000003
  30
 0.0
  11
-425.25000000000006
+399.80855606972295
  21
-70.40427796513856
+158.50000000000003
  31
 0.0
   0
@@ -4487,15 +4901,15 @@ LINE
   8
 cut
  10
-425.25000000000006
+399.80855606972295
  20
-70.40427796513856
+158.50000000000003
  30
 0.0
  11
-425.75000000000006
+399.80855606972295
  21
-70.40427796513856
+146.50000000000003
  31
 0.0
   0
@@ -4505,15 +4919,15 @@ LINE
   8
 cut
  10
-458.25000000000006
+394.3085560697229
  20
-7.749999930277114
+146.50000000000003
  30
 0.0
  11
-437.75000000000006
+398.3085560697229
  21
-7.749999930277114
+146.50000000000003
  31
 0.0
   0
@@ -4523,15 +4937,15 @@ LINE
   8
 cut
  10
-437.75000000000006
+398.3085560697229
  20
-7.749999930277114
+146.50000000000003
  30
 0.0
  11
-437.75000000000006
+398.3085560697229
  21
-7.249999930277114
+158.50000000000003
  31
 0.0
   0
@@ -4541,15 +4955,15 @@ LINE
   8
 cut
  10
-437.75000000000006
+398.3085560697229
  20
-7.249999930277114
+158.50000000000003
  30
 0.0
  11
-458.25000000000006
+394.3085560697229
  21
-7.249999930277114
+158.50000000000003
  31
 0.0
   0
@@ -4559,15 +4973,15 @@ LINE
   8
 cut
  10
-458.25000000000006
+394.3085560697229
  20
-7.249999930277114
+158.50000000000003
  30
 0.0
  11
-458.25000000000006
+394.3085560697229
  21
-7.749999930277114
+146.50000000000003
  31
 0.0
   0
@@ -4577,15 +4991,15 @@ LINE
   8
 cut
  10
-579.5000000000001
+371.80855606972295
  20
-79.65427796513858
+146.83333333333337
  30
 0.0
  11
-574.5
+376.80855606972295
  21
-79.65427796513858
+146.83333333333337
  31
 0.0
   0
@@ -4595,15 +5009,15 @@ LINE
   8
 cut
  10
-574.5
+376.80855606972295
  20
-79.65427796513858
+146.83333333333337
  30
 0.0
  11
-574.5
+376.80855606972295
  21
-70.65427796513858
+158.16666666666669
  31
 0.0
   0
@@ -4613,15 +5027,15 @@ LINE
   8
 cut
  10
-574.5
+376.80855606972295
  20
-70.65427796513858
+158.16666666666669
  30
 0.0
  11
-579.5000000000001
+371.80855606972295
  21
-70.65427796513858
+158.16666666666669
  31
 0.0
   0
@@ -4633,15 +5047,15 @@ DOTTED
   8
 90
  10
-625.0000000000001
+581.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4653,15 +5067,15 @@ DOTTED
   8
 90
  10
-686.0000000000001
+642.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4673,15 +5087,15 @@ DOTTED
   8
 90
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4693,15 +5107,15 @@ DOTTED
   8
 90
  10
-625.0000000000001
+581.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4711,15 +5125,15 @@ LINE
   8
 cut
  10
-625.0000000000001
+581.3085560697231
  20
-131.30855600000004
+116.50000000000001
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4729,15 +5143,15 @@ LINE
   8
 cut
  10
-685.0000000000001
+641.3085560697231
  20
-131.30855600000004
+116.50000000000001
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-131.30855600000004
+116.50000000000001
  31
 0.0
   0
@@ -4747,15 +5161,15 @@ LINE
   8
 cut
  10
-685.0000000000001
+641.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-685.0000000000001
+641.3085560697231
  21
-131.30855600000004
+116.50000000000001
  31
 0.0
   0
@@ -4765,15 +5179,15 @@ LINE
   8
 cut
  10
-693.0000000000001
+649.308556069723
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4783,15 +5197,15 @@ LINE
   8
 cut
  10
-693.0000000000001
+649.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-693.0000000000001
+649.308556069723
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4801,15 +5215,15 @@ LINE
   8
 cut
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-693.0000000000001
+649.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4821,15 +5235,15 @@ DOTTED
   8
 90
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4839,15 +5253,15 @@ LINE
   8
 cut
  10
-626.0000000000001
+582.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4859,15 +5273,15 @@ DOTTED
   8
 90
  10
-626.0000000000001
+582.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-626.0000000000001
+582.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4877,15 +5291,15 @@ LINE
   8
 cut
  10
-710.0
+666.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4897,15 +5311,15 @@ DOTTED
   8
 90
  10
-710.0
+666.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-710.0
+666.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4915,15 +5329,15 @@ LINE
   8
 cut
  10
-686.0000000000001
+642.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-710.0
+666.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4933,15 +5347,15 @@ LINE
   8
 cut
  10
-770.0000000000001
+726.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-710.0
+666.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4951,15 +5365,15 @@ LINE
   8
 cut
  10
-770.0000000000001
+726.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-770.0000000000001
+726.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4969,15 +5383,15 @@ LINE
   8
 cut
  10
-710.0
+666.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-770.0000000000001
+726.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4987,15 +5401,15 @@ LINE
   8
 cut
  10
-626.0000000000001
+582.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-602.0
+558.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5005,15 +5419,15 @@ LINE
   8
 cut
  10
-602.0
+558.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-626.0000000000001
+582.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5025,15 +5439,15 @@ DOTTED
   8
 90
  10
-602.0
+558.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-602.0
+558.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5043,15 +5457,15 @@ LINE
   8
 cut
  10
-592.0
+548.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-602.0
+558.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5061,15 +5475,15 @@ LINE
   8
 cut
  10
-592.0
+548.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-592.0
+548.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5079,15 +5493,15 @@ LINE
   8
 cut
  10
-602.0
+558.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-592.0
+548.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5097,15 +5511,15 @@ LINE
   8
 cut
  10
-618.0
+574.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5115,15 +5529,15 @@ LINE
   8
 cut
  10
-618.0
+574.308556069723
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-618.0
+574.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5133,15 +5547,15 @@ LINE
   8
 cut
  10
-625.0000000000001
+581.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-618.0
+574.308556069723
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -5151,15 +5565,15 @@ LINE
   8
 cut
  10
-674.0909090909092
+630.3994651606322
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-677.5909090909091
+633.8994651606321
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5169,15 +5583,15 @@ LINE
   8
 cut
  10
-677.5909090909091
+633.8994651606321
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-674.0909090909092
+630.3994651606322
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5187,15 +5601,15 @@ LINE
   8
 cut
  10
-674.0909090909092
+630.3994651606322
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-663.1818181818181
+619.4903742515411
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5205,15 +5619,15 @@ LINE
   8
 cut
  10
-663.1818181818181
+619.4903742515411
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-659.6818181818184
+615.9903742515413
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5223,15 +5637,15 @@ LINE
   8
 cut
  10
-659.6818181818184
+615.9903742515413
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-663.1818181818181
+619.4903742515411
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5241,15 +5655,15 @@ LINE
   8
 cut
  10
-646.818181818182
+603.1267378879049
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-650.318181818182
+606.6267378879048
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5259,15 +5673,15 @@ LINE
   8
 cut
  10
-650.318181818182
+606.6267378879048
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-646.818181818182
+603.1267378879049
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5277,15 +5691,15 @@ LINE
   8
 cut
  10
-646.818181818182
+603.1267378879049
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-635.909090909091
+592.2176469788138
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5295,15 +5709,15 @@ LINE
   8
 cut
  10
-635.909090909091
+592.2176469788138
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-632.4090909090909
+588.717646978814
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5313,15 +5727,15 @@ LINE
   8
 cut
  10
-632.4090909090909
+588.717646978814
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-635.909090909091
+592.2176469788138
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5331,15 +5745,15 @@ LINE
   8
 cut
  10
-691.2500000000001
+647.5585560697231
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-687.75
+644.058556069723
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
@@ -5349,15 +5763,15 @@ LINE
   8
 cut
  10
-687.75
+644.058556069723
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-687.75
+644.058556069723
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -5367,15 +5781,15 @@ LINE
   8
 cut
  10
-687.75
+644.058556069723
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-691.2500000000001
+647.5585560697231
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -5385,15 +5799,15 @@ LINE
   8
 cut
  10
-633.5000000000001
+589.8085560697231
  20
-213.80855600000004
+199.00000000000003
  30
 0.0
  11
-633.5000000000001
+589.8085560697231
  21
-195.80855600000004
+181.00000000000003
  31
 0.0
   0
@@ -5403,15 +5817,15 @@ LINE
   8
 cut
  10
-633.5000000000001
+589.8085560697231
  20
-195.80855600000004
+181.00000000000003
  30
 0.0
  11
-668.5000000000001
+624.8085560697231
  21
-195.80855600000004
+181.00000000000003
  31
 0.0
   0
@@ -5421,15 +5835,15 @@ LINE
   8
 cut
  10
-668.5000000000001
+624.8085560697231
  20
-195.80855600000004
+181.00000000000003
  30
 0.0
  11
-668.5000000000001
+624.8085560697231
  21
-213.80855600000004
+199.00000000000003
  31
 0.0
   0
@@ -5439,15 +5853,15 @@ LINE
   8
 cut
  10
-668.5000000000001
+624.8085560697231
  20
-213.80855600000004
+199.00000000000003
  30
 0.0
  11
-633.5000000000001
+589.8085560697231
  21
-213.80855600000004
+199.00000000000003
  31
 0.0
   0
@@ -5457,15 +5871,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+642.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-686.5000000000001
+642.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -5475,15 +5889,15 @@ LINE
   8
 cut
  10
-686.5000000000001
+642.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-689.5000000000001
+645.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -5493,15 +5907,15 @@ LINE
   8
 cut
  10
-689.5000000000001
+645.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-689.5000000000001
+645.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -5511,15 +5925,15 @@ LINE
   8
 cut
  10
-689.5000000000001
+645.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-686.5000000000001
+642.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -5529,15 +5943,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -5547,15 +5961,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -5565,15 +5979,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -5583,15 +5997,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -5601,15 +6015,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5619,15 +6033,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5637,15 +6051,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5655,15 +6069,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5673,15 +6087,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5691,15 +6105,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5709,15 +6123,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5727,15 +6141,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5745,15 +6159,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5763,15 +6177,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5781,15 +6195,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5799,15 +6213,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5817,15 +6231,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5835,15 +6249,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5853,15 +6267,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5871,15 +6285,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5889,15 +6303,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5907,15 +6321,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5925,15 +6339,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5943,15 +6357,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5961,15 +6375,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5979,15 +6393,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5997,15 +6411,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -6015,15 +6429,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -6033,15 +6447,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6051,15 +6465,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6069,15 +6483,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6087,15 +6501,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6105,15 +6519,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6123,15 +6537,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6141,15 +6555,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6159,15 +6573,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6177,15 +6591,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6195,15 +6609,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6213,15 +6627,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6231,15 +6645,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6249,15 +6663,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6267,15 +6681,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6285,15 +6699,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6303,15 +6717,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6321,15 +6735,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6339,15 +6753,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6357,15 +6771,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6375,15 +6789,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6393,15 +6807,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6411,15 +6825,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6429,15 +6843,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6447,15 +6861,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6465,15 +6879,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6483,15 +6897,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6501,15 +6915,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6519,15 +6933,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6537,15 +6951,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6555,15 +6969,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6573,15 +6987,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6591,15 +7005,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6609,15 +7023,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6627,15 +7041,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6645,15 +7059,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6663,15 +7077,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6681,15 +7095,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6699,15 +7113,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6717,15 +7131,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6735,15 +7149,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6753,15 +7167,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6771,15 +7185,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6789,15 +7203,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6807,15 +7221,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6825,15 +7239,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6843,15 +7257,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6861,15 +7275,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6879,15 +7293,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6897,15 +7311,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6915,15 +7329,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6933,15 +7347,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6951,15 +7365,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6969,15 +7383,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6987,15 +7401,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -7005,15 +7419,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -7023,15 +7437,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -7041,15 +7455,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7059,15 +7473,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7077,15 +7491,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7095,15 +7509,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7113,15 +7527,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7131,15 +7545,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7149,15 +7563,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7167,15 +7581,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7185,15 +7599,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7203,15 +7617,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7221,15 +7635,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7239,15 +7653,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7257,15 +7671,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7275,15 +7689,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7293,15 +7707,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7311,15 +7725,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7329,15 +7743,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7347,15 +7761,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7365,15 +7779,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7383,15 +7797,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7401,15 +7815,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7419,15 +7833,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7437,15 +7851,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7455,15 +7869,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7473,15 +7887,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7491,15 +7905,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7509,15 +7923,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7527,15 +7941,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7545,15 +7959,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7563,15 +7977,15 @@ LINE
   8
 cut
  10
-707.5000000000001
+663.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7581,15 +7995,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7599,15 +8013,15 @@ LINE
   8
 cut
  10
-708.5000000000001
+664.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7617,15 +8031,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -7635,15 +8049,15 @@ LINE
   8
 cut
  10
-687.5000000000001
+643.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -7653,15 +8067,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -7671,15 +8085,15 @@ LINE
   8
 cut
  10
-688.5000000000001
+644.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -7689,15 +8103,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+662.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-706.5000000000001
+662.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -7707,15 +8121,15 @@ LINE
   8
 cut
  10
-706.5000000000001
+662.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-709.5
+665.808556069723
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -7725,15 +8139,15 @@ LINE
   8
 cut
  10
-709.5
+665.808556069723
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-709.5
+665.808556069723
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -7743,15 +8157,15 @@ LINE
   8
 cut
  10
-709.5
+665.808556069723
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-706.5000000000001
+662.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -7761,15 +8175,15 @@ LINE
   8
 cut
  10
-702.2500000000001
+658.5585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -7779,15 +8193,15 @@ LINE
   8
 cut
  10
-693.7500000000001
+650.0585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -7797,15 +8211,15 @@ LINE
   8
 cut
  10
-693.7500000000001
+650.0585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -7815,15 +8229,15 @@ LINE
   8
 cut
  10
-702.2500000000001
+658.5585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -7833,15 +8247,15 @@ LINE
   8
 cut
  10
-693.7500000000001
+650.0585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -7851,15 +8265,15 @@ LINE
   8
 cut
  10
-702.2500000000001
+658.5585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -7869,15 +8283,15 @@ LINE
   8
 cut
  10
-702.2500000000001
+658.5585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -7887,15 +8301,15 @@ LINE
   8
 cut
  10
-693.7500000000001
+650.0585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -7905,15 +8319,15 @@ LINE
   8
 cut
  10
-725.0000000000001
+681.3085560697231
  20
-213.30855600000004
+198.50000000000003
  30
 0.0
  11
-725.0000000000001
+681.3085560697231
  21
-200.30855600000004
+185.50000000000003
  31
 0.0
   0
@@ -7923,15 +8337,15 @@ LINE
   8
 cut
  10
-725.0000000000001
+681.3085560697231
  20
-200.30855600000004
+185.50000000000003
  30
 0.0
  11
-755.0
+711.308556069723
  21
-200.30855600000004
+185.50000000000003
  31
 0.0
   0
@@ -7941,15 +8355,15 @@ LINE
   8
 cut
  10
-755.0
+711.308556069723
  20
-200.30855600000004
+185.50000000000003
  30
 0.0
  11
-755.0
+711.308556069723
  21
-213.30855600000004
+198.50000000000003
  31
 0.0
   0
@@ -7959,15 +8373,15 @@ LINE
   8
 cut
  10
-755.0
+711.308556069723
  20
-213.30855600000004
+198.50000000000003
  30
 0.0
  11
-725.0000000000001
+681.3085560697231
  21
-213.30855600000004
+198.50000000000003
  31
 0.0
   0
@@ -7977,15 +8391,15 @@ LINE
   8
 cut
  10
-732.0681818181819
+688.3767378879048
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-720.6590909090909
+676.9676469788138
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -7995,15 +8409,15 @@ LINE
   8
 cut
  10
-720.6590909090909
+676.9676469788138
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-720.6590909090909
+676.9676469788138
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -8013,15 +8427,15 @@ LINE
   8
 cut
  10
-720.6590909090909
+676.9676469788138
  20
-167.308556
+152.5
  30
 0.0
  11
-732.0681818181819
+688.3767378879048
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -8031,15 +8445,15 @@ LINE
   8
 cut
  10
-732.0681818181819
+688.3767378879048
  20
-167.308556
+152.5
  30
 0.0
  11
-732.0681818181819
+688.3767378879048
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -8049,15 +8463,15 @@ LINE
   8
 cut
  10
-759.3409090909092
+715.6494651606322
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-747.9318181818181
+704.2403742515411
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -8067,15 +8481,15 @@ LINE
   8
 cut
  10
-747.9318181818181
+704.2403742515411
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-747.9318181818181
+704.2403742515411
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -8085,15 +8499,15 @@ LINE
   8
 cut
  10
-747.9318181818181
+704.2403742515411
  20
-167.308556
+152.5
  30
 0.0
  11
-759.3409090909092
+715.6494651606322
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -8103,15 +8517,15 @@ LINE
   8
 cut
  10
-759.3409090909092
+715.6494651606322
  20
-167.308556
+152.5
  30
 0.0
  11
-759.3409090909092
+715.6494651606322
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -8121,15 +8535,15 @@ LINE
   8
 cut
  10
-762.2500000000001
+718.5585560697231
  20
-184.74037418181823
+169.93181818181822
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-173.14946509090913
+158.3409090909091
  31
 0.0
   0
@@ -8139,15 +8553,15 @@ LINE
   8
 cut
  10
-762.2500000000001
+718.5585560697231
  20
-173.14946509090913
+158.3409090909091
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-173.14946509090913
+158.3409090909091
  31
 0.0
   0
@@ -8157,15 +8571,15 @@ LINE
   8
 cut
  10
-762.7500000000001
+719.0585560697231
  20
-173.14946509090913
+158.3409090909091
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-184.74037418181823
+169.93181818181822
  31
 0.0
   0
@@ -8175,15 +8589,15 @@ LINE
   8
 cut
  10
-762.7500000000001
+719.0585560697231
  20
-184.74037418181823
+169.93181818181822
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-184.74037418181823
+169.93181818181822
  31
 0.0
   0
@@ -8193,15 +8607,15 @@ LINE
   8
 cut
  10
-762.2500000000001
+718.5585560697231
  20
-212.46764690909094
+197.65909090909093
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-200.87673781818185
+186.06818181818184
  31
 0.0
   0
@@ -8211,15 +8625,15 @@ LINE
   8
 cut
  10
-762.2500000000001
+718.5585560697231
  20
-200.87673781818185
+186.06818181818184
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-200.87673781818185
+186.06818181818184
  31
 0.0
   0
@@ -8229,15 +8643,15 @@ LINE
   8
 cut
  10
-762.7500000000001
+719.0585560697231
  20
-200.87673781818185
+186.06818181818184
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-212.46764690909094
+197.65909090909093
  31
 0.0
   0
@@ -8247,15 +8661,15 @@ LINE
   8
 cut
  10
-762.7500000000001
+719.0585560697231
  20
-212.46764690909094
+197.65909090909093
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-212.46764690909094
+197.65909090909093
  31
 0.0
   0
@@ -8265,15 +8679,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+558.808556069723
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-602.5000000000001
+558.808556069723
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -8283,15 +8697,15 @@ LINE
   8
 cut
  10
-602.5000000000001
+558.808556069723
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-605.5000000000001
+561.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -8301,15 +8715,15 @@ LINE
   8
 cut
  10
-605.5000000000001
+561.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-605.5000000000001
+561.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -8319,15 +8733,15 @@ LINE
   8
 cut
  10
-605.5000000000001
+561.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-602.5000000000001
+558.808556069723
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -8337,15 +8751,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -8355,15 +8769,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -8373,15 +8787,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -8391,15 +8805,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -8409,15 +8823,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8427,15 +8841,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8445,15 +8859,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8463,15 +8877,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8481,15 +8895,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8499,15 +8913,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8517,15 +8931,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8535,15 +8949,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8553,15 +8967,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8571,15 +8985,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8589,15 +9003,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8607,15 +9021,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8625,15 +9039,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8643,15 +9057,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8661,15 +9075,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8679,15 +9093,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8697,15 +9111,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8715,15 +9129,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8733,15 +9147,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8751,15 +9165,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8769,15 +9183,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8787,15 +9201,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8805,15 +9219,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8823,15 +9237,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8841,15 +9255,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8859,15 +9273,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8877,15 +9291,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8895,15 +9309,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8913,15 +9327,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8931,15 +9345,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8949,15 +9363,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8967,15 +9381,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8985,15 +9399,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -9003,15 +9417,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -9021,15 +9435,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9039,15 +9453,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9057,15 +9471,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -9075,15 +9489,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -9093,15 +9507,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9111,15 +9525,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9129,15 +9543,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9147,15 +9561,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9165,15 +9579,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9183,15 +9597,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9201,15 +9615,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9219,15 +9633,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9237,15 +9651,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9255,15 +9669,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9273,15 +9687,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9291,15 +9705,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9309,15 +9723,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9327,15 +9741,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9345,15 +9759,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9363,15 +9777,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9381,15 +9795,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9399,15 +9813,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9417,15 +9831,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9435,15 +9849,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9453,15 +9867,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9471,15 +9885,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9489,15 +9903,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9507,15 +9921,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9525,15 +9939,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9543,15 +9957,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9561,15 +9975,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9579,15 +9993,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9597,15 +10011,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9615,15 +10029,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9633,15 +10047,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9651,15 +10065,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9669,15 +10083,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9687,15 +10101,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9705,15 +10119,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9723,15 +10137,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9741,15 +10155,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9759,15 +10173,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9777,15 +10191,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9795,15 +10209,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9813,15 +10227,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9831,15 +10245,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9849,15 +10263,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9867,15 +10281,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9885,15 +10299,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9903,15 +10317,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9921,15 +10335,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9939,15 +10353,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9957,15 +10371,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9975,15 +10389,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9993,15 +10407,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -10011,15 +10425,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -10029,15 +10443,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10047,15 +10461,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10065,15 +10479,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -10083,15 +10497,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -10101,15 +10515,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10119,15 +10533,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10137,15 +10551,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10155,15 +10569,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10173,15 +10587,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10191,15 +10605,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10209,15 +10623,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10227,15 +10641,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10245,15 +10659,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10263,15 +10677,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10281,15 +10695,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10299,15 +10713,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10317,15 +10731,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10335,15 +10749,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10353,15 +10767,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10371,15 +10785,15 @@ LINE
   8
 cut
  10
-623.5000000000001
+579.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10389,15 +10803,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10407,15 +10821,15 @@ LINE
   8
 cut
  10
-624.5000000000001
+580.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10425,15 +10839,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -10443,15 +10857,15 @@ LINE
   8
 cut
  10
-603.5000000000001
+559.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -10461,15 +10875,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -10479,15 +10893,15 @@ LINE
   8
 cut
  10
-604.5000000000001
+560.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -10497,15 +10911,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+578.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-622.5000000000001
+578.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -10515,15 +10929,15 @@ LINE
   8
 cut
  10
-622.5000000000001
+578.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-625.5000000000001
+581.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -10533,15 +10947,15 @@ LINE
   8
 cut
  10
-625.5000000000001
+581.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-625.5000000000001
+581.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -10551,15 +10965,15 @@ LINE
   8
 cut
  10
-625.5000000000001
+581.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-622.5000000000001
+578.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -10569,15 +10983,15 @@ LINE
   8
 cut
  10
-618.2500000000001
+574.5585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -10587,15 +11001,15 @@ LINE
   8
 cut
  10
-609.7500000000001
+566.0585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -10605,15 +11019,15 @@ LINE
   8
 cut
  10
-609.7500000000001
+566.0585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -10623,15 +11037,15 @@ LINE
   8
 cut
  10
-618.2500000000001
+574.5585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -10641,15 +11055,15 @@ LINE
   8
 cut
  10
-609.7500000000001
+566.0585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -10659,15 +11073,15 @@ LINE
   8
 cut
  10
-618.2500000000001
+574.5585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -10677,15 +11091,15 @@ LINE
   8
 cut
  10
-618.2500000000001
+574.5585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -10695,15 +11109,15 @@ LINE
   8
 cut
  10
-609.7500000000001
+566.0585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -10713,15 +11127,15 @@ LINE
   8
 cut
  10
-594.5000000000001
+550.8085560697231
  20
-173.39946509090913
+158.59090909090912
  30
 0.0
  11
-599.5
+555.808556069723
  21
-173.39946509090913
+158.59090909090912
  31
 0.0
   0
@@ -10731,15 +11145,15 @@ LINE
   8
 cut
  10
-599.5
+555.808556069723
  20
-173.39946509090913
+158.59090909090912
  30
 0.0
  11
-599.5
+555.808556069723
  21
-184.49037418181823
+169.68181818181822
  31
 0.0
   0
@@ -10749,15 +11163,15 @@ LINE
   8
 cut
  10
-599.5
+555.808556069723
  20
-184.49037418181823
+169.68181818181822
  30
 0.0
  11
-594.5000000000001
+550.8085560697231
  21
-184.49037418181823
+169.68181818181822
  31
 0.0
   0
@@ -10767,15 +11181,15 @@ LINE
   8
 cut
  10
-594.5000000000001
+550.8085560697231
  20
-201.12673781818185
+186.31818181818184
  30
 0.0
  11
-599.5
+555.808556069723
  21
-201.12673781818185
+186.31818181818184
  31
 0.0
   0
@@ -10785,15 +11199,15 @@ LINE
   8
 cut
  10
-599.5
+555.808556069723
  20
-201.12673781818185
+186.31818181818184
  30
 0.0
  11
-599.5
+555.808556069723
  21
-212.21764690909094
+197.40909090909093
  31
 0.0
   0
@@ -10803,15 +11217,15 @@ LINE
   8
 cut
  10
-599.5
+555.808556069723
  20
-212.21764690909094
+197.40909090909093
  30
 0.0
  11
-594.5000000000001
+550.8085560697231
  21
-212.21764690909094
+197.40909090909093
  31
 0.0
   0
@@ -10821,15 +11235,15 @@ LINE
   8
 cut
  10
-619.7500000000001
+576.0585560697231
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-623.25
+579.558556069723
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -10839,15 +11253,15 @@ LINE
   8
 cut
  10
-623.25
+579.558556069723
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-623.25
+579.558556069723
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
@@ -10857,15 +11271,15 @@ LINE
   8
 cut
  10
-623.25
+579.558556069723
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-619.7500000000001
+576.0585560697231
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
diff --git a/rocolib/output/ServoStackBatteryMount/graph-autofold-graph.dxf b/rocolib/output/ServoStackBatteryMount/graph-autofold-graph.dxf
index 9d01913f329c0fb2a7c481d9776a6fedfa022e60..d1b773e89e5ceceacd101acc81a9aeba3916ec71 100644
--- a/rocolib/output/ServoStackBatteryMount/graph-autofold-graph.dxf
+++ b/rocolib/output/ServoStackBatteryMount/graph-autofold-graph.dxf
@@ -943,15 +943,15 @@ LINE
   8
 0
  10
-229.00000000000003
+160.30855606972293
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-229.00000000000003
+98.65427803486146
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -961,15 +961,35 @@ LINE
   8
 0
  10
+98.65427803486146
+ 20
+166.0
+ 30
 0.0
+ 11
+160.30855606972293
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
  20
-150.30855600000004
+166.0
  30
 0.0
  11
-229.00000000000003
+98.65427803486146
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -979,15 +999,51 @@ LINE
   8
 0
  10
+170.30855606972293
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+160.30855606972293
+ 21
+105.00000000000001
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.30855606972293
  20
-150.30855600000004
+166.0
  30
 0.0
  11
+170.30855606972293
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.30855606972293
+ 20
+166.0
+ 30
 0.0
+ 11
+170.30855606972293
  21
-150.30855600000004
+166.0
  31
 0.0
   0
@@ -997,15 +1053,55 @@ LINE
   8
 0
  10
+71.65427803486145
+ 20
+166.0
+ 30
 0.0
+ 11
+98.65427803486146
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+71.65427803486145
  20
-140.30855600000004
+105.00000000000001
  30
 0.0
  11
+71.65427803486145
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+105.00000000000001
+ 30
 0.0
+ 11
+71.65427803486145
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -1015,15 +1111,33 @@ LINE
   8
 0
  10
-60.00000000000001
+10.000000000000002
  20
-140.30855600000004
+166.0
  30
 0.0
  11
+71.65427803486145
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+105.00000000000001
+ 30
 0.0
+ 11
+10.000000000000002
  21
-140.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -1033,15 +1147,15 @@ LINE
   8
 0
  10
-60.00000000000001
+0.0
  20
-150.30855600000004
+166.0
  30
 0.0
  11
-60.00000000000001
+10.000000000000002
  21
-140.30855600000004
+166.0
  31
 0.0
   0
@@ -1051,15 +1165,15 @@ LINE
   8
 0
  10
-134.00000000000003
+0.0
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-60.00000000000001
+0.0
  21
-150.30855600000004
+166.0
  31
 0.0
   0
@@ -1069,15 +1183,15 @@ LINE
   8
 0
  10
-168.0
+10.000000000000002
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-158.00000000000003
+0.0
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -1087,15 +1201,15 @@ LINE
   8
 0
  10
-229.00000000000003
+98.65427803486146
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-229.00000000000003
+98.65427803486146
  21
-150.30855600000004
+88.00000000000001
  31
 0.0
   0
@@ -1105,15 +1219,35 @@ LINE
   8
 0
  10
-60.00000000000001
+71.65427803486145
  20
-150.30855600000004
+88.00000000000001
  30
 0.0
  11
-60.00000000000001
+71.65427803486145
  21
-150.30855600000004
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+88.00000000000001
  31
 0.0
   0
@@ -1123,15 +1257,33 @@ LINE
   8
 0
  10
-158.00000000000003
+98.65427803486146
  20
-150.30855600000004
+88.00000000000001
  30
 0.0
  11
-158.00000000000003
+98.65427803486146
  21
-116.30855600000002
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+88.00000000000001
  31
 0.0
   0
@@ -1143,15 +1295,33 @@ DOTTED
   8
 0
  10
-134.00000000000003
+98.65427803486146
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
  20
-116.30855600000002
+27.000000000000004
  30
 0.0
  11
-134.00000000000003
+98.65427803486146
  21
-150.30855600000004
+10.000000000000002
  31
 0.0
   0
@@ -1161,15 +1331,15 @@ LINE
   8
 0
  10
-134.00000000000003
+71.65427803486145
  20
-80.30855600000002
+10.000000000000002
  30
 0.0
  11
-134.00000000000003
+71.65427803486145
  21
-116.30855600000002
+27.000000000000004
  31
 0.0
   0
@@ -1181,15 +1351,15 @@ DOTTED
   8
 0
  10
-134.00000000000003
+71.65427803486145
  20
-80.30855600000002
+10.000000000000002
  30
 0.0
  11
-158.00000000000003
+98.65427803486146
  21
-80.30855600000002
+10.000000000000002
  31
 0.0
   0
@@ -1199,15 +1369,15 @@ LINE
   8
 0
  10
-158.00000000000003
+71.65427803486145
  20
-116.30855600000002
+0.0
  30
 0.0
  11
-158.00000000000003
+71.65427803486145
  21
-80.30855600000002
+10.000000000000002
  31
 0.0
   0
@@ -1217,15 +1387,15 @@ LINE
   8
 0
  10
-158.00000000000003
+98.65427803486146
  20
-80.30855600000002
+0.0
  30
 0.0
  11
-158.00000000000003
+71.65427803486145
  21
-35.30855600000002
+0.0
  31
 0.0
   0
@@ -1235,15 +1405,15 @@ LINE
   8
 0
  10
-134.00000000000003
+98.65427803486146
  20
-35.30855600000002
+10.000000000000002
  30
 0.0
  11
-134.00000000000003
+98.65427803486146
  21
-80.30855600000002
+0.0
  31
 0.0
   0
@@ -1253,15 +1423,15 @@ LINE
   8
 0
  10
-134.00000000000003
+167.80855606972293
  20
-30.308556000000017
+154.90909090909093
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-35.30855600000002
+154.90909090909093
  31
 0.0
   0
@@ -1271,15 +1441,15 @@ LINE
   8
 0
  10
-158.00000000000003
+162.80855606972293
  20
-30.308556000000017
+154.90909090909093
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-30.308556000000017
+143.8181818181818
  31
 0.0
   0
@@ -1289,15 +1459,15 @@ LINE
   8
 0
  10
-158.00000000000003
+162.80855606972293
  20
-35.30855600000002
+143.8181818181818
  30
 0.0
  11
-158.00000000000003
+167.80855606972293
  21
-30.308556000000017
+143.8181818181818
  31
 0.0
   0
@@ -1307,15 +1477,15 @@ LINE
   8
 0
  10
-134.00000000000003
+167.80855606972293
  20
-116.30855600000002
+127.1818181818182
  30
 0.0
  11
-114.00000000000001
+162.80855606972293
  21
-116.30855600000002
+127.1818181818182
  31
 0.0
   0
@@ -1325,35 +1495,33 @@ LINE
   8
 0
  10
-114.00000000000001
+162.80855606972293
  20
-150.30855600000004
+127.1818181818182
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-150.30855600000004
+116.09090909090911
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-114.00000000000001
+162.80855606972293
  20
-116.30855600000002
+116.09090909090911
  30
 0.0
  11
-114.00000000000001
+167.80855606972293
  21
-150.30855600000004
+116.09090909090911
  31
 0.0
   0
@@ -1363,15 +1531,15 @@ LINE
   8
 0
  10
-114.00000000000001
+94.15427803486146
  20
-116.30855600000002
+102.50000000000001
  30
 0.0
  11
-90.0
+94.15427803486146
  21
-116.30855600000002
+108.50000000000001
  31
 0.0
   0
@@ -1381,35 +1549,33 @@ LINE
   8
 0
  10
-90.0
+94.15427803486146
  20
-150.30855600000004
+108.50000000000001
  30
 0.0
  11
-114.00000000000001
+76.15427803486145
  21
-150.30855600000004
+108.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-90.0
+76.15427803486145
  20
-116.30855600000002
+108.50000000000001
  30
 0.0
  11
-90.0
+76.15427803486145
  21
-150.30855600000004
+102.50000000000001
  31
 0.0
   0
@@ -1419,15 +1585,15 @@ LINE
   8
 0
  10
-90.0
+76.15427803486145
  20
-116.30855600000002
+102.50000000000001
  30
 0.0
  11
-70.00000000000001
+94.15427803486146
  21
-116.30855600000002
+102.50000000000001
  31
 0.0
   0
@@ -1437,35 +1603,33 @@ LINE
   8
 0
  10
-70.00000000000001
+80.40427803486146
  20
-150.30855600000004
+158.25000000000003
  30
 0.0
  11
-90.0
+89.90427803486145
  21
-150.30855600000004
+158.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-70.00000000000001
+89.90427803486145
  20
-150.30855600000004
+158.25000000000003
  30
 0.0
  11
-70.00000000000001
+89.90427803486145
  21
-116.30855600000002
+158.75000000000003
  31
 0.0
   0
@@ -1475,15 +1639,15 @@ LINE
   8
 0
  10
-60.00000000000001
+89.90427803486145
  20
-150.30855600000004
+158.75000000000003
  30
 0.0
  11
-70.00000000000001
+80.40427803486146
  21
-150.30855600000004
+158.75000000000003
  31
 0.0
   0
@@ -1493,15 +1657,15 @@ LINE
   8
 0
  10
-60.00000000000001
+80.40427803486146
  20
-116.30855600000002
+158.75000000000003
  30
 0.0
  11
-60.00000000000001
+80.40427803486146
  21
-150.30855600000004
+158.25000000000003
  31
 0.0
   0
@@ -1511,35 +1675,33 @@ LINE
   8
 0
  10
-70.00000000000001
+2.5000000000000004
  20
-116.30855600000002
+116.09090909090911
  30
 0.0
  11
-60.00000000000001
+7.500000000000001
  21
-116.30855600000002
+116.09090909090911
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-168.0
+7.500000000000001
  20
-114.16993400081472
+116.09090909090911
  30
 0.0
  11
-229.00000000000003
+7.500000000000001
  21
-114.16993400081472
+127.18181818181822
  31
 0.0
   0
@@ -1549,15 +1711,15 @@ LINE
   8
 0
  10
-229.00000000000003
+7.500000000000001
  20
-150.30855600000004
+127.18181818181822
  30
 0.0
  11
-229.00000000000003
+2.5000000000000004
  21
-114.16993400081472
+127.18181818181822
  31
 0.0
   0
@@ -1567,55 +1729,51 @@ LINE
   8
 0
  10
-168.0
+2.5000000000000004
  20
-114.16993400081472
+143.81818181818184
  30
 0.0
  11
-168.0
+7.500000000000001
  21
-150.30855600000004
+143.81818181818184
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-229.00000000000003
+7.500000000000001
  20
-90.16993400081472
+143.81818181818184
  30
 0.0
  11
-168.0
+7.500000000000001
  21
-90.16993400081472
+154.90909090909093
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-229.00000000000003
+7.500000000000001
  20
-90.16993400081472
+154.90909090909093
  30
 0.0
  11
-229.00000000000003
+2.5000000000000004
  21
-114.16993400081472
+154.90909090909093
  31
 0.0
   0
@@ -1625,15 +1783,15 @@ LINE
   8
 0
  10
-168.0
+89.65427803486146
  20
-54.03131200162941
+2.5000000000000004
  30
 0.0
  11
-168.0
+89.65427803486146
  21
-90.16993400081473
+7.500000000000001
  31
 0.0
   0
@@ -1643,15 +1801,15 @@ LINE
   8
 0
  10
-229.00000000000003
+89.65427803486146
  20
-90.16993400081473
+7.500000000000001
  30
 0.0
  11
-229.00000000000003
+80.65427803486146
  21
-54.03131200162941
+7.500000000000001
  31
 0.0
   0
@@ -1661,15 +1819,15 @@ LINE
   8
 0
  10
-168.0
+80.65427803486146
  20
-44.03131200162941
+7.500000000000001
  30
 0.0
  11
-168.0
+80.65427803486146
  21
-54.03131200162941
+2.5000000000000004
  31
 0.0
   0
@@ -1679,15 +1837,15 @@ LINE
   8
 0
  10
-229.00000000000003
+251.30855606972293
  20
-44.03131200162941
+135.50000000000003
  30
 0.0
  11
-168.0
+190.30855606972293
  21
-44.03131200162941
+135.50000000000003
  31
 0.0
   0
@@ -1697,15 +1855,15 @@ LINE
   8
 0
  10
-229.00000000000003
+359.30855606972295
  20
-54.03131200162941
+135.50000000000003
  30
 0.0
  11
-229.00000000000003
+251.30855606972293
  21
-44.03131200162941
+135.50000000000003
  31
 0.0
   0
@@ -1715,15 +1873,15 @@ LINE
   8
 0
  10
-239.00000000000003
+359.30855606972295
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-229.00000000000003
+359.30855606972295
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1733,15 +1891,15 @@ LINE
   8
 0
  10
-239.00000000000003
+190.30855606972293
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-239.00000000000003
+190.30855606972293
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1751,15 +1909,15 @@ LINE
   8
 0
  10
-229.00000000000003
+285.3085560697229
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-239.00000000000003
+359.30855606972295
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1769,15 +1927,15 @@ LINE
   8
 0
  10
-158.00000000000003
+251.30855606972293
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-168.0
+261.30855606972295
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1787,15 +1945,15 @@ LINE
   8
 0
  10
-158.00000000000003
+190.30855606972293
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-158.00000000000003
+190.30855606972293
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1805,15 +1963,15 @@ LINE
   8
 0
  10
-168.0
+359.30855606972295
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-158.00000000000003
+359.30855606972295
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1823,15 +1981,35 @@ LINE
   8
 0
  10
-40.00000000000001
+261.30855606972295
  20
-142.80855600000004
+135.50000000000003
  30
 0.0
  11
-45.0
+261.30855606972295
  21
-142.80855600000004
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+285.3085560697229
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+285.3085560697229
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -1841,15 +2019,35 @@ LINE
   8
 0
  10
-45.0
+285.3085560697229
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+285.3085560697229
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+285.3085560697229
  20
-142.80855600000004
+205.50000000000003
  30
 0.0
  11
-40.00000000000001
+261.30855606972295
  21
-147.80855600000004
+205.50000000000003
  31
 0.0
   0
@@ -1859,15 +2057,15 @@ LINE
   8
 0
  10
-40.00000000000001
+261.30855606972295
  20
-147.80855600000004
+169.50000000000003
  30
 0.0
  11
-20.000000000000004
+261.30855606972295
  21
-147.80855600000004
+205.50000000000003
  31
 0.0
   0
@@ -1877,15 +2075,15 @@ LINE
   8
 0
  10
-20.000000000000004
+261.30855606972295
  20
-147.80855600000004
+205.50000000000003
  30
 0.0
  11
-15.000000000000002
+261.30855606972295
  21
-142.80855600000004
+250.50000000000003
  31
 0.0
   0
@@ -1895,15 +2093,15 @@ LINE
   8
 0
  10
-15.000000000000002
+285.3085560697229
  20
-142.80855600000004
+250.50000000000003
  30
 0.0
  11
-20.000000000000004
+285.3085560697229
  21
-142.80855600000004
+205.50000000000003
  31
 0.0
   0
@@ -1913,15 +2111,15 @@ LINE
   8
 0
  10
-150.25
+285.3085560697229
  20
-139.2252226666667
+255.50000000000003
  30
 0.0
  11
-150.25
+285.3085560697229
  21
-127.39188933333337
+250.50000000000003
  31
 0.0
   0
@@ -1931,15 +2129,15 @@ LINE
   8
 0
  10
-150.25
+261.30855606972295
  20
-127.39188933333337
+255.50000000000003
  30
 0.0
  11
-150.75000000000003
+285.3085560697229
  21
-127.39188933333337
+255.50000000000003
  31
 0.0
   0
@@ -1949,15 +2147,15 @@ LINE
   8
 0
  10
-150.75000000000003
+261.30855606972295
  20
-127.39188933333337
+250.50000000000003
  30
 0.0
  11
-150.75000000000003
+261.30855606972295
  21
-139.2252226666667
+255.50000000000003
  31
 0.0
   0
@@ -1967,15 +2165,15 @@ LINE
   8
 0
  10
-150.75000000000003
+285.3085560697229
  20
-139.2252226666667
+169.50000000000003
  30
 0.0
  11
-150.25
+305.30855606972295
  21
-139.2252226666667
+169.50000000000003
  31
 0.0
   0
@@ -1985,15 +2183,35 @@ LINE
   8
 0
  10
-150.0
+305.30855606972295
  20
-31.558556000000014
+135.50000000000003
  30
 0.0
  11
-152.5
+285.3085560697229
  21
-31.558556000000014
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+305.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+305.30855606972295
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -2003,15 +2221,53 @@ LINE
   8
 0
  10
-152.5
+305.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+329.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+305.30855606972295
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+329.30855606972295
  20
-31.558556000000014
+169.50000000000003
  30
 0.0
  11
-150.0
+329.30855606972295
  21
-34.05855600000001
+135.50000000000003
  31
 0.0
   0
@@ -2021,15 +2277,15 @@ LINE
   8
 0
  10
-150.0
+329.30855606972295
  20
-34.05855600000001
+169.50000000000003
  30
 0.0
  11
-142.00000000000003
+349.30855606972295
  21
-34.05855600000001
+169.50000000000003
  31
 0.0
   0
@@ -2039,15 +2295,35 @@ LINE
   8
 0
  10
-142.00000000000003
+349.30855606972295
  20
-34.05855600000001
+135.50000000000003
  30
 0.0
  11
-139.50000000000003
+329.30855606972295
  21
-31.558556000000014
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+349.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+349.30855606972295
+ 21
+169.50000000000003
  31
 0.0
   0
@@ -2057,15 +2333,15 @@ LINE
   8
 0
  10
-139.50000000000003
+359.30855606972295
  20
-31.558556000000014
+135.50000000000003
  30
 0.0
  11
-142.00000000000003
+349.30855606972295
  21
-31.558556000000014
+135.50000000000003
  31
 0.0
   0
@@ -2075,15 +2351,15 @@ LINE
   8
 0
  10
-115.00000000000001
+359.30855606972295
  20
-127.30855600000004
+169.50000000000003
  30
 0.0
  11
-119.00000000000001
+359.30855606972295
  21
-127.30855600000004
+135.50000000000003
  31
 0.0
   0
@@ -2093,15 +2369,35 @@ LINE
   8
 0
  10
-119.00000000000001
+349.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+359.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+251.30855606972293
  20
-127.30855600000004
+171.63862199918535
  30
 0.0
  11
-119.00000000000001
+190.30855606972293
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2111,15 +2407,15 @@ LINE
   8
 0
  10
-119.00000000000001
+190.30855606972293
  20
-139.30855600000004
+135.50000000000003
  30
 0.0
  11
-115.00000000000001
+190.30855606972293
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2129,15 +2425,55 @@ LINE
   8
 0
  10
-115.00000000000001
+251.30855606972293
  20
-139.30855600000004
+171.63862199918535
  30
 0.0
  11
-115.00000000000001
+251.30855606972293
  21
-127.30855600000004
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+190.30855606972293
+ 20
+195.63862199918535
+ 30
+0.0
+ 11
+251.30855606972293
+ 21
+195.63862199918535
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+190.30855606972293
+ 20
+195.63862199918535
+ 30
+0.0
+ 11
+190.30855606972293
+ 21
+171.63862199918535
  31
 0.0
   0
@@ -2147,15 +2483,15 @@ LINE
   8
 0
  10
-127.00000000000001
+251.30855606972293
  20
-128.808556
+231.77724399837064
  30
 0.0
  11
-131.0
+251.30855606972293
  21
-128.808556
+195.63862199918532
  31
 0.0
   0
@@ -2165,15 +2501,15 @@ LINE
   8
 0
  10
-131.0
+190.30855606972293
  20
-128.808556
+195.63862199918532
  30
 0.0
  11
-131.0
+190.30855606972293
  21
-137.808556
+231.77724399837064
  31
 0.0
   0
@@ -2183,15 +2519,15 @@ LINE
   8
 0
  10
-131.0
+251.30855606972293
  20
-137.808556
+241.7772439983706
  30
 0.0
  11
-127.00000000000001
+251.30855606972293
  21
-137.808556
+231.77724399837064
  31
 0.0
   0
@@ -2201,15 +2537,15 @@ LINE
   8
 0
  10
-127.00000000000001
+190.30855606972293
  20
-137.808556
+241.7772439983706
  30
 0.0
  11
-127.00000000000001
+251.30855606972293
  21
-128.808556
+241.7772439983706
  31
 0.0
   0
@@ -2219,15 +2555,15 @@ LINE
   8
 0
  10
-90.50000000000001
+190.30855606972293
  20
-127.30855600000004
+231.77724399837064
  30
 0.0
  11
-113.50000000000001
+190.30855606972293
  21
-127.30855600000004
+241.7772439983706
  31
 0.0
   0
@@ -2237,15 +2573,15 @@ LINE
   8
 0
  10
-113.50000000000001
+180.3085560697229
  20
-127.30855600000004
+195.63862199918535
  30
 0.0
  11
-113.50000000000001
+190.30855606972293
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2255,15 +2591,15 @@ LINE
   8
 0
  10
-113.50000000000001
+180.3085560697229
  20
-139.30855600000004
+171.63862199918535
  30
 0.0
  11
-90.50000000000001
+180.3085560697229
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2273,15 +2609,15 @@ LINE
   8
 0
  10
-90.50000000000001
+190.30855606972293
  20
-139.30855600000004
+171.63862199918535
  30
 0.0
  11
-90.50000000000001
+180.3085560697229
  21
-127.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2291,15 +2627,15 @@ LINE
   8
 0
  10
-85.00000000000001
+261.30855606972295
  20
-127.30855600000004
+171.63862199918535
  30
 0.0
  11
-89.00000000000001
+251.30855606972293
  21
-127.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2309,15 +2645,15 @@ LINE
   8
 0
  10
-89.00000000000001
+261.30855606972295
  20
-127.30855600000004
+195.63862199918535
  30
 0.0
  11
-89.00000000000001
+261.30855606972295
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2327,15 +2663,15 @@ LINE
   8
 0
  10
-89.00000000000001
+251.30855606972293
  20
-139.30855600000004
+195.63862199918535
  30
 0.0
  11
-85.00000000000001
+261.30855606972295
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2345,15 +2681,15 @@ LINE
   8
 0
  10
-85.00000000000001
+212.7403742515411
  20
-139.30855600000004
+143.25
  30
 0.0
  11
-85.00000000000001
+201.14946516063202
  21
-127.30855600000004
+143.25
  31
 0.0
   0
@@ -2363,15 +2699,15 @@ LINE
   8
 0
  10
-62.50000000000001
+201.14946516063202
  20
-127.64188933333337
+143.25
  30
 0.0
  11
-67.50000000000001
+201.14946516063202
  21
-127.64188933333337
+142.75000000000003
  31
 0.0
   0
@@ -2381,15 +2717,15 @@ LINE
   8
 0
  10
-67.50000000000001
+201.14946516063202
  20
-127.64188933333337
+142.75000000000003
  30
 0.0
  11
-67.50000000000001
+212.7403742515411
  21
-138.9752226666667
+142.75000000000003
  31
 0.0
   0
@@ -2399,15 +2735,15 @@ LINE
   8
 0
  10
-67.50000000000001
+212.7403742515411
  20
-138.9752226666667
+142.75000000000003
  30
 0.0
  11
-62.50000000000001
+212.7403742515411
  21
-138.9752226666667
+143.25
  31
 0.0
   0
@@ -2417,15 +2753,15 @@ LINE
   8
 0
  10
-186.00000000000003
+240.4676469788138
  20
-95.66993400081472
+143.25
  30
 0.0
  11
-197.00000000000003
+228.87673788790474
  21
-95.66993400081472
+143.25
  31
 0.0
   0
@@ -2435,15 +2771,15 @@ LINE
   8
 0
  10
-197.00000000000003
+228.87673788790474
  20
-95.66993400081472
+143.25
  30
 0.0
  11
-197.00000000000003
+228.87673788790474
  21
-108.66993400081472
+142.75000000000003
  31
 0.0
   0
@@ -2453,15 +2789,15 @@ LINE
   8
 0
  10
-197.00000000000003
+228.87673788790474
  20
-108.66993400081472
+142.75000000000003
  30
 0.0
  11
-186.00000000000003
+240.4676469788138
  21
-108.66993400081472
+142.75000000000003
  31
 0.0
   0
@@ -2471,15 +2807,15 @@ LINE
   8
 0
  10
-186.00000000000003
+240.4676469788138
  20
-108.66993400081472
+142.75000000000003
  30
 0.0
  11
-186.00000000000003
+240.4676469788138
  21
-95.66993400081472
+143.25
  31
 0.0
   0
@@ -2489,15 +2825,15 @@ LINE
   8
 0
  10
-217.50000000000003
+269.0585560697229
  20
-97.16993400081472
+146.58333333333337
  30
 0.0
  11
-223.50000000000003
+269.0585560697229
  21
-97.16993400081472
+158.41666666666669
  31
 0.0
   0
@@ -2507,15 +2843,15 @@ LINE
   8
 0
  10
-223.50000000000003
+269.0585560697229
  20
-97.16993400081472
+158.41666666666669
  30
 0.0
  11
-223.50000000000003
+268.55855606972295
  21
-107.16993400081472
+158.41666666666669
  31
 0.0
   0
@@ -2525,15 +2861,15 @@ LINE
   8
 0
  10
-223.50000000000003
+268.55855606972295
  20
-107.16993400081472
+158.41666666666669
  30
 0.0
  11
-217.50000000000003
+268.55855606972295
  21
-107.16993400081472
+146.58333333333337
  31
 0.0
   0
@@ -2543,15 +2879,15 @@ LINE
   8
 0
  10
-217.50000000000003
+268.55855606972295
  20
-107.16993400081472
+146.58333333333337
  30
 0.0
  11
-217.50000000000003
+269.0585560697229
  21
-97.16993400081472
+146.58333333333337
  31
 0.0
   0
@@ -2561,15 +2897,15 @@ LINE
   8
 0
  10
-217.90909090909093
+269.3085560697229
  20
-46.5313120016294
+254.25000000000003
  30
 0.0
  11
-217.90909090909093
+266.8085560697229
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2579,15 +2915,15 @@ LINE
   8
 0
  10
-217.90909090909093
+266.8085560697229
  20
-51.53131200162941
+254.25000000000003
  30
 0.0
  11
-206.81818181818184
+269.3085560697229
  21
-51.53131200162941
+251.75000000000003
  31
 0.0
   0
@@ -2597,15 +2933,15 @@ LINE
   8
 0
  10
-206.81818181818184
+269.3085560697229
  20
-51.53131200162941
+251.75000000000003
  30
 0.0
  11
-206.81818181818184
+277.30855606972295
  21
-46.5313120016294
+251.75000000000003
  31
 0.0
   0
@@ -2615,15 +2951,15 @@ LINE
   8
 0
  10
-190.18181818181822
+277.30855606972295
  20
-46.5313120016294
+251.75000000000003
  30
 0.0
  11
-190.18181818181822
+279.8085560697229
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2633,15 +2969,15 @@ LINE
   8
 0
  10
-190.18181818181822
+279.8085560697229
  20
-51.53131200162941
+254.25000000000003
  30
 0.0
  11
-179.09090909090912
+277.30855606972295
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2651,15 +2987,15 @@ LINE
   8
 0
  10
-179.09090909090912
+304.30855606972295
  20
-51.53131200162941
+158.50000000000003
  30
 0.0
  11
-179.09090909090912
+300.30855606972295
  21
-46.5313120016294
+158.50000000000003
  31
 0.0
   0
@@ -2669,15 +3005,15 @@ LINE
   8
 0
  10
-236.50000000000003
+300.30855606972295
  20
-106.16993400081472
+158.50000000000003
  30
 0.0
  11
-231.50000000000003
+300.30855606972295
  21
-106.16993400081472
+146.50000000000003
  31
 0.0
   0
@@ -2687,15 +3023,15 @@ LINE
   8
 0
  10
-231.50000000000003
+300.30855606972295
  20
-106.16993400081472
+146.50000000000003
  30
 0.0
  11
-231.50000000000003
+304.30855606972295
  21
-98.16993400081472
+146.50000000000003
  31
 0.0
   0
@@ -2705,15 +3041,15 @@ LINE
   8
 0
  10
-231.50000000000003
+304.30855606972295
  20
-98.16993400081472
+146.50000000000003
  30
 0.0
  11
-236.50000000000003
+304.30855606972295
  21
-98.16993400081472
+158.50000000000003
  31
 0.0
   0
@@ -2723,15 +3059,15 @@ LINE
   8
 0
  10
-160.50000000000003
+292.30855606972295
  20
-98.16993400081472
+157.0
  30
 0.0
  11
-165.50000000000003
+288.3085560697229
  21
-98.16993400081472
+157.0
  31
 0.0
   0
@@ -2741,15 +3077,15 @@ LINE
   8
 0
  10
-165.50000000000003
+288.3085560697229
  20
-98.16993400081472
+157.0
  30
 0.0
  11
-165.50000000000003
+288.3085560697229
  21
-106.16993400081472
+148.0
  31
 0.0
   0
@@ -2759,15 +3095,15 @@ LINE
   8
 0
  10
-165.50000000000003
+288.3085560697229
  20
-106.16993400081472
+148.0
  30
 0.0
  11
-160.50000000000003
+292.30855606972295
  21
-106.16993400081472
+148.0
  31
 0.0
   0
@@ -2777,15 +3113,15 @@ LINE
   8
 0
  10
-478.00000000000006
+292.30855606972295
  20
-150.30855600000004
+148.0
  30
 0.0
  11
-478.00000000000006
+292.30855606972295
  21
-150.30855600000004
+157.0
  31
 0.0
   0
@@ -2795,15 +3131,15 @@ LINE
   8
 0
  10
-249.00000000000003
+328.80855606972295
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-478.00000000000006
+305.80855606972295
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2813,15 +3149,15 @@ LINE
   8
 0
  10
-249.00000000000003
+305.80855606972295
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-249.00000000000003
+305.80855606972295
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2831,15 +3167,15 @@ LINE
   8
 0
  10
-310.0
+305.80855606972295
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-249.00000000000003
+328.80855606972295
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2849,15 +3185,15 @@ LINE
   8
 0
  10
-320.00000000000006
+328.80855606972295
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-310.0
+328.80855606972295
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2867,15 +3203,15 @@ LINE
   8
 0
  10
-418.00000000000006
+334.3085560697229
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-344.00000000000006
+330.3085560697229
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2885,15 +3221,15 @@ LINE
   8
 0
  10
-418.00000000000006
+330.3085560697229
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-418.00000000000006
+330.3085560697229
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2903,15 +3239,15 @@ LINE
   8
 0
  10
-249.00000000000003
+330.3085560697229
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-249.00000000000003
+334.3085560697229
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2921,35 +3257,33 @@ LINE
   8
 0
  10
-320.00000000000006
+334.3085560697229
  20
-116.30855600000002
+146.50000000000003
  30
 0.0
  11
-320.00000000000006
+334.3085560697229
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-344.00000000000006
+356.80855606972295
  20
-150.30855600000004
+158.16666666666669
  30
 0.0
  11
-344.00000000000006
+351.80855606972295
  21
-116.30855600000002
+158.16666666666669
  31
 0.0
   0
@@ -2959,35 +3293,33 @@ LINE
   8
 0
  10
-320.00000000000006
+351.80855606972295
  20
-80.30855600000002
+158.16666666666669
  30
 0.0
  11
-320.00000000000006
+351.80855606972295
  21
-116.30855600000002
+146.83333333333337
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-320.00000000000006
+351.80855606972295
  20
-80.30855600000002
+146.83333333333337
  30
 0.0
  11
-344.00000000000006
+356.80855606972295
  21
-80.30855600000002
+146.83333333333337
  31
 0.0
   0
@@ -2997,15 +3329,15 @@ LINE
   8
 0
  10
-344.00000000000006
+233.30855606972293
  20
-116.30855600000002
+190.13862199918535
  30
 0.0
  11
-344.00000000000006
+222.30855606972293
  21
-80.30855600000002
+190.13862199918535
  31
 0.0
   0
@@ -3015,15 +3347,15 @@ LINE
   8
 0
  10
-344.00000000000006
+222.30855606972293
  20
-80.30855600000002
+190.13862199918535
  30
 0.0
  11
-344.00000000000006
+222.30855606972293
  21
-35.30855600000002
+177.13862199918535
  31
 0.0
   0
@@ -3033,15 +3365,15 @@ LINE
   8
 0
  10
-320.00000000000006
+222.30855606972293
  20
-35.30855600000002
+177.13862199918535
  30
 0.0
  11
-320.00000000000006
+233.30855606972293
  21
-80.30855600000002
+177.13862199918535
  31
 0.0
   0
@@ -3051,15 +3383,15 @@ LINE
   8
 0
  10
-344.00000000000006
+233.30855606972293
  20
-35.30855600000002
+177.13862199918535
  30
 0.0
  11
-320.00000000000006
+233.30855606972293
  21
-35.30855600000002
+190.13862199918535
  31
 0.0
   0
@@ -3069,15 +3401,15 @@ LINE
   8
 0
  10
-344.00000000000006
+201.80855606972293
  20
-150.30855600000004
+188.63862199918535
  30
 0.0
  11
-364.0
+195.8085560697229
  21
-150.30855600000004
+188.63862199918535
  31
 0.0
   0
@@ -3087,35 +3419,33 @@ LINE
   8
 0
  10
-364.0
+195.8085560697229
  20
-116.30855600000002
+188.63862199918535
  30
 0.0
  11
-344.00000000000006
+195.8085560697229
  21
-116.30855600000002
+178.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-364.0
+195.8085560697229
  20
-150.30855600000004
+178.63862199918535
  30
 0.0
  11
-364.0
+201.80855606972293
  21
-116.30855600000002
+178.63862199918535
  31
 0.0
   0
@@ -3125,15 +3455,15 @@ LINE
   8
 0
  10
-364.0
+201.80855606972293
  20
-150.30855600000004
+178.63862199918535
  30
 0.0
  11
-388.00000000000006
+201.80855606972293
  21
-150.30855600000004
+188.63862199918535
  31
 0.0
   0
@@ -3143,35 +3473,33 @@ LINE
   8
 0
  10
-388.00000000000006
+201.399465160632
  20
-116.30855600000002
+239.27724399837064
  30
 0.0
  11
-364.0
+201.399465160632
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-388.00000000000006
+201.399465160632
  20
-150.30855600000004
+234.27724399837064
  30
 0.0
  11
-388.00000000000006
+212.4903742515411
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
@@ -3181,15 +3509,15 @@ LINE
   8
 0
  10
-388.00000000000006
+212.4903742515411
  20
-150.30855600000004
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+212.4903742515411
  21
-150.30855600000004
+239.27724399837064
  31
 0.0
   0
@@ -3199,35 +3527,33 @@ LINE
   8
 0
  10
-408.00000000000006
+229.12673788790474
  20
-116.30855600000002
+239.27724399837064
  30
 0.0
  11
-388.00000000000006
+229.12673788790474
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-408.00000000000006
+229.12673788790474
  20
-116.30855600000002
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+240.21764697881383
  21
-150.30855600000004
+234.27724399837064
  31
 0.0
   0
@@ -3237,15 +3563,15 @@ LINE
   8
 0
  10
-418.00000000000006
+240.21764697881383
  20
-116.30855600000002
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+240.21764697881383
  21
-116.30855600000002
+239.27724399837064
  31
 0.0
   0
@@ -3255,15 +3581,15 @@ LINE
   8
 0
  10
-418.00000000000006
+182.80855606972293
  20
-150.30855600000004
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+187.80855606972293
  21
-116.30855600000002
+179.63862199918535
  31
 0.0
   0
@@ -3273,15 +3599,15 @@ LINE
   8
 0
  10
-408.00000000000006
+187.80855606972293
  20
-150.30855600000004
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+187.80855606972293
  21
-150.30855600000004
+187.63862199918535
  31
 0.0
   0
@@ -3291,15 +3617,15 @@ LINE
   8
 0
  10
-478.00000000000006
+187.80855606972293
  20
-150.30855600000004
+187.63862199918535
  30
 0.0
  11
-478.00000000000006
+182.80855606972293
  21
-88.65427796513858
+187.63862199918535
  31
 0.0
   0
@@ -3309,35 +3635,33 @@ LINE
   8
 0
  10
-418.00000000000006
+258.80855606972295
  20
-88.65427796513858
+187.63862199918535
  30
 0.0
  11
-418.00000000000006
+253.80855606972293
  21
-150.30855600000004
+187.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-418.00000000000006
+253.80855606972293
  20
-88.65427796513858
+187.63862199918535
  30
 0.0
  11
-478.00000000000006
+253.80855606972293
  21
-88.65427796513858
+179.63862199918535
  31
 0.0
   0
@@ -3347,55 +3671,51 @@ LINE
   8
 0
  10
-418.00000000000006
+253.80855606972293
  20
-61.65427796513857
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+258.80855606972295
  21
-88.65427796513858
+179.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-478.00000000000006
+477.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+369.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-478.00000000000006
+538.3085560697231
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+477.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3405,15 +3725,15 @@ LINE
   8
 0
  10
-418.00000000000006
+538.3085560697231
  20
--6.972288701945219e-08
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+538.3085560697231
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3423,15 +3743,15 @@ LINE
   8
 0
  10
-478.00000000000006
+369.30855606972295
  20
--6.972288701945219e-08
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+369.30855606972295
  21
--6.972288701945219e-08
+135.50000000000003
  31
 0.0
   0
@@ -3441,15 +3761,15 @@ LINE
   8
 0
  10
-478.00000000000006
+477.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+538.3085560697231
  21
--6.972288701945219e-08
+135.50000000000003
  31
 0.0
   0
@@ -3459,15 +3779,15 @@ LINE
   8
 0
  10
-478.00000000000006
+467.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-495.00000000000006
+477.30855606972295
  21
-88.65427796513858
+135.50000000000003
  31
 0.0
   0
@@ -3477,35 +3797,33 @@ LINE
   8
 0
  10
-495.00000000000006
+369.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+443.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-495.00000000000006
+369.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-495.00000000000006
+369.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3515,15 +3833,15 @@ LINE
   8
 0
  10
-495.00000000000006
+538.3085560697231
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-555.0
+538.3085560697231
  21
-88.65427796513858
+135.50000000000003
  31
 0.0
   0
@@ -3533,15 +3851,15 @@ LINE
   8
 0
  10
-555.0
+467.30855606972295
  20
-61.65427796513857
+169.50000000000003
  30
 0.0
  11
-495.00000000000006
+467.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3553,15 +3871,15 @@ DOTTED
   8
 0
  10
-555.0
+443.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-555.0
+443.30855606972295
  21
-61.65427796513857
+169.50000000000003
  31
 0.0
   0
@@ -3571,15 +3889,35 @@ LINE
   8
 0
  10
-555.0
+467.30855606972295
  20
-88.65427796513858
+205.50000000000003
  30
 0.0
  11
-572.0
+467.30855606972295
  21
-88.65427796513858
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+467.30855606972295
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+443.30855606972295
+ 21
+205.50000000000003
  31
 0.0
   0
@@ -3589,35 +3927,33 @@ LINE
   8
 0
  10
-572.0
+443.30855606972295
  20
-61.65427796513857
+169.50000000000003
  30
 0.0
  11
-555.0
+443.30855606972295
  21
-61.65427796513857
+205.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-572.0
+443.30855606972295
  20
-61.65427796513857
+205.50000000000003
  30
 0.0
  11
-572.0
+443.30855606972295
  21
-88.65427796513858
+250.50000000000003
  31
 0.0
   0
@@ -3627,15 +3963,15 @@ LINE
   8
 0
  10
-582.0
+467.30855606972295
  20
-61.65427796513857
+250.50000000000003
  30
 0.0
  11
-572.0
+467.30855606972295
  21
-61.65427796513857
+205.50000000000003
  31
 0.0
   0
@@ -3645,15 +3981,15 @@ LINE
   8
 0
  10
-582.0
+443.30855606972295
  20
-88.65427796513858
+250.50000000000003
  30
 0.0
  11
-582.0
+467.30855606972295
  21
-61.65427796513857
+250.50000000000003
  31
 0.0
   0
@@ -3663,15 +3999,15 @@ LINE
   8
 0
  10
-572.0
+443.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-582.0
+423.30855606972295
  21
-88.65427796513858
+135.50000000000003
  31
 0.0
   0
@@ -3681,15 +4017,35 @@ LINE
   8
 0
  10
-271.4318181818182
+423.30855606972295
  20
-158.058556
+169.50000000000003
  30
 0.0
  11
-259.8409090909092
+443.30855606972295
  21
-158.058556
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+423.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+423.30855606972295
+ 21
+169.50000000000003
  31
 0.0
   0
@@ -3699,15 +4055,15 @@ LINE
   8
 0
  10
-259.8409090909092
+423.30855606972295
  20
-158.058556
+135.50000000000003
  30
 0.0
  11
-259.8409090909092
+399.30855606972295
  21
-157.55855600000004
+135.50000000000003
  31
 0.0
   0
@@ -3717,15 +4073,35 @@ LINE
   8
 0
  10
-259.8409090909092
+399.30855606972295
  20
-157.55855600000004
+169.50000000000003
  30
 0.0
  11
-271.4318181818182
+423.30855606972295
  21
-157.55855600000004
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+399.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+399.30855606972295
+ 21
+169.50000000000003
  31
 0.0
   0
@@ -3735,15 +4111,53 @@ LINE
   8
 0
  10
-271.4318181818182
+399.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+379.30855606972295
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+399.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+379.30855606972295
  20
-157.55855600000004
+169.50000000000003
  30
 0.0
  11
-271.4318181818182
+379.30855606972295
  21
-158.058556
+135.50000000000003
  31
 0.0
   0
@@ -3753,15 +4167,15 @@ LINE
   8
 0
  10
-299.159090909091
+369.30855606972295
  20
-158.058556
+169.50000000000003
  30
 0.0
  11
-287.56818181818187
+379.30855606972295
  21
-158.058556
+169.50000000000003
  31
 0.0
   0
@@ -3771,15 +4185,15 @@ LINE
   8
 0
  10
-287.56818181818187
+369.30855606972295
  20
-158.058556
+135.50000000000003
  30
 0.0
  11
-287.56818181818187
+369.30855606972295
  21
-157.55855600000004
+169.50000000000003
  31
 0.0
   0
@@ -3789,15 +4203,15 @@ LINE
   8
 0
  10
-287.56818181818187
+379.30855606972295
  20
-157.55855600000004
+135.50000000000003
  30
 0.0
  11
-299.159090909091
+369.30855606972295
  21
-157.55855600000004
+135.50000000000003
  31
 0.0
   0
@@ -3807,15 +4221,15 @@ LINE
   8
 0
  10
-299.159090909091
+499.74037425154114
  20
-157.55855600000004
+143.25
  30
 0.0
  11
-299.159090909091
+488.1494651606321
  21
-158.058556
+143.25
  31
 0.0
   0
@@ -3825,15 +4239,15 @@ LINE
   8
 0
  10
-327.75
+488.1494651606321
  20
-127.39188933333335
+143.25
  30
 0.0
  11
-327.75
+488.1494651606321
  21
-139.2252226666667
+142.75000000000003
  31
 0.0
   0
@@ -3843,15 +4257,15 @@ LINE
   8
 0
  10
-327.75
+488.1494651606321
  20
-139.2252226666667
+142.75000000000003
  30
 0.0
  11
-327.25
+499.74037425154114
  21
-139.2252226666667
+142.75000000000003
  31
 0.0
   0
@@ -3861,15 +4275,15 @@ LINE
   8
 0
  10
-327.25
+499.74037425154114
  20
-139.2252226666667
+142.75000000000003
  30
 0.0
  11
-327.25
+499.74037425154114
  21
-127.39188933333335
+143.25
  31
 0.0
   0
@@ -3879,15 +4293,15 @@ LINE
   8
 0
  10
-327.25
+527.4676469788138
  20
-127.39188933333335
+143.25
  30
 0.0
  11
-327.75
+515.8767378879047
  21
-127.39188933333335
+143.25
  31
 0.0
   0
@@ -3897,15 +4311,15 @@ LINE
   8
 0
  10
-336.25
+515.8767378879047
  20
-39.30855600000002
+143.25
  30
 0.0
  11
-327.75
+515.8767378879047
  21
-39.30855600000002
+142.75000000000003
  31
 0.0
   0
@@ -3915,15 +4329,15 @@ LINE
   8
 0
  10
-327.75
+515.8767378879047
  20
-39.30855600000002
+142.75000000000003
  30
 0.0
  11
-327.75
+527.4676469788138
  21
-38.80855600000002
+142.75000000000003
  31
 0.0
   0
@@ -3933,15 +4347,15 @@ LINE
   8
 0
  10
-327.75
+527.4676469788138
  20
-38.80855600000002
+142.75000000000003
  30
 0.0
  11
-336.25
+527.4676469788138
  21
-38.80855600000002
+143.25
  31
 0.0
   0
@@ -3951,15 +4365,15 @@ LINE
   8
 0
  10
-336.25
+515.8767378879047
  20
-38.80855600000002
+127.75000000000001
  30
 0.0
  11
-336.25
+527.4676469788138
  21
-39.30855600000002
+127.75000000000001
  31
 0.0
   0
@@ -3969,15 +4383,15 @@ LINE
   8
 0
  10
-363.00000000000006
+527.4676469788138
  20
-139.30855600000004
+127.75000000000001
  30
 0.0
  11
-359.0
+527.4676469788138
  21
-139.30855600000004
+128.25000000000003
  31
 0.0
   0
@@ -3987,15 +4401,15 @@ LINE
   8
 0
  10
-359.0
+527.4676469788138
  20
-139.30855600000004
+128.25000000000003
  30
 0.0
  11
-359.0
+515.8767378879047
  21
-127.30855600000004
+128.25000000000003
  31
 0.0
   0
@@ -4005,15 +4419,15 @@ LINE
   8
 0
  10
-359.0
+515.8767378879047
  20
-127.30855600000004
+128.25000000000003
  30
 0.0
  11
-363.00000000000006
+515.8767378879047
  21
-127.30855600000004
+127.75000000000001
  31
 0.0
   0
@@ -4023,15 +4437,15 @@ LINE
   8
 0
  10
-363.00000000000006
+488.1494651606321
  20
-127.30855600000004
+127.75000000000001
  30
 0.0
  11
-363.00000000000006
+499.74037425154114
  21
-139.30855600000004
+127.75000000000001
  31
 0.0
   0
@@ -4041,15 +4455,15 @@ LINE
   8
 0
  10
-351.0
+499.74037425154114
  20
-137.808556
+127.75000000000001
  30
 0.0
  11
-347.00000000000006
+499.74037425154114
  21
-137.808556
+128.25000000000003
  31
 0.0
   0
@@ -4059,15 +4473,15 @@ LINE
   8
 0
  10
-347.00000000000006
+499.74037425154114
  20
-137.808556
+128.25000000000003
  30
 0.0
  11
-347.00000000000006
+488.1494651606321
  21
-128.808556
+128.25000000000003
  31
 0.0
   0
@@ -4077,15 +4491,15 @@ LINE
   8
 0
  10
-347.00000000000006
+488.1494651606321
  20
-128.808556
+128.25000000000003
  30
 0.0
  11
-351.0
+488.1494651606321
  21
-128.808556
+127.75000000000001
  31
 0.0
   0
@@ -4095,15 +4509,15 @@ LINE
   8
 0
  10
-351.0
+459.55855606972295
  20
-128.808556
+158.41666666666669
  30
 0.0
  11
-351.0
+459.55855606972295
  21
-137.808556
+146.58333333333337
  31
 0.0
   0
@@ -4113,15 +4527,15 @@ LINE
   8
 0
  10
-387.50000000000006
+459.55855606972295
  20
-139.30855600000004
+146.58333333333337
  30
 0.0
  11
-364.5
+460.05855606972295
  21
-139.30855600000004
+146.58333333333337
  31
 0.0
   0
@@ -4131,15 +4545,15 @@ LINE
   8
 0
  10
-364.5
+460.05855606972295
  20
-139.30855600000004
+146.58333333333337
  30
 0.0
  11
-364.5
+460.05855606972295
  21
-127.30855600000004
+158.41666666666669
  31
 0.0
   0
@@ -4149,15 +4563,15 @@ LINE
   8
 0
  10
-364.5
+460.05855606972295
  20
-127.30855600000004
+158.41666666666669
  30
 0.0
  11
-387.50000000000006
+459.55855606972295
  21
-127.30855600000004
+158.41666666666669
  31
 0.0
   0
@@ -4167,15 +4581,15 @@ LINE
   8
 0
  10
-387.50000000000006
+451.05855606972295
  20
-127.30855600000004
+246.50000000000003
  30
 0.0
  11
-387.50000000000006
+459.55855606972295
  21
-139.30855600000004
+246.50000000000003
  31
 0.0
   0
@@ -4185,15 +4599,15 @@ LINE
   8
 0
  10
-393.00000000000006
+459.55855606972295
  20
-139.30855600000004
+246.50000000000003
  30
 0.0
  11
-389.00000000000006
+459.55855606972295
  21
-139.30855600000004
+247.00000000000003
  31
 0.0
   0
@@ -4203,15 +4617,15 @@ LINE
   8
 0
  10
-389.00000000000006
+459.55855606972295
  20
-139.30855600000004
+247.00000000000003
  30
 0.0
  11
-389.00000000000006
+451.05855606972295
  21
-127.30855600000004
+247.00000000000003
  31
 0.0
   0
@@ -4221,15 +4635,15 @@ LINE
   8
 0
  10
-389.00000000000006
+451.05855606972295
  20
-127.30855600000004
+247.00000000000003
  30
 0.0
  11
-393.00000000000006
+451.05855606972295
  21
-127.30855600000004
+246.50000000000003
  31
 0.0
   0
@@ -4239,15 +4653,15 @@ LINE
   8
 0
  10
-393.00000000000006
+424.30855606972295
  20
-127.30855600000004
+146.50000000000003
  30
 0.0
  11
-393.00000000000006
+428.30855606972295
  21
-139.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -4257,15 +4671,15 @@ LINE
   8
 0
  10
-415.50000000000006
+428.30855606972295
  20
-138.9752226666667
+146.50000000000003
  30
 0.0
  11
-410.50000000000006
+428.30855606972295
  21
-138.9752226666667
+158.50000000000003
  31
 0.0
   0
@@ -4275,15 +4689,15 @@ LINE
   8
 0
  10
-410.50000000000006
+428.30855606972295
  20
-138.9752226666667
+158.50000000000003
  30
 0.0
  11
-410.50000000000006
+424.30855606972295
  21
-127.64188933333335
+158.50000000000003
  31
 0.0
   0
@@ -4293,15 +4707,15 @@ LINE
   8
 0
  10
-410.50000000000006
+424.30855606972295
  20
-127.64188933333335
+158.50000000000003
  30
 0.0
  11
-415.50000000000006
+424.30855606972295
  21
-127.64188933333335
+146.50000000000003
  31
 0.0
   0
@@ -4311,15 +4725,15 @@ LINE
   8
 0
  10
-481.00000000000006
+436.30855606972295
  20
-84.15427796513858
+148.0
  30
 0.0
  11
-475.00000000000006
+440.30855606972295
  21
-84.15427796513858
+148.0
  31
 0.0
   0
@@ -4329,15 +4743,15 @@ LINE
   8
 0
  10
-475.00000000000006
+440.30855606972295
  20
-84.15427796513858
+148.0
  30
 0.0
  11
-475.00000000000006
+440.30855606972295
  21
-66.15427796513858
+157.0
  31
 0.0
   0
@@ -4347,15 +4761,15 @@ LINE
   8
 0
  10
-475.00000000000006
+440.30855606972295
  20
-66.15427796513858
+157.0
  30
 0.0
  11
-481.00000000000006
+436.30855606972295
  21
-66.15427796513858
+157.0
  31
 0.0
   0
@@ -4365,15 +4779,15 @@ LINE
   8
 0
  10
-481.00000000000006
+436.30855606972295
  20
-66.15427796513858
+157.0
  30
 0.0
  11
-481.00000000000006
+436.30855606972295
  21
-84.15427796513858
+148.0
  31
 0.0
   0
@@ -4383,15 +4797,15 @@ LINE
   8
 0
  10
-425.75000000000006
+399.80855606972295
  20
-70.40427796513856
+146.50000000000003
  30
 0.0
  11
-425.75000000000006
+422.80855606972295
  21
-79.90427796513858
+146.50000000000003
  31
 0.0
   0
@@ -4401,15 +4815,15 @@ LINE
   8
 0
  10
-425.75000000000006
+422.80855606972295
  20
-79.90427796513858
+146.50000000000003
  30
 0.0
  11
-425.25000000000006
+422.80855606972295
  21
-79.90427796513858
+158.50000000000003
  31
 0.0
   0
@@ -4419,15 +4833,15 @@ LINE
   8
 0
  10
-425.25000000000006
+422.80855606972295
  20
-79.90427796513858
+158.50000000000003
  30
 0.0
  11
-425.25000000000006
+399.80855606972295
  21
-70.40427796513856
+158.50000000000003
  31
 0.0
   0
@@ -4437,15 +4851,15 @@ LINE
   8
 0
  10
-425.25000000000006
+399.80855606972295
  20
-70.40427796513856
+158.50000000000003
  30
 0.0
  11
-425.75000000000006
+399.80855606972295
  21
-70.40427796513856
+146.50000000000003
  31
 0.0
   0
@@ -4455,15 +4869,15 @@ LINE
   8
 0
  10
-458.25000000000006
+394.3085560697229
  20
-7.749999930277114
+146.50000000000003
  30
 0.0
  11
-437.75000000000006
+398.3085560697229
  21
-7.749999930277114
+146.50000000000003
  31
 0.0
   0
@@ -4473,15 +4887,15 @@ LINE
   8
 0
  10
-437.75000000000006
+398.3085560697229
  20
-7.749999930277114
+146.50000000000003
  30
 0.0
  11
-437.75000000000006
+398.3085560697229
  21
-7.249999930277114
+158.50000000000003
  31
 0.0
   0
@@ -4491,15 +4905,15 @@ LINE
   8
 0
  10
-437.75000000000006
+398.3085560697229
  20
-7.249999930277114
+158.50000000000003
  30
 0.0
  11
-458.25000000000006
+394.3085560697229
  21
-7.249999930277114
+158.50000000000003
  31
 0.0
   0
@@ -4509,15 +4923,15 @@ LINE
   8
 0
  10
-458.25000000000006
+394.3085560697229
  20
-7.249999930277114
+158.50000000000003
  30
 0.0
  11
-458.25000000000006
+394.3085560697229
  21
-7.749999930277114
+146.50000000000003
  31
 0.0
   0
@@ -4527,15 +4941,15 @@ LINE
   8
 0
  10
-579.5000000000001
+371.80855606972295
  20
-79.65427796513858
+146.83333333333337
  30
 0.0
  11
-574.5
+376.80855606972295
  21
-79.65427796513858
+146.83333333333337
  31
 0.0
   0
@@ -4545,15 +4959,15 @@ LINE
   8
 0
  10
-574.5
+376.80855606972295
  20
-79.65427796513858
+146.83333333333337
  30
 0.0
  11
-574.5
+376.80855606972295
  21
-70.65427796513858
+158.16666666666669
  31
 0.0
   0
@@ -4563,15 +4977,15 @@ LINE
   8
 0
  10
-574.5
+376.80855606972295
  20
-70.65427796513858
+158.16666666666669
  30
 0.0
  11
-579.5000000000001
+371.80855606972295
  21
-70.65427796513858
+158.16666666666669
  31
 0.0
   0
@@ -4583,15 +4997,15 @@ DOTTED
   8
 0
  10
-625.0000000000001
+581.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4603,15 +5017,15 @@ DOTTED
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4623,15 +5037,15 @@ DOTTED
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4643,15 +5057,15 @@ DOTTED
   8
 0
  10
-625.0000000000001
+581.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4661,15 +5075,15 @@ LINE
   8
 0
  10
-625.0000000000001
+581.3085560697231
  20
-131.30855600000004
+116.50000000000001
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4679,15 +5093,15 @@ LINE
   8
 0
  10
-685.0000000000001
+641.3085560697231
  20
-131.30855600000004
+116.50000000000001
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-131.30855600000004
+116.50000000000001
  31
 0.0
   0
@@ -4697,15 +5111,15 @@ LINE
   8
 0
  10
-685.0000000000001
+641.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-685.0000000000001
+641.3085560697231
  21
-131.30855600000004
+116.50000000000001
  31
 0.0
   0
@@ -4715,15 +5129,15 @@ LINE
   8
 0
  10
-693.0000000000001
+649.308556069723
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4733,15 +5147,15 @@ LINE
   8
 0
  10
-693.0000000000001
+649.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-693.0000000000001
+649.308556069723
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4751,15 +5165,15 @@ LINE
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-693.0000000000001
+649.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4771,15 +5185,15 @@ DOTTED
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4789,15 +5203,15 @@ LINE
   8
 0
  10
-626.0000000000001
+582.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4809,15 +5223,15 @@ DOTTED
   8
 0
  10
-626.0000000000001
+582.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-626.0000000000001
+582.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4827,15 +5241,15 @@ LINE
   8
 0
  10
-710.0
+666.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4847,15 +5261,15 @@ DOTTED
   8
 0
  10
-710.0
+666.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-710.0
+666.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4865,15 +5279,15 @@ LINE
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-710.0
+666.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4883,15 +5297,15 @@ LINE
   8
 0
  10
-770.0000000000001
+726.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-710.0
+666.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4901,15 +5315,15 @@ LINE
   8
 0
  10
-770.0000000000001
+726.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-770.0000000000001
+726.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4919,15 +5333,15 @@ LINE
   8
 0
  10
-710.0
+666.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-770.0000000000001
+726.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4937,15 +5351,15 @@ LINE
   8
 0
  10
-626.0000000000001
+582.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-602.0
+558.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4955,15 +5369,15 @@ LINE
   8
 0
  10
-602.0
+558.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-626.0000000000001
+582.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4975,15 +5389,15 @@ DOTTED
   8
 0
  10
-602.0
+558.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-602.0
+558.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4993,15 +5407,15 @@ LINE
   8
 0
  10
-592.0
+548.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-602.0
+558.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5011,15 +5425,15 @@ LINE
   8
 0
  10
-592.0
+548.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-592.0
+548.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5029,15 +5443,15 @@ LINE
   8
 0
  10
-602.0
+558.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-592.0
+548.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5047,15 +5461,15 @@ LINE
   8
 0
  10
-618.0
+574.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5065,15 +5479,15 @@ LINE
   8
 0
  10
-618.0
+574.308556069723
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-618.0
+574.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5083,15 +5497,15 @@ LINE
   8
 0
  10
-625.0000000000001
+581.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-618.0
+574.308556069723
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -5101,15 +5515,15 @@ LINE
   8
 0
  10
-674.0909090909092
+630.3994651606322
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-677.5909090909091
+633.8994651606321
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5119,15 +5533,15 @@ LINE
   8
 0
  10
-677.5909090909091
+633.8994651606321
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-674.0909090909092
+630.3994651606322
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5137,15 +5551,15 @@ LINE
   8
 0
  10
-674.0909090909092
+630.3994651606322
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-663.1818181818181
+619.4903742515411
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5155,15 +5569,15 @@ LINE
   8
 0
  10
-663.1818181818181
+619.4903742515411
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-659.6818181818184
+615.9903742515413
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5173,15 +5587,15 @@ LINE
   8
 0
  10
-659.6818181818184
+615.9903742515413
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-663.1818181818181
+619.4903742515411
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5191,15 +5605,15 @@ LINE
   8
 0
  10
-646.818181818182
+603.1267378879049
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-650.318181818182
+606.6267378879048
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5209,15 +5623,15 @@ LINE
   8
 0
  10
-650.318181818182
+606.6267378879048
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-646.818181818182
+603.1267378879049
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5227,15 +5641,15 @@ LINE
   8
 0
  10
-646.818181818182
+603.1267378879049
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-635.909090909091
+592.2176469788138
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5245,15 +5659,15 @@ LINE
   8
 0
  10
-635.909090909091
+592.2176469788138
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-632.4090909090909
+588.717646978814
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5263,15 +5677,15 @@ LINE
   8
 0
  10
-632.4090909090909
+588.717646978814
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-635.909090909091
+592.2176469788138
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5281,15 +5695,15 @@ LINE
   8
 0
  10
-691.2500000000001
+647.5585560697231
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-687.75
+644.058556069723
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
@@ -5299,15 +5713,15 @@ LINE
   8
 0
  10
-687.75
+644.058556069723
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-687.75
+644.058556069723
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -5317,15 +5731,15 @@ LINE
   8
 0
  10
-687.75
+644.058556069723
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-691.2500000000001
+647.5585560697231
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -5335,15 +5749,15 @@ LINE
   8
 0
  10
-633.5000000000001
+589.8085560697231
  20
-213.80855600000004
+199.00000000000003
  30
 0.0
  11
-633.5000000000001
+589.8085560697231
  21
-195.80855600000004
+181.00000000000003
  31
 0.0
   0
@@ -5353,15 +5767,15 @@ LINE
   8
 0
  10
-633.5000000000001
+589.8085560697231
  20
-195.80855600000004
+181.00000000000003
  30
 0.0
  11
-668.5000000000001
+624.8085560697231
  21
-195.80855600000004
+181.00000000000003
  31
 0.0
   0
@@ -5371,15 +5785,15 @@ LINE
   8
 0
  10
-668.5000000000001
+624.8085560697231
  20
-195.80855600000004
+181.00000000000003
  30
 0.0
  11
-668.5000000000001
+624.8085560697231
  21
-213.80855600000004
+199.00000000000003
  31
 0.0
   0
@@ -5389,15 +5803,15 @@ LINE
   8
 0
  10
-668.5000000000001
+624.8085560697231
  20
-213.80855600000004
+199.00000000000003
  30
 0.0
  11
-633.5000000000001
+589.8085560697231
  21
-213.80855600000004
+199.00000000000003
  31
 0.0
   0
@@ -5407,15 +5821,15 @@ LINE
   8
 0
  10
-686.5000000000001
+642.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-686.5000000000001
+642.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -5425,15 +5839,15 @@ LINE
   8
 0
  10
-686.5000000000001
+642.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-689.5000000000001
+645.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -5443,15 +5857,15 @@ LINE
   8
 0
  10
-689.5000000000001
+645.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-689.5000000000001
+645.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -5461,15 +5875,15 @@ LINE
   8
 0
  10
-689.5000000000001
+645.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-686.5000000000001
+642.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -5479,15 +5893,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -5497,15 +5911,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -5515,15 +5929,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -5533,15 +5947,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -5551,15 +5965,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5569,15 +5983,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5587,15 +6001,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5605,15 +6019,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5623,15 +6037,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5641,15 +6055,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5659,15 +6073,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5677,15 +6091,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5695,15 +6109,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5713,15 +6127,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5731,15 +6145,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5749,15 +6163,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5767,15 +6181,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5785,15 +6199,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5803,15 +6217,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5821,15 +6235,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5839,15 +6253,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5857,15 +6271,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5875,15 +6289,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5893,15 +6307,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5911,15 +6325,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5929,15 +6343,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5947,15 +6361,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5965,15 +6379,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5983,15 +6397,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6001,15 +6415,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6019,15 +6433,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6037,15 +6451,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6055,15 +6469,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6073,15 +6487,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6091,15 +6505,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6109,15 +6523,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6127,15 +6541,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6145,15 +6559,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6163,15 +6577,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6181,15 +6595,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6199,15 +6613,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6217,15 +6631,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6235,15 +6649,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6253,15 +6667,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6271,15 +6685,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6289,15 +6703,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6307,15 +6721,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6325,15 +6739,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6343,15 +6757,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6361,15 +6775,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6379,15 +6793,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6397,15 +6811,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6415,15 +6829,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6433,15 +6847,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6451,15 +6865,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6469,15 +6883,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6487,15 +6901,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6505,15 +6919,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6523,15 +6937,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6541,15 +6955,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6559,15 +6973,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6577,15 +6991,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6595,15 +7009,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6613,15 +7027,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6631,15 +7045,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6649,15 +7063,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6667,15 +7081,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6685,15 +7099,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6703,15 +7117,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6721,15 +7135,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6739,15 +7153,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6757,15 +7171,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6775,15 +7189,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6793,15 +7207,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6811,15 +7225,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6829,15 +7243,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6847,15 +7261,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6865,15 +7279,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6883,15 +7297,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6901,15 +7315,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6919,15 +7333,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6937,15 +7351,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6955,15 +7369,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6973,15 +7387,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6991,15 +7405,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7009,15 +7423,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7027,15 +7441,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7045,15 +7459,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7063,15 +7477,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7081,15 +7495,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7099,15 +7513,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7117,15 +7531,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7135,15 +7549,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7153,15 +7567,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7171,15 +7585,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7189,15 +7603,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7207,15 +7621,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7225,15 +7639,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7243,15 +7657,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7261,15 +7675,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7279,15 +7693,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7297,15 +7711,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7315,15 +7729,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7333,15 +7747,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7351,15 +7765,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7369,15 +7783,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7387,15 +7801,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7405,15 +7819,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7423,15 +7837,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7441,15 +7855,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7459,15 +7873,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7477,15 +7891,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7495,15 +7909,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7513,15 +7927,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7531,15 +7945,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7549,15 +7963,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7567,15 +7981,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -7585,15 +7999,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -7603,15 +8017,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -7621,15 +8035,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -7639,15 +8053,15 @@ LINE
   8
 0
  10
-706.5000000000001
+662.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-706.5000000000001
+662.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -7657,15 +8071,15 @@ LINE
   8
 0
  10
-706.5000000000001
+662.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-709.5
+665.808556069723
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -7675,15 +8089,15 @@ LINE
   8
 0
  10
-709.5
+665.808556069723
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-709.5
+665.808556069723
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -7693,15 +8107,15 @@ LINE
   8
 0
  10
-709.5
+665.808556069723
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-706.5000000000001
+662.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -7711,15 +8125,15 @@ LINE
   8
 0
  10
-702.2500000000001
+658.5585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -7729,15 +8143,15 @@ LINE
   8
 0
  10
-693.7500000000001
+650.0585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -7747,15 +8161,15 @@ LINE
   8
 0
  10
-693.7500000000001
+650.0585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -7765,15 +8179,15 @@ LINE
   8
 0
  10
-702.2500000000001
+658.5585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -7783,15 +8197,15 @@ LINE
   8
 0
  10
-693.7500000000001
+650.0585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -7801,15 +8215,15 @@ LINE
   8
 0
  10
-702.2500000000001
+658.5585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -7819,15 +8233,15 @@ LINE
   8
 0
  10
-702.2500000000001
+658.5585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -7837,15 +8251,15 @@ LINE
   8
 0
  10
-693.7500000000001
+650.0585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -7855,15 +8269,15 @@ LINE
   8
 0
  10
-725.0000000000001
+681.3085560697231
  20
-213.30855600000004
+198.50000000000003
  30
 0.0
  11
-725.0000000000001
+681.3085560697231
  21
-200.30855600000004
+185.50000000000003
  31
 0.0
   0
@@ -7873,15 +8287,15 @@ LINE
   8
 0
  10
-725.0000000000001
+681.3085560697231
  20
-200.30855600000004
+185.50000000000003
  30
 0.0
  11
-755.0
+711.308556069723
  21
-200.30855600000004
+185.50000000000003
  31
 0.0
   0
@@ -7891,15 +8305,15 @@ LINE
   8
 0
  10
-755.0
+711.308556069723
  20
-200.30855600000004
+185.50000000000003
  30
 0.0
  11
-755.0
+711.308556069723
  21
-213.30855600000004
+198.50000000000003
  31
 0.0
   0
@@ -7909,15 +8323,15 @@ LINE
   8
 0
  10
-755.0
+711.308556069723
  20
-213.30855600000004
+198.50000000000003
  30
 0.0
  11
-725.0000000000001
+681.3085560697231
  21
-213.30855600000004
+198.50000000000003
  31
 0.0
   0
@@ -7927,15 +8341,15 @@ LINE
   8
 0
  10
-732.0681818181819
+688.3767378879048
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-720.6590909090909
+676.9676469788138
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -7945,15 +8359,15 @@ LINE
   8
 0
  10
-720.6590909090909
+676.9676469788138
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-720.6590909090909
+676.9676469788138
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -7963,15 +8377,15 @@ LINE
   8
 0
  10
-720.6590909090909
+676.9676469788138
  20
-167.308556
+152.5
  30
 0.0
  11
-732.0681818181819
+688.3767378879048
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -7981,15 +8395,15 @@ LINE
   8
 0
  10
-732.0681818181819
+688.3767378879048
  20
-167.308556
+152.5
  30
 0.0
  11
-732.0681818181819
+688.3767378879048
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -7999,15 +8413,15 @@ LINE
   8
 0
  10
-759.3409090909092
+715.6494651606322
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-747.9318181818181
+704.2403742515411
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -8017,15 +8431,15 @@ LINE
   8
 0
  10
-747.9318181818181
+704.2403742515411
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-747.9318181818181
+704.2403742515411
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -8035,15 +8449,15 @@ LINE
   8
 0
  10
-747.9318181818181
+704.2403742515411
  20
-167.308556
+152.5
  30
 0.0
  11
-759.3409090909092
+715.6494651606322
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -8053,15 +8467,15 @@ LINE
   8
 0
  10
-759.3409090909092
+715.6494651606322
  20
-167.308556
+152.5
  30
 0.0
  11
-759.3409090909092
+715.6494651606322
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -8071,15 +8485,15 @@ LINE
   8
 0
  10
-762.2500000000001
+718.5585560697231
  20
-184.74037418181823
+169.93181818181822
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-173.14946509090913
+158.3409090909091
  31
 0.0
   0
@@ -8089,15 +8503,15 @@ LINE
   8
 0
  10
-762.2500000000001
+718.5585560697231
  20
-173.14946509090913
+158.3409090909091
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-173.14946509090913
+158.3409090909091
  31
 0.0
   0
@@ -8107,15 +8521,15 @@ LINE
   8
 0
  10
-762.7500000000001
+719.0585560697231
  20
-173.14946509090913
+158.3409090909091
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-184.74037418181823
+169.93181818181822
  31
 0.0
   0
@@ -8125,15 +8539,15 @@ LINE
   8
 0
  10
-762.7500000000001
+719.0585560697231
  20
-184.74037418181823
+169.93181818181822
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-184.74037418181823
+169.93181818181822
  31
 0.0
   0
@@ -8143,15 +8557,15 @@ LINE
   8
 0
  10
-762.2500000000001
+718.5585560697231
  20
-212.46764690909094
+197.65909090909093
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-200.87673781818185
+186.06818181818184
  31
 0.0
   0
@@ -8161,15 +8575,15 @@ LINE
   8
 0
  10
-762.2500000000001
+718.5585560697231
  20
-200.87673781818185
+186.06818181818184
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-200.87673781818185
+186.06818181818184
  31
 0.0
   0
@@ -8179,15 +8593,15 @@ LINE
   8
 0
  10
-762.7500000000001
+719.0585560697231
  20
-200.87673781818185
+186.06818181818184
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-212.46764690909094
+197.65909090909093
  31
 0.0
   0
@@ -8197,15 +8611,15 @@ LINE
   8
 0
  10
-762.7500000000001
+719.0585560697231
  20
-212.46764690909094
+197.65909090909093
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-212.46764690909094
+197.65909090909093
  31
 0.0
   0
@@ -8215,15 +8629,15 @@ LINE
   8
 0
  10
-602.5000000000001
+558.808556069723
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-602.5000000000001
+558.808556069723
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -8233,15 +8647,15 @@ LINE
   8
 0
  10
-602.5000000000001
+558.808556069723
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-605.5000000000001
+561.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -8251,15 +8665,15 @@ LINE
   8
 0
  10
-605.5000000000001
+561.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-605.5000000000001
+561.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -8269,15 +8683,15 @@ LINE
   8
 0
  10
-605.5000000000001
+561.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-602.5000000000001
+558.808556069723
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -8287,15 +8701,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -8305,15 +8719,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -8323,15 +8737,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -8341,15 +8755,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -8359,15 +8773,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8377,15 +8791,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8395,15 +8809,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8413,15 +8827,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8431,15 +8845,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8449,15 +8863,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8467,15 +8881,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8485,15 +8899,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8503,15 +8917,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8521,15 +8935,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8539,15 +8953,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8557,15 +8971,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8575,15 +8989,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8593,15 +9007,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8611,15 +9025,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8629,15 +9043,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8647,15 +9061,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8665,15 +9079,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8683,15 +9097,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8701,15 +9115,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8719,15 +9133,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8737,15 +9151,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8755,15 +9169,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8773,15 +9187,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8791,15 +9205,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8809,15 +9223,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8827,15 +9241,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8845,15 +9259,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8863,15 +9277,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8881,15 +9295,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8899,15 +9313,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8917,15 +9331,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8935,15 +9349,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -8953,15 +9367,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -8971,15 +9385,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -8989,15 +9403,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9007,15 +9421,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -9025,15 +9439,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -9043,15 +9457,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9061,15 +9475,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9079,15 +9493,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9097,15 +9511,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9115,15 +9529,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9133,15 +9547,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9151,15 +9565,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9169,15 +9583,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9187,15 +9601,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9205,15 +9619,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9223,15 +9637,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9241,15 +9655,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9259,15 +9673,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9277,15 +9691,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9295,15 +9709,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9313,15 +9727,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9331,15 +9745,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9349,15 +9763,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9367,15 +9781,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9385,15 +9799,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9403,15 +9817,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9421,15 +9835,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9439,15 +9853,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9457,15 +9871,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9475,15 +9889,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9493,15 +9907,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9511,15 +9925,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9529,15 +9943,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9547,15 +9961,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9565,15 +9979,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9583,15 +9997,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9601,15 +10015,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9619,15 +10033,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9637,15 +10051,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9655,15 +10069,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9673,15 +10087,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9691,15 +10105,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9709,15 +10123,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9727,15 +10141,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9745,15 +10159,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9763,15 +10177,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9781,15 +10195,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9799,15 +10213,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9817,15 +10231,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9835,15 +10249,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9853,15 +10267,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9871,15 +10285,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9889,15 +10303,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9907,15 +10321,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9925,15 +10339,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9943,15 +10357,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -9961,15 +10375,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -9979,15 +10393,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -9997,15 +10411,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10015,15 +10429,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -10033,15 +10447,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -10051,15 +10465,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10069,15 +10483,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10087,15 +10501,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10105,15 +10519,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10123,15 +10537,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10141,15 +10555,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10159,15 +10573,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10177,15 +10591,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10195,15 +10609,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10213,15 +10627,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10231,15 +10645,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10249,15 +10663,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10267,15 +10681,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10285,15 +10699,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10303,15 +10717,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10321,15 +10735,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10339,15 +10753,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10357,15 +10771,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10375,15 +10789,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -10393,15 +10807,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -10411,15 +10825,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -10429,15 +10843,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -10447,15 +10861,15 @@ LINE
   8
 0
  10
-622.5000000000001
+578.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-622.5000000000001
+578.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -10465,15 +10879,15 @@ LINE
   8
 0
  10
-622.5000000000001
+578.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-625.5000000000001
+581.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -10483,15 +10897,15 @@ LINE
   8
 0
  10
-625.5000000000001
+581.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-625.5000000000001
+581.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -10501,15 +10915,15 @@ LINE
   8
 0
  10
-625.5000000000001
+581.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-622.5000000000001
+578.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -10519,15 +10933,15 @@ LINE
   8
 0
  10
-618.2500000000001
+574.5585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -10537,15 +10951,15 @@ LINE
   8
 0
  10
-609.7500000000001
+566.0585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -10555,15 +10969,15 @@ LINE
   8
 0
  10
-609.7500000000001
+566.0585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -10573,15 +10987,15 @@ LINE
   8
 0
  10
-618.2500000000001
+574.5585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -10591,15 +11005,15 @@ LINE
   8
 0
  10
-609.7500000000001
+566.0585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -10609,15 +11023,15 @@ LINE
   8
 0
  10
-618.2500000000001
+574.5585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -10627,15 +11041,15 @@ LINE
   8
 0
  10
-618.2500000000001
+574.5585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -10645,15 +11059,15 @@ LINE
   8
 0
  10
-609.7500000000001
+566.0585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -10663,15 +11077,15 @@ LINE
   8
 0
  10
-594.5000000000001
+550.8085560697231
  20
-173.39946509090913
+158.59090909090912
  30
 0.0
  11
-599.5
+555.808556069723
  21
-173.39946509090913
+158.59090909090912
  31
 0.0
   0
@@ -10681,15 +11095,15 @@ LINE
   8
 0
  10
-599.5
+555.808556069723
  20
-173.39946509090913
+158.59090909090912
  30
 0.0
  11
-599.5
+555.808556069723
  21
-184.49037418181823
+169.68181818181822
  31
 0.0
   0
@@ -10699,15 +11113,15 @@ LINE
   8
 0
  10
-599.5
+555.808556069723
  20
-184.49037418181823
+169.68181818181822
  30
 0.0
  11
-594.5000000000001
+550.8085560697231
  21
-184.49037418181823
+169.68181818181822
  31
 0.0
   0
@@ -10717,15 +11131,15 @@ LINE
   8
 0
  10
-594.5000000000001
+550.8085560697231
  20
-201.12673781818185
+186.31818181818184
  30
 0.0
  11
-599.5
+555.808556069723
  21
-201.12673781818185
+186.31818181818184
  31
 0.0
   0
@@ -10735,15 +11149,15 @@ LINE
   8
 0
  10
-599.5
+555.808556069723
  20
-201.12673781818185
+186.31818181818184
  30
 0.0
  11
-599.5
+555.808556069723
  21
-212.21764690909094
+197.40909090909093
  31
 0.0
   0
@@ -10753,15 +11167,15 @@ LINE
   8
 0
  10
-599.5
+555.808556069723
  20
-212.21764690909094
+197.40909090909093
  30
 0.0
  11
-594.5000000000001
+550.8085560697231
  21
-212.21764690909094
+197.40909090909093
  31
 0.0
   0
@@ -10771,15 +11185,15 @@ LINE
   8
 0
  10
-619.7500000000001
+576.0585560697231
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-623.25
+579.558556069723
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -10789,15 +11203,15 @@ LINE
   8
 0
  10
-623.25
+579.558556069723
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-623.25
+579.558556069723
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
@@ -10807,15 +11221,15 @@ LINE
   8
 0
  10
-623.25
+579.558556069723
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-619.7500000000001
+576.0585560697231
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
diff --git a/rocolib/output/ServoStackBatteryMount/graph-lasercutter.svg b/rocolib/output/ServoStackBatteryMount/graph-lasercutter.svg
index b8f9ceeea0a3cff3f7472119d3844473dca73131..a420a749c58e2659b42758225fbb0743c5d8e8bf 100644
--- a/rocolib/output/ServoStackBatteryMount/graph-lasercutter.svg
+++ b/rocolib/output/ServoStackBatteryMount/graph-lasercutter.svg
@@ -1,550 +1,573 @@
 <?xml version="1.0" encoding="utf-8" ?>
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="223.308556mm" version="1.1" viewBox="0.000000 0.000000 770.000000 223.308556" width="770.000000mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="255.500000mm" version="1.1" viewBox="0.000000 0.000000 726.308556 255.500000" width="726.308556mm">
   <defs/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="229.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="140.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="0.0" y1="140.30855600000004" y2="140.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="140.30855600000004"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="168.0" x2="158.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="134.00000000000003" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="80.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="134.00000000000003" x2="158.00000000000003" y1="80.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="116.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="80.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="35.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="134.00000000000003" y1="30.308556000000017" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="134.00000000000003" y1="30.308556000000017" y2="30.308556000000017"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="35.30855600000002" y2="30.308556000000017"/>
-  <line stroke="#000000" x1="134.00000000000003" x2="114.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="114.00000000000001" x2="134.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="114.00000000000001" x2="114.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="114.00000000000001" x2="90.0" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="90.0" x2="114.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="90.0" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="90.0" x2="70.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="90.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="70.00000000000001" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="60.00000000000001" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="168.0" x2="229.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="150.30855600000004" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="168.0" x2="168.0" y1="114.16993400081472" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.00000000000003" x2="168.0" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.00000000000003" x2="229.00000000000003" y1="90.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="168.0" x2="168.0" y1="54.03131200162941" y2="90.16993400081473"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="90.16993400081473" y2="54.03131200162941"/>
-  <line stroke="#000000" x1="168.0" x2="168.0" y1="44.03131200162941" y2="54.03131200162941"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="168.0" y1="44.03131200162941" y2="44.03131200162941"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="229.00000000000003" y1="54.03131200162941" y2="44.03131200162941"/>
-  <line stroke="#000000" x1="239.00000000000003" x2="229.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#000000" x1="239.00000000000003" x2="239.00000000000003" y1="114.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#000000" x1="229.00000000000003" x2="239.00000000000003" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="168.0" y1="114.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="158.00000000000003" x2="158.00000000000003" y1="90.16993400081472" y2="114.16993400081472"/>
-  <line stroke="#000000" x1="168.0" x2="158.00000000000003" y1="90.16993400081472" y2="90.16993400081472"/>
-  <line stroke="#888888" x1="40.00000000000001" x2="45.0" y1="142.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="45.0" x2="40.00000000000001" y1="142.80855600000004" y2="147.80855600000004"/>
-  <line stroke="#888888" x1="40.00000000000001" x2="20.000000000000004" y1="147.80855600000004" y2="147.80855600000004"/>
-  <line stroke="#888888" x1="20.000000000000004" x2="15.000000000000002" y1="147.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="15.000000000000002" x2="20.000000000000004" y1="142.80855600000004" y2="142.80855600000004"/>
-  <line stroke="#888888" x1="150.25" x2="150.25" y1="139.2252226666667" y2="127.39188933333337"/>
-  <line stroke="#888888" x1="150.25" x2="150.75000000000003" y1="127.39188933333337" y2="127.39188933333337"/>
-  <line stroke="#888888" x1="150.75000000000003" x2="150.75000000000003" y1="127.39188933333337" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="150.75000000000003" x2="150.25" y1="139.2252226666667" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="150.0" x2="152.5" y1="31.558556000000014" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="152.5" x2="150.0" y1="31.558556000000014" y2="34.05855600000001"/>
-  <line stroke="#888888" x1="150.0" x2="142.00000000000003" y1="34.05855600000001" y2="34.05855600000001"/>
-  <line stroke="#888888" x1="142.00000000000003" x2="139.50000000000003" y1="34.05855600000001" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="139.50000000000003" x2="142.00000000000003" y1="31.558556000000014" y2="31.558556000000014"/>
-  <line stroke="#888888" x1="115.00000000000001" x2="119.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="119.00000000000001" x2="119.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="119.00000000000001" x2="115.00000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="115.00000000000001" x2="115.00000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="127.00000000000001" x2="131.0" y1="128.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="131.0" x2="131.0" y1="128.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="131.0" x2="127.00000000000001" y1="137.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="127.00000000000001" x2="127.00000000000001" y1="137.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="90.50000000000001" x2="113.50000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="113.50000000000001" x2="113.50000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="113.50000000000001" x2="90.50000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="85.00000000000001" x2="89.00000000000001" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="89.00000000000001" x2="89.00000000000001" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="89.00000000000001" x2="85.00000000000001" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="85.00000000000001" x2="85.00000000000001" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="62.50000000000001" x2="67.50000000000001" y1="127.64188933333337" y2="127.64188933333337"/>
-  <line stroke="#888888" x1="67.50000000000001" x2="67.50000000000001" y1="127.64188933333337" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="67.50000000000001" x2="62.50000000000001" y1="138.9752226666667" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="186.00000000000003" x2="197.00000000000003" y1="95.66993400081472" y2="95.66993400081472"/>
-  <line stroke="#888888" x1="197.00000000000003" x2="197.00000000000003" y1="95.66993400081472" y2="108.66993400081472"/>
-  <line stroke="#888888" x1="197.00000000000003" x2="186.00000000000003" y1="108.66993400081472" y2="108.66993400081472"/>
-  <line stroke="#888888" x1="186.00000000000003" x2="186.00000000000003" y1="108.66993400081472" y2="95.66993400081472"/>
-  <line stroke="#888888" x1="217.50000000000003" x2="223.50000000000003" y1="97.16993400081472" y2="97.16993400081472"/>
-  <line stroke="#888888" x1="223.50000000000003" x2="223.50000000000003" y1="97.16993400081472" y2="107.16993400081472"/>
-  <line stroke="#888888" x1="223.50000000000003" x2="217.50000000000003" y1="107.16993400081472" y2="107.16993400081472"/>
-  <line stroke="#888888" x1="217.50000000000003" x2="217.50000000000003" y1="107.16993400081472" y2="97.16993400081472"/>
-  <line stroke="#888888" x1="217.90909090909093" x2="217.90909090909093" y1="46.5313120016294" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="217.90909090909093" x2="206.81818181818184" y1="51.53131200162941" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="206.81818181818184" x2="206.81818181818184" y1="51.53131200162941" y2="46.5313120016294"/>
-  <line stroke="#888888" x1="190.18181818181822" x2="190.18181818181822" y1="46.5313120016294" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="190.18181818181822" x2="179.09090909090912" y1="51.53131200162941" y2="51.53131200162941"/>
-  <line stroke="#888888" x1="179.09090909090912" x2="179.09090909090912" y1="51.53131200162941" y2="46.5313120016294"/>
-  <line stroke="#888888" x1="236.50000000000003" x2="231.50000000000003" y1="106.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#888888" x1="231.50000000000003" x2="231.50000000000003" y1="106.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="231.50000000000003" x2="236.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="160.50000000000003" x2="165.50000000000003" y1="98.16993400081472" y2="98.16993400081472"/>
-  <line stroke="#888888" x1="165.50000000000003" x2="165.50000000000003" y1="98.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#888888" x1="165.50000000000003" x2="160.50000000000003" y1="106.16993400081472" y2="106.16993400081472"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="478.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="249.00000000000003" x2="478.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="249.00000000000003" x2="249.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="310.0" x2="249.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="320.00000000000006" x2="310.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="344.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="249.00000000000003" x2="249.00000000000003" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="320.00000000000006" x2="320.00000000000006" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.00000000000006" x2="344.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="320.00000000000006" x2="320.00000000000006" y1="80.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="320.00000000000006" x2="344.00000000000006" y1="80.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="344.00000000000006" x2="344.00000000000006" y1="116.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="344.00000000000006" x2="344.00000000000006" y1="80.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="320.00000000000006" x2="320.00000000000006" y1="35.30855600000002" y2="80.30855600000002"/>
-  <line stroke="#000000" x1="344.00000000000006" x2="320.00000000000006" y1="35.30855600000002" y2="35.30855600000002"/>
-  <line stroke="#000000" x1="344.00000000000006" x2="364.0" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="364.0" x2="344.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="364.0" x2="364.0" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="364.0" x2="388.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="388.00000000000006" x2="364.0" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="388.00000000000006" x2="388.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="388.00000000000006" x2="408.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="408.00000000000006" x2="388.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="408.00000000000006" x2="408.00000000000006" y1="116.30855600000002" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="408.00000000000006" y1="116.30855600000002" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="150.30855600000004" y2="116.30855600000002"/>
-  <line stroke="#000000" x1="408.00000000000006" x2="418.00000000000006" y1="150.30855600000004" y2="150.30855600000004"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="478.00000000000006" y1="150.30855600000004" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="88.65427796513858" y2="150.30855600000004"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="418.00000000000006" x2="478.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="61.65427796513857" y2="88.65427796513858"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="478.00000000000006" x2="418.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="478.00000000000006" x2="478.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="418.00000000000006" y1="-6.972288701945219e-08" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="418.00000000000006" y1="-6.972288701945219e-08" y2="-6.972288701945219e-08"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="478.00000000000006" y1="61.65427796513857" y2="-6.972288701945219e-08"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="495.00000000000006" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="495.00000000000006" x2="478.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="495.00000000000006" x2="495.00000000000006" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="495.00000000000006" x2="555.0" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="555.0" x2="495.00000000000006" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="555.0" x2="555.0" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="555.0" x2="572.0" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="572.0" x2="555.0" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="572.0" x2="572.0" y1="61.65427796513857" y2="88.65427796513858"/>
-  <line stroke="#000000" x1="582.0" x2="572.0" y1="61.65427796513857" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="582.0" x2="582.0" y1="88.65427796513858" y2="61.65427796513857"/>
-  <line stroke="#000000" x1="572.0" x2="582.0" y1="88.65427796513858" y2="88.65427796513858"/>
-  <line stroke="#888888" x1="271.4318181818182" x2="259.8409090909092" y1="158.058556" y2="158.058556"/>
-  <line stroke="#888888" x1="259.8409090909092" x2="259.8409090909092" y1="158.058556" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="259.8409090909092" x2="271.4318181818182" y1="157.55855600000004" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="271.4318181818182" x2="271.4318181818182" y1="157.55855600000004" y2="158.058556"/>
-  <line stroke="#888888" x1="299.159090909091" x2="287.56818181818187" y1="158.058556" y2="158.058556"/>
-  <line stroke="#888888" x1="287.56818181818187" x2="287.56818181818187" y1="158.058556" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="287.56818181818187" x2="299.159090909091" y1="157.55855600000004" y2="157.55855600000004"/>
-  <line stroke="#888888" x1="299.159090909091" x2="299.159090909091" y1="157.55855600000004" y2="158.058556"/>
-  <line stroke="#888888" x1="327.75" x2="327.75" y1="127.39188933333335" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="327.75" x2="327.25" y1="139.2252226666667" y2="139.2252226666667"/>
-  <line stroke="#888888" x1="327.25" x2="327.25" y1="139.2252226666667" y2="127.39188933333335"/>
-  <line stroke="#888888" x1="327.25" x2="327.75" y1="127.39188933333335" y2="127.39188933333335"/>
-  <line stroke="#888888" x1="336.25" x2="327.75" y1="39.30855600000002" y2="39.30855600000002"/>
-  <line stroke="#888888" x1="327.75" x2="327.75" y1="39.30855600000002" y2="38.80855600000002"/>
-  <line stroke="#888888" x1="327.75" x2="336.25" y1="38.80855600000002" y2="38.80855600000002"/>
-  <line stroke="#888888" x1="336.25" x2="336.25" y1="38.80855600000002" y2="39.30855600000002"/>
-  <line stroke="#888888" x1="363.00000000000006" x2="359.0" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="359.0" x2="359.0" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="359.0" x2="363.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="363.00000000000006" x2="363.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="351.0" x2="347.00000000000006" y1="137.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="347.00000000000006" x2="347.00000000000006" y1="137.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="347.00000000000006" x2="351.0" y1="128.808556" y2="128.808556"/>
-  <line stroke="#888888" x1="351.0" x2="351.0" y1="128.808556" y2="137.808556"/>
-  <line stroke="#888888" x1="387.50000000000006" x2="364.5" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="364.5" x2="364.5" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="364.5" x2="387.50000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="387.50000000000006" x2="387.50000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="393.00000000000006" x2="389.00000000000006" y1="139.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="389.00000000000006" x2="389.00000000000006" y1="139.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="389.00000000000006" x2="393.00000000000006" y1="127.30855600000004" y2="127.30855600000004"/>
-  <line stroke="#888888" x1="393.00000000000006" x2="393.00000000000006" y1="127.30855600000004" y2="139.30855600000004"/>
-  <line stroke="#888888" x1="415.50000000000006" x2="410.50000000000006" y1="138.9752226666667" y2="138.9752226666667"/>
-  <line stroke="#888888" x1="410.50000000000006" x2="410.50000000000006" y1="138.9752226666667" y2="127.64188933333335"/>
-  <line stroke="#888888" x1="410.50000000000006" x2="415.50000000000006" y1="127.64188933333335" y2="127.64188933333335"/>
-  <line stroke="#888888" x1="481.00000000000006" x2="475.00000000000006" y1="84.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="475.00000000000006" x2="475.00000000000006" y1="84.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="475.00000000000006" x2="481.00000000000006" y1="66.15427796513858" y2="66.15427796513858"/>
-  <line stroke="#888888" x1="481.00000000000006" x2="481.00000000000006" y1="66.15427796513858" y2="84.15427796513858"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.75000000000006" y1="70.40427796513856" y2="79.90427796513858"/>
-  <line stroke="#888888" x1="425.75000000000006" x2="425.25000000000006" y1="79.90427796513858" y2="79.90427796513858"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.25000000000006" y1="79.90427796513858" y2="70.40427796513856"/>
-  <line stroke="#888888" x1="425.25000000000006" x2="425.75000000000006" y1="70.40427796513856" y2="70.40427796513856"/>
-  <line stroke="#888888" x1="458.25000000000006" x2="437.75000000000006" y1="7.749999930277114" y2="7.749999930277114"/>
-  <line stroke="#888888" x1="437.75000000000006" x2="437.75000000000006" y1="7.749999930277114" y2="7.249999930277114"/>
-  <line stroke="#888888" x1="437.75000000000006" x2="458.25000000000006" y1="7.249999930277114" y2="7.249999930277114"/>
-  <line stroke="#888888" x1="458.25000000000006" x2="458.25000000000006" y1="7.249999930277114" y2="7.749999930277114"/>
-  <line stroke="#888888" x1="579.5000000000001" x2="574.5" y1="79.65427796513858" y2="79.65427796513858"/>
-  <line stroke="#888888" x1="574.5" x2="574.5" y1="79.65427796513858" y2="70.65427796513858"/>
-  <line stroke="#888888" x1="574.5" x2="579.5000000000001" y1="70.65427796513858" y2="70.65427796513858"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="625.0000000000001" x2="686.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="686.0000000000001" x2="686.0000000000001" y1="138.30855600000004" y2="162.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="686.0000000000001" x2="625.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="625.0000000000001" x2="625.0000000000001" y1="162.308556" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="625.0000000000001" x2="625.0000000000001" y1="131.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="685.0000000000001" x2="625.0000000000001" y1="131.30855600000004" y2="131.30855600000004"/>
-  <line stroke="#000000" x1="685.0000000000001" x2="685.0000000000001" y1="138.30855600000004" y2="131.30855600000004"/>
-  <line stroke="#000000" x1="693.0000000000001" x2="686.0000000000001" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="693.0000000000001" x2="693.0000000000001" y1="162.308556" y2="138.30855600000004"/>
-  <line stroke="#000000" x1="686.0000000000001" x2="693.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="686.0000000000001" x2="686.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="626.0000000000001" x2="686.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="626.0000000000001" x2="626.0000000000001" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="710.0" x2="686.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="710.0" x2="710.0" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="686.0000000000001" x2="710.0" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="770.0000000000001" x2="710.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="770.0000000000001" x2="770.0000000000001" y1="223.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="710.0" x2="770.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="626.0000000000001" x2="602.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="602.0" x2="626.0000000000001" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="602.0" x2="602.0" y1="223.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="592.0" x2="602.0" y1="223.30855600000004" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="592.0" x2="592.0" y1="162.308556" y2="223.30855600000004"/>
-  <line stroke="#000000" x1="602.0" x2="592.0" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="618.0" x2="625.0000000000001" y1="162.308556" y2="162.308556"/>
-  <line stroke="#000000" x1="618.0" x2="618.0" y1="138.30855600000004" y2="162.308556"/>
-  <line stroke="#000000" x1="625.0000000000001" x2="618.0" y1="138.30855600000004" y2="138.30855600000004"/>
-  <line stroke="#888888" x1="674.0909090909092" x2="677.5909090909091" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="677.5909090909091" x2="674.0909090909092" y1="133.058556" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="674.0909090909092" x2="663.1818181818181" y1="136.55855600000004" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="663.1818181818181" x2="659.6818181818184" y1="136.55855600000004" y2="133.058556"/>
-  <line stroke="#888888" x1="659.6818181818184" x2="663.1818181818181" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="646.818181818182" x2="650.318181818182" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="650.318181818182" x2="646.818181818182" y1="133.058556" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="646.818181818182" x2="635.909090909091" y1="136.55855600000004" y2="136.55855600000004"/>
-  <line stroke="#888888" x1="635.909090909091" x2="632.4090909090909" y1="136.55855600000004" y2="133.058556"/>
-  <line stroke="#888888" x1="632.4090909090909" x2="635.909090909091" y1="133.058556" y2="133.058556"/>
-  <line stroke="#888888" x1="691.2500000000001" x2="687.75" y1="154.30855600000004" y2="154.30855600000004"/>
-  <line stroke="#888888" x1="687.75" x2="687.75" y1="154.30855600000004" y2="146.308556"/>
-  <line stroke="#888888" x1="687.75" x2="691.2500000000001" y1="146.308556" y2="146.308556"/>
-  <line stroke="#888888" x1="633.5000000000001" x2="633.5000000000001" y1="213.80855600000004" y2="195.80855600000004"/>
-  <line stroke="#888888" x1="633.5000000000001" x2="668.5000000000001" y1="195.80855600000004" y2="195.80855600000004"/>
-  <line stroke="#888888" x1="668.5000000000001" x2="668.5000000000001" y1="195.80855600000004" y2="213.80855600000004"/>
-  <line stroke="#888888" x1="668.5000000000001" x2="633.5000000000001" y1="213.80855600000004" y2="213.80855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="686.5000000000001" y1="175.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="686.5000000000001" x2="689.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="689.5000000000001" x2="689.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="689.5000000000001" x2="686.5000000000001" y1="175.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="707.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="707.5000000000001" x2="708.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="708.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="708.5000000000001" x2="707.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="687.5000000000001" y1="212.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="687.5000000000001" x2="688.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="688.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="688.5000000000001" x2="687.5000000000001" y1="212.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="706.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="706.5000000000001" x2="709.5" y1="210.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="709.5" x2="709.5" y1="210.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="709.5" x2="706.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="702.2500000000001" x2="693.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="693.7500000000001" x2="693.7500000000001" y1="170.05855600000004" y2="169.558556"/>
-  <line stroke="#888888" x1="693.7500000000001" x2="702.2500000000001" y1="169.558556" y2="169.558556"/>
-  <line stroke="#888888" x1="702.2500000000001" x2="702.2500000000001" y1="169.558556" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="693.7500000000001" x2="702.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="702.2500000000001" x2="702.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="702.2500000000001" x2="693.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="693.7500000000001" x2="693.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="725.0000000000001" x2="725.0000000000001" y1="213.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="725.0000000000001" x2="755.0" y1="200.30855600000004" y2="200.30855600000004"/>
-  <line stroke="#888888" x1="755.0" x2="755.0" y1="200.30855600000004" y2="213.30855600000004"/>
-  <line stroke="#888888" x1="755.0" x2="725.0000000000001" y1="213.30855600000004" y2="213.30855600000004"/>
-  <line stroke="#888888" x1="732.0681818181819" x2="720.6590909090909" y1="167.80855600000004" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="720.6590909090909" x2="720.6590909090909" y1="167.80855600000004" y2="167.308556"/>
-  <line stroke="#888888" x1="720.6590909090909" x2="732.0681818181819" y1="167.308556" y2="167.308556"/>
-  <line stroke="#888888" x1="732.0681818181819" x2="732.0681818181819" y1="167.308556" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="759.3409090909092" x2="747.9318181818181" y1="167.80855600000004" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="747.9318181818181" x2="747.9318181818181" y1="167.80855600000004" y2="167.308556"/>
-  <line stroke="#888888" x1="747.9318181818181" x2="759.3409090909092" y1="167.308556" y2="167.308556"/>
-  <line stroke="#888888" x1="759.3409090909092" x2="759.3409090909092" y1="167.308556" y2="167.80855600000004"/>
-  <line stroke="#888888" x1="762.2500000000001" x2="762.2500000000001" y1="184.74037418181823" y2="173.14946509090913"/>
-  <line stroke="#888888" x1="762.2500000000001" x2="762.7500000000001" y1="173.14946509090913" y2="173.14946509090913"/>
-  <line stroke="#888888" x1="762.7500000000001" x2="762.7500000000001" y1="173.14946509090913" y2="184.74037418181823"/>
-  <line stroke="#888888" x1="762.7500000000001" x2="762.2500000000001" y1="184.74037418181823" y2="184.74037418181823"/>
-  <line stroke="#888888" x1="762.2500000000001" x2="762.2500000000001" y1="212.46764690909094" y2="200.87673781818185"/>
-  <line stroke="#888888" x1="762.2500000000001" x2="762.7500000000001" y1="200.87673781818185" y2="200.87673781818185"/>
-  <line stroke="#888888" x1="762.7500000000001" x2="762.7500000000001" y1="200.87673781818185" y2="212.46764690909094"/>
-  <line stroke="#888888" x1="762.7500000000001" x2="762.2500000000001" y1="212.46764690909094" y2="212.46764690909094"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="602.5000000000001" y1="175.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="602.5000000000001" x2="605.5000000000001" y1="172.55855600000004" y2="172.55855600000004"/>
-  <line stroke="#888888" x1="605.5000000000001" x2="605.5000000000001" y1="172.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="605.5000000000001" x2="602.5000000000001" y1="175.55855600000004" y2="175.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="174.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="173.55855600000004" y2="173.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="173.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="174.55855600000004" y2="174.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="177.05855600000004" y2="176.058556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="176.058556" y2="176.058556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="176.058556" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="177.05855600000004" y2="177.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="179.55855600000004" y2="178.558556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="178.558556" y2="178.558556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="178.558556" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="179.55855600000004" y2="179.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="182.05855600000004" y2="181.058556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="181.058556" y2="181.058556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="181.058556" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="182.05855600000004" y2="182.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="184.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="183.55855600000004" y2="183.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="183.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="184.55855600000004" y2="184.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="187.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="186.05855600000004" y2="186.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="186.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="187.05855600000004" y2="187.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="189.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="188.55855600000004" y2="188.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="188.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="189.55855600000004" y2="189.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="192.058556" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="191.05855600000004" y2="191.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="191.05855600000004" y2="192.058556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="192.058556" y2="192.058556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="194.558556" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="193.55855600000004" y2="193.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="193.55855600000004" y2="194.558556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="194.558556" y2="194.558556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="197.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="196.05855600000004" y2="196.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="196.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="197.05855600000004" y2="197.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="199.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="198.55855600000004" y2="198.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="198.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="199.55855600000004" y2="199.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="202.05855600000004" y2="201.058556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="201.058556" y2="201.058556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="201.058556" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="202.05855600000004" y2="202.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="204.55855600000004" y2="203.558556"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="203.558556" y2="203.558556"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="203.558556" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="204.55855600000004" y2="204.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="207.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="206.05855600000004" y2="206.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="206.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="207.05855600000004" y2="207.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="623.5000000000001" y1="209.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="623.5000000000001" x2="624.5000000000001" y1="208.55855600000004" y2="208.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="624.5000000000001" y1="208.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="624.5000000000001" x2="623.5000000000001" y1="209.55855600000004" y2="209.55855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="603.5000000000001" y1="212.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="603.5000000000001" x2="604.5000000000001" y1="211.05855600000004" y2="211.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="604.5000000000001" y1="211.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="604.5000000000001" x2="603.5000000000001" y1="212.05855600000004" y2="212.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="622.5000000000001" y1="213.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="622.5000000000001" x2="625.5000000000001" y1="210.05855600000004" y2="210.05855600000004"/>
-  <line stroke="#888888" x1="625.5000000000001" x2="625.5000000000001" y1="210.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="625.5000000000001" x2="622.5000000000001" y1="213.05855600000004" y2="213.05855600000004"/>
-  <line stroke="#888888" x1="618.2500000000001" x2="609.7500000000001" y1="170.05855600000004" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="609.7500000000001" x2="609.7500000000001" y1="170.05855600000004" y2="169.558556"/>
-  <line stroke="#888888" x1="609.7500000000001" x2="618.2500000000001" y1="169.558556" y2="169.558556"/>
-  <line stroke="#888888" x1="618.2500000000001" x2="618.2500000000001" y1="169.558556" y2="170.05855600000004"/>
-  <line stroke="#888888" x1="609.7500000000001" x2="618.2500000000001" y1="217.80855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="618.2500000000001" x2="618.2500000000001" y1="217.80855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="618.2500000000001" x2="609.7500000000001" y1="218.30855600000004" y2="218.30855600000004"/>
-  <line stroke="#888888" x1="609.7500000000001" x2="609.7500000000001" y1="218.30855600000004" y2="217.80855600000004"/>
-  <line stroke="#888888" x1="594.5000000000001" x2="599.5" y1="173.39946509090913" y2="173.39946509090913"/>
-  <line stroke="#888888" x1="599.5" x2="599.5" y1="173.39946509090913" y2="184.49037418181823"/>
-  <line stroke="#888888" x1="599.5" x2="594.5000000000001" y1="184.49037418181823" y2="184.49037418181823"/>
-  <line stroke="#888888" x1="594.5000000000001" x2="599.5" y1="201.12673781818185" y2="201.12673781818185"/>
-  <line stroke="#888888" x1="599.5" x2="599.5" y1="201.12673781818185" y2="212.21764690909094"/>
-  <line stroke="#888888" x1="599.5" x2="594.5000000000001" y1="212.21764690909094" y2="212.21764690909094"/>
-  <line stroke="#888888" x1="619.7500000000001" x2="623.25" y1="146.308556" y2="146.308556"/>
-  <line stroke="#888888" x1="623.25" x2="623.25" y1="146.308556" y2="154.30855600000004"/>
-  <line stroke="#888888" x1="623.25" x2="619.7500000000001" y1="154.30855600000004" y2="154.30855600000004"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="98.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="160.30855606972293" y1="166.0" y2="166.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="98.65427803486146" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="160.30855606972293" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="170.30855606972293" x2="170.30855606972293" y1="166.0" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="160.30855606972293" x2="170.30855606972293" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="98.65427803486146" y1="166.0" y2="166.0"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="71.65427803486145" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="71.65427803486145" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="10.000000000000002" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="166.0" y2="166.0"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="105.00000000000001" y2="166.0"/>
+  <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="88.00000000000001" y2="105.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="88.00000000000001" y2="88.00000000000001"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="27.000000000000004" y2="88.00000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="98.65427803486146" x2="71.65427803486145" y1="27.000000000000004" y2="27.000000000000004"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="10.000000000000002" y2="27.000000000000004"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="71.65427803486145" x2="98.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="71.65427803486145" x2="71.65427803486145" y1="0.0" y2="10.000000000000002"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="71.65427803486145" y1="0.0" y2="0.0"/>
+  <line stroke="#000000" x1="98.65427803486146" x2="98.65427803486146" y1="10.000000000000002" y2="0.0"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="154.90909090909093" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="143.8181818181818" y2="143.8181818181818"/>
+  <line stroke="#888888" x1="167.80855606972293" x2="162.80855606972293" y1="127.1818181818182" y2="127.1818181818182"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="162.80855606972293" y1="127.1818181818182" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="162.80855606972293" x2="167.80855606972293" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="94.15427803486146" y1="102.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="94.15427803486146" x2="76.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="76.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="76.15427803486145" x2="94.15427803486146" y1="102.50000000000001" y2="102.50000000000001"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="89.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="89.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="89.90427803486145" x2="80.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="80.40427803486146" x2="80.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="116.09090909090911" y2="116.09090909090911"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="116.09090909090911" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="127.18181818181822" y2="127.18181818181822"/>
+  <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="143.81818181818184" y2="143.81818181818184"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="143.81818181818184" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="154.90909090909093" y2="154.90909090909093"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="89.65427803486146" y1="2.5000000000000004" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="89.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/>
+  <line stroke="#888888" x1="80.65427803486146" x2="80.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="190.30855606972293" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="251.30855606972293" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="359.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="359.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="261.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="359.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="285.3085560697229" x2="285.3085560697229" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="285.3085560697229" y1="205.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="285.3085560697229" x2="261.30855606972295" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="169.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="205.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="285.3085560697229" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="285.3085560697229" y1="255.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="285.3085560697229" y1="255.50000000000003" y2="255.50000000000003"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="250.50000000000003" y2="255.50000000000003"/>
+  <line stroke="#000000" x1="285.3085560697229" x2="305.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="305.30855606972295" x2="285.3085560697229" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="305.30855606972295" x2="305.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="305.30855606972295" x2="329.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="329.30855606972295" x2="305.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="329.30855606972295" x2="329.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="329.30855606972295" x2="349.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="349.30855606972295" x2="329.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="349.30855606972295" x2="349.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="349.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="359.30855606972295" x2="359.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="349.30855606972295" x2="359.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="251.30855606972293" x2="190.30855606972293" y1="171.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="135.50000000000003" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="251.30855606972293" y1="171.63862199918535" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.30855606972293" x2="251.30855606972293" y1="195.63862199918535" y2="195.63862199918535"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.30855606972293" x2="190.30855606972293" y1="195.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="251.30855606972293" y1="231.77724399837064" y2="195.63862199918532"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="195.63862199918532" y2="231.77724399837064"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="251.30855606972293" y1="241.7772439983706" y2="231.77724399837064"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="251.30855606972293" y1="241.7772439983706" y2="241.7772439983706"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="190.30855606972293" y1="231.77724399837064" y2="241.7772439983706"/>
+  <line stroke="#000000" x1="180.3085560697229" x2="190.30855606972293" y1="195.63862199918535" y2="195.63862199918535"/>
+  <line stroke="#000000" x1="180.3085560697229" x2="180.3085560697229" y1="171.63862199918535" y2="195.63862199918535"/>
+  <line stroke="#000000" x1="190.30855606972293" x2="180.3085560697229" y1="171.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="251.30855606972293" y1="171.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="261.30855606972295" x2="261.30855606972295" y1="195.63862199918535" y2="171.63862199918535"/>
+  <line stroke="#000000" x1="251.30855606972293" x2="261.30855606972295" y1="195.63862199918535" y2="195.63862199918535"/>
+  <line stroke="#888888" x1="212.7403742515411" x2="201.14946516063202" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="201.14946516063202" x2="201.14946516063202" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="201.14946516063202" x2="212.7403742515411" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="212.7403742515411" x2="212.7403742515411" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="240.4676469788138" x2="228.87673788790474" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="228.87673788790474" x2="228.87673788790474" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="228.87673788790474" x2="240.4676469788138" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="240.4676469788138" x2="240.4676469788138" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="269.0585560697229" x2="269.0585560697229" y1="146.58333333333337" y2="158.41666666666669"/>
+  <line stroke="#888888" x1="269.0585560697229" x2="268.55855606972295" y1="158.41666666666669" y2="158.41666666666669"/>
+  <line stroke="#888888" x1="268.55855606972295" x2="268.55855606972295" y1="158.41666666666669" y2="146.58333333333337"/>
+  <line stroke="#888888" x1="268.55855606972295" x2="269.0585560697229" y1="146.58333333333337" y2="146.58333333333337"/>
+  <line stroke="#888888" x1="269.3085560697229" x2="266.8085560697229" y1="254.25000000000003" y2="254.25000000000003"/>
+  <line stroke="#888888" x1="266.8085560697229" x2="269.3085560697229" y1="254.25000000000003" y2="251.75000000000003"/>
+  <line stroke="#888888" x1="269.3085560697229" x2="277.30855606972295" y1="251.75000000000003" y2="251.75000000000003"/>
+  <line stroke="#888888" x1="277.30855606972295" x2="279.8085560697229" y1="251.75000000000003" y2="254.25000000000003"/>
+  <line stroke="#888888" x1="279.8085560697229" x2="277.30855606972295" y1="254.25000000000003" y2="254.25000000000003"/>
+  <line stroke="#888888" x1="304.30855606972295" x2="300.30855606972295" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="300.30855606972295" x2="300.30855606972295" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="300.30855606972295" x2="304.30855606972295" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="304.30855606972295" x2="304.30855606972295" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="292.30855606972295" x2="288.3085560697229" y1="157.0" y2="157.0"/>
+  <line stroke="#888888" x1="288.3085560697229" x2="288.3085560697229" y1="157.0" y2="148.0"/>
+  <line stroke="#888888" x1="288.3085560697229" x2="292.30855606972295" y1="148.0" y2="148.0"/>
+  <line stroke="#888888" x1="292.30855606972295" x2="292.30855606972295" y1="148.0" y2="157.0"/>
+  <line stroke="#888888" x1="328.80855606972295" x2="305.80855606972295" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="305.80855606972295" x2="305.80855606972295" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="305.80855606972295" x2="328.80855606972295" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="328.80855606972295" x2="328.80855606972295" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="334.3085560697229" x2="330.3085560697229" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="330.3085560697229" x2="330.3085560697229" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="330.3085560697229" x2="334.3085560697229" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="334.3085560697229" x2="334.3085560697229" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="356.80855606972295" x2="351.80855606972295" y1="158.16666666666669" y2="158.16666666666669"/>
+  <line stroke="#888888" x1="351.80855606972295" x2="351.80855606972295" y1="158.16666666666669" y2="146.83333333333337"/>
+  <line stroke="#888888" x1="351.80855606972295" x2="356.80855606972295" y1="146.83333333333337" y2="146.83333333333337"/>
+  <line stroke="#888888" x1="233.30855606972293" x2="222.30855606972293" y1="190.13862199918535" y2="190.13862199918535"/>
+  <line stroke="#888888" x1="222.30855606972293" x2="222.30855606972293" y1="190.13862199918535" y2="177.13862199918535"/>
+  <line stroke="#888888" x1="222.30855606972293" x2="233.30855606972293" y1="177.13862199918535" y2="177.13862199918535"/>
+  <line stroke="#888888" x1="233.30855606972293" x2="233.30855606972293" y1="177.13862199918535" y2="190.13862199918535"/>
+  <line stroke="#888888" x1="201.80855606972293" x2="195.8085560697229" y1="188.63862199918535" y2="188.63862199918535"/>
+  <line stroke="#888888" x1="195.8085560697229" x2="195.8085560697229" y1="188.63862199918535" y2="178.63862199918535"/>
+  <line stroke="#888888" x1="195.8085560697229" x2="201.80855606972293" y1="178.63862199918535" y2="178.63862199918535"/>
+  <line stroke="#888888" x1="201.80855606972293" x2="201.80855606972293" y1="178.63862199918535" y2="188.63862199918535"/>
+  <line stroke="#888888" x1="201.399465160632" x2="201.399465160632" y1="239.27724399837064" y2="234.27724399837064"/>
+  <line stroke="#888888" x1="201.399465160632" x2="212.4903742515411" y1="234.27724399837064" y2="234.27724399837064"/>
+  <line stroke="#888888" x1="212.4903742515411" x2="212.4903742515411" y1="234.27724399837064" y2="239.27724399837064"/>
+  <line stroke="#888888" x1="229.12673788790474" x2="229.12673788790474" y1="239.27724399837064" y2="234.27724399837064"/>
+  <line stroke="#888888" x1="229.12673788790474" x2="240.21764697881383" y1="234.27724399837064" y2="234.27724399837064"/>
+  <line stroke="#888888" x1="240.21764697881383" x2="240.21764697881383" y1="234.27724399837064" y2="239.27724399837064"/>
+  <line stroke="#888888" x1="182.80855606972293" x2="187.80855606972293" y1="179.63862199918535" y2="179.63862199918535"/>
+  <line stroke="#888888" x1="187.80855606972293" x2="187.80855606972293" y1="179.63862199918535" y2="187.63862199918535"/>
+  <line stroke="#888888" x1="187.80855606972293" x2="182.80855606972293" y1="187.63862199918535" y2="187.63862199918535"/>
+  <line stroke="#888888" x1="258.80855606972295" x2="253.80855606972293" y1="187.63862199918535" y2="187.63862199918535"/>
+  <line stroke="#888888" x1="253.80855606972293" x2="253.80855606972293" y1="187.63862199918535" y2="179.63862199918535"/>
+  <line stroke="#888888" x1="253.80855606972293" x2="258.80855606972295" y1="179.63862199918535" y2="179.63862199918535"/>
+  <line stroke="#000000" x1="477.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="538.3085560697231" x2="477.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="538.3085560697231" x2="538.3085560697231" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="477.30855606972295" x2="538.3085560697231" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="467.30855606972295" x2="477.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="443.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="538.3085560697231" x2="538.3085560697231" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="467.30855606972295" x2="467.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="443.30855606972295" x2="443.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="467.30855606972295" x2="467.30855606972295" y1="205.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="467.30855606972295" x2="443.30855606972295" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="443.30855606972295" x2="443.30855606972295" y1="169.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="443.30855606972295" x2="443.30855606972295" y1="205.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="467.30855606972295" x2="467.30855606972295" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#000000" x1="443.30855606972295" x2="467.30855606972295" y1="250.50000000000003" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="443.30855606972295" x2="423.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="423.30855606972295" x2="443.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="423.30855606972295" x2="423.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="423.30855606972295" x2="399.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="399.30855606972295" x2="423.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="399.30855606972295" x2="399.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="399.30855606972295" x2="379.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="379.30855606972295" x2="399.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.30855606972295" x2="379.30855606972295" y1="169.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="379.30855606972295" y1="169.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="369.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="169.50000000000003"/>
+  <line stroke="#000000" x1="379.30855606972295" x2="369.30855606972295" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#888888" x1="499.74037425154114" x2="488.1494651606321" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="488.1494651606321" x2="488.1494651606321" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="488.1494651606321" x2="499.74037425154114" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="499.74037425154114" x2="499.74037425154114" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="527.4676469788138" x2="515.8767378879047" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="515.8767378879047" x2="515.8767378879047" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="515.8767378879047" x2="527.4676469788138" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="527.4676469788138" x2="527.4676469788138" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="515.8767378879047" x2="527.4676469788138" y1="127.75000000000001" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="527.4676469788138" x2="527.4676469788138" y1="127.75000000000001" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="527.4676469788138" x2="515.8767378879047" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="515.8767378879047" x2="515.8767378879047" y1="128.25000000000003" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="488.1494651606321" x2="499.74037425154114" y1="127.75000000000001" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="499.74037425154114" x2="499.74037425154114" y1="127.75000000000001" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="499.74037425154114" x2="488.1494651606321" y1="128.25000000000003" y2="128.25000000000003"/>
+  <line stroke="#888888" x1="488.1494651606321" x2="488.1494651606321" y1="128.25000000000003" y2="127.75000000000001"/>
+  <line stroke="#888888" x1="459.55855606972295" x2="459.55855606972295" y1="158.41666666666669" y2="146.58333333333337"/>
+  <line stroke="#888888" x1="459.55855606972295" x2="460.05855606972295" y1="146.58333333333337" y2="146.58333333333337"/>
+  <line stroke="#888888" x1="460.05855606972295" x2="460.05855606972295" y1="146.58333333333337" y2="158.41666666666669"/>
+  <line stroke="#888888" x1="460.05855606972295" x2="459.55855606972295" y1="158.41666666666669" y2="158.41666666666669"/>
+  <line stroke="#888888" x1="451.05855606972295" x2="459.55855606972295" y1="246.50000000000003" y2="246.50000000000003"/>
+  <line stroke="#888888" x1="459.55855606972295" x2="459.55855606972295" y1="246.50000000000003" y2="247.00000000000003"/>
+  <line stroke="#888888" x1="459.55855606972295" x2="451.05855606972295" y1="247.00000000000003" y2="247.00000000000003"/>
+  <line stroke="#888888" x1="451.05855606972295" x2="451.05855606972295" y1="247.00000000000003" y2="246.50000000000003"/>
+  <line stroke="#888888" x1="424.30855606972295" x2="428.30855606972295" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="428.30855606972295" x2="428.30855606972295" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="428.30855606972295" x2="424.30855606972295" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="424.30855606972295" x2="424.30855606972295" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="436.30855606972295" x2="440.30855606972295" y1="148.0" y2="148.0"/>
+  <line stroke="#888888" x1="440.30855606972295" x2="440.30855606972295" y1="148.0" y2="157.0"/>
+  <line stroke="#888888" x1="440.30855606972295" x2="436.30855606972295" y1="157.0" y2="157.0"/>
+  <line stroke="#888888" x1="436.30855606972295" x2="436.30855606972295" y1="157.0" y2="148.0"/>
+  <line stroke="#888888" x1="399.80855606972295" x2="422.80855606972295" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="422.80855606972295" x2="422.80855606972295" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="422.80855606972295" x2="399.80855606972295" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="399.80855606972295" x2="399.80855606972295" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="394.3085560697229" x2="398.3085560697229" y1="146.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="398.3085560697229" x2="398.3085560697229" y1="146.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="398.3085560697229" x2="394.3085560697229" y1="158.50000000000003" y2="158.50000000000003"/>
+  <line stroke="#888888" x1="394.3085560697229" x2="394.3085560697229" y1="158.50000000000003" y2="146.50000000000003"/>
+  <line stroke="#888888" x1="371.80855606972295" x2="376.80855606972295" y1="146.83333333333337" y2="146.83333333333337"/>
+  <line stroke="#888888" x1="376.80855606972295" x2="376.80855606972295" y1="146.83333333333337" y2="158.16666666666669"/>
+  <line stroke="#888888" x1="376.80855606972295" x2="371.80855606972295" y1="158.16666666666669" y2="158.16666666666669"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="581.3085560697231" x2="642.3085560697231" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="642.3085560697231" x2="642.3085560697231" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="642.3085560697231" x2="581.3085560697231" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="581.3085560697231" x2="581.3085560697231" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="581.3085560697231" x2="581.3085560697231" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="641.3085560697231" x2="581.3085560697231" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="641.3085560697231" x2="641.3085560697231" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="649.308556069723" x2="642.3085560697231" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="649.308556069723" x2="649.308556069723" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="642.3085560697231" x2="649.308556069723" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="642.3085560697231" x2="642.3085560697231" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="582.3085560697231" x2="642.3085560697231" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="582.3085560697231" x2="582.3085560697231" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="666.308556069723" x2="642.3085560697231" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="666.308556069723" x2="666.308556069723" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="642.3085560697231" x2="666.308556069723" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="726.3085560697231" x2="666.308556069723" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="726.3085560697231" x2="726.3085560697231" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="666.308556069723" x2="726.3085560697231" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="582.3085560697231" x2="558.308556069723" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="558.308556069723" x2="582.3085560697231" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="558.308556069723" x2="558.308556069723" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="548.308556069723" x2="558.308556069723" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="548.308556069723" x2="548.308556069723" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="558.308556069723" x2="548.308556069723" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="574.308556069723" x2="581.3085560697231" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="574.308556069723" x2="574.308556069723" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="581.3085560697231" x2="574.308556069723" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="630.3994651606322" x2="633.8994651606321" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="633.8994651606321" x2="630.3994651606322" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="630.3994651606322" x2="619.4903742515411" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="619.4903742515411" x2="615.9903742515413" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="615.9903742515413" x2="619.4903742515411" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="603.1267378879049" x2="606.6267378879048" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="606.6267378879048" x2="603.1267378879049" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="603.1267378879049" x2="592.2176469788138" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="592.2176469788138" x2="588.717646978814" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="588.717646978814" x2="592.2176469788138" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="647.5585560697231" x2="644.058556069723" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="644.058556069723" x2="644.058556069723" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="644.058556069723" x2="647.5585560697231" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="589.8085560697231" x2="589.8085560697231" y1="199.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="589.8085560697231" x2="624.8085560697231" y1="181.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="624.8085560697231" x2="624.8085560697231" y1="181.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="624.8085560697231" x2="589.8085560697231" y1="199.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="642.8085560697231" x2="642.8085560697231" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="642.8085560697231" x2="645.8085560697231" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="645.8085560697231" x2="645.8085560697231" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="645.8085560697231" x2="642.8085560697231" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="663.8085560697231" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="663.8085560697231" x2="664.8085560697231" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="664.8085560697231" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="664.8085560697231" x2="663.8085560697231" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="643.8085560697231" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="643.8085560697231" x2="644.8085560697231" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="644.8085560697231" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="644.8085560697231" x2="643.8085560697231" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="662.8085560697231" x2="662.8085560697231" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="662.8085560697231" x2="665.808556069723" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="665.808556069723" x2="665.808556069723" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="665.808556069723" x2="662.8085560697231" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="658.5585560697231" x2="650.0585560697231" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="650.0585560697231" x2="650.0585560697231" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="650.0585560697231" x2="658.5585560697231" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="658.5585560697231" x2="658.5585560697231" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="650.0585560697231" x2="658.5585560697231" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="658.5585560697231" x2="658.5585560697231" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="658.5585560697231" x2="650.0585560697231" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="650.0585560697231" x2="650.0585560697231" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="681.3085560697231" x2="681.3085560697231" y1="198.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="681.3085560697231" x2="711.308556069723" y1="185.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="711.308556069723" x2="711.308556069723" y1="185.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="711.308556069723" x2="681.3085560697231" y1="198.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="688.3767378879048" x2="676.9676469788138" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="676.9676469788138" x2="676.9676469788138" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="676.9676469788138" x2="688.3767378879048" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="688.3767378879048" x2="688.3767378879048" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="715.6494651606322" x2="704.2403742515411" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="704.2403742515411" x2="704.2403742515411" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="704.2403742515411" x2="715.6494651606322" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="715.6494651606322" x2="715.6494651606322" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="718.5585560697231" x2="718.5585560697231" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="718.5585560697231" x2="719.0585560697231" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="719.0585560697231" x2="719.0585560697231" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="719.0585560697231" x2="718.5585560697231" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="718.5585560697231" x2="718.5585560697231" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="718.5585560697231" x2="719.0585560697231" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="719.0585560697231" x2="719.0585560697231" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="719.0585560697231" x2="718.5585560697231" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="558.808556069723" x2="558.808556069723" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="558.808556069723" x2="561.8085560697231" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="561.8085560697231" x2="561.8085560697231" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="561.8085560697231" x2="558.808556069723" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="579.8085560697231" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="579.8085560697231" x2="580.8085560697231" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="580.8085560697231" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="580.8085560697231" x2="579.8085560697231" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="559.8085560697231" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="559.8085560697231" x2="560.8085560697231" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="560.8085560697231" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="560.8085560697231" x2="559.8085560697231" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="578.8085560697231" x2="578.8085560697231" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="578.8085560697231" x2="581.8085560697231" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="581.8085560697231" x2="581.8085560697231" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="581.8085560697231" x2="578.8085560697231" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="574.5585560697231" x2="566.0585560697231" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="566.0585560697231" x2="566.0585560697231" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="566.0585560697231" x2="574.5585560697231" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="574.5585560697231" x2="574.5585560697231" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="566.0585560697231" x2="574.5585560697231" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="574.5585560697231" x2="574.5585560697231" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="574.5585560697231" x2="566.0585560697231" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="566.0585560697231" x2="566.0585560697231" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="550.8085560697231" x2="555.808556069723" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="555.808556069723" x2="555.808556069723" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="555.808556069723" x2="550.8085560697231" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="550.8085560697231" x2="555.808556069723" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="555.808556069723" x2="555.808556069723" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="555.808556069723" x2="550.8085560697231" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="576.0585560697231" x2="579.558556069723" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="579.558556069723" x2="579.558556069723" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="579.558556069723" x2="576.0585560697231" y1="139.50000000000003" y2="139.50000000000003"/>
 </svg>
diff --git a/rocolib/output/ServoStackBatteryMount/graph-model.png b/rocolib/output/ServoStackBatteryMount/graph-model.png
index 45e37fac4a62783ccf7631594ceae5c592652000..554a32fae3bab716379affb3eb027416a1f48715 100644
Binary files a/rocolib/output/ServoStackBatteryMount/graph-model.png and b/rocolib/output/ServoStackBatteryMount/graph-model.png differ
diff --git a/rocolib/output/ServoStackBatteryMount/graph-model.stl b/rocolib/output/ServoStackBatteryMount/graph-model.stl
index 46ca018405cbdcc544bc8d3986b3796da6d89c42..7631dafd4c7247941f476e7eaa2b25708723b139 100644
--- a/rocolib/output/ServoStackBatteryMount/graph-model.stl
+++ b/rocolib/output/ServoStackBatteryMount/graph-model.stl
@@ -1,632 +1,632 @@
 solid python
 facet normal 0 0 0
 outer loop
-vertex 0.1690 -0.0617 0.0000
-vertex 0.2290 -0.0617 0.0000
-vertex 0.2290 0.0000 0.0000
+vertex -0.0308 0.0305 0.0000
+vertex -0.0308 -0.0305 0.0000
+vertex 0.0308 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 0.0000 0.0000
-vertex 0.1690 0.0000 0.0000
-vertex 0.1690 -0.0617 0.0000
+vertex 0.0308 -0.0305 0.0000
+vertex 0.0308 0.0305 0.0000
+vertex -0.0308 0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0807 0.0191
-vertex 0.1690 -0.0807 0.0191
-vertex 0.1690 -0.0807 0.0807
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 0.0305 0.0807
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1690 -0.0807 0.0807
-vertex 0.2290 -0.0807 0.0807
-vertex 0.2290 -0.0807 0.0191
+vertex -0.0499 0.0305 0.0807
+vertex -0.0499 -0.0305 0.0807
+vertex -0.0499 -0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1690 -0.0807 0.0191
-vertex 0.1690 -0.0617 -0.0000
-vertex 0.1690 -0.0737 -0.0120
+vertex -0.0499 0.0305 0.0191
+vertex -0.0308 0.0305 -0.0000
+vertex -0.0428 0.0305 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1690 -0.0737 -0.0120
-vertex 0.1690 -0.0928 0.0071
-vertex 0.1690 -0.0807 0.0191
+vertex -0.0428 0.0305 -0.0120
+vertex -0.0619 0.0305 0.0071
+vertex -0.0499 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1690 -0.0928 0.0071
-vertex 0.1690 -0.0737 -0.0120
-vertex 0.2290 -0.0737 -0.0120
+vertex -0.0619 0.0305 0.0071
+vertex -0.0428 0.0305 -0.0120
+vertex -0.0428 -0.0305 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0737 -0.0120
-vertex 0.2290 -0.0928 0.0071
-vertex 0.1690 -0.0928 0.0071
+vertex -0.0428 -0.0305 -0.0120
+vertex -0.0619 -0.0305 0.0071
+vertex -0.0619 0.0305 0.0071
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0928 0.0071
-vertex 0.2290 -0.0737 -0.0120
-vertex 0.2290 -0.0617 0.0000
+vertex -0.0619 -0.0305 0.0071
+vertex -0.0428 -0.0305 -0.0120
+vertex -0.0308 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0617 0.0000
-vertex 0.2290 -0.0807 0.0191
-vertex 0.2290 -0.0928 0.0071
+vertex -0.0308 -0.0305 0.0000
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0619 -0.0305 0.0071
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2260 -0.0648 0.0032
-vertex 0.2260 -0.0776 0.0159
-vertex 0.2290 -0.0776 0.0159
+vertex -0.0340 -0.0330 0.0032
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0467 -0.0330 0.0159
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0617 0.0000
-vertex 0.2260 -0.0648 0.0032
-vertex 0.2290 -0.0648 0.0032
+vertex -0.0308 -0.0305 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0340 -0.0305 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2260 -0.0648 0.0032
-vertex 0.1690 -0.0617 0.0000
-vertex 0.1690 -0.0807 0.0191
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 0.0305 0.0000
+vertex -0.0499 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1690 -0.0617 0.0000
-vertex 0.2260 -0.0648 0.0032
-vertex 0.2290 -0.0617 0.0000
+vertex -0.0308 0.0305 0.0000
+vertex -0.0340 -0.0270 0.0032
+vertex -0.0308 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2260 -0.0776 0.0159
-vertex 0.1690 -0.0807 0.0191
-vertex 0.2290 -0.0807 0.0191
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 -0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1690 -0.0807 0.0191
-vertex 0.2260 -0.0776 0.0159
-vertex 0.2260 -0.0648 0.0032
+vertex -0.0499 0.0305 0.0191
+vertex -0.0467 -0.0270 0.0159
+vertex -0.0340 -0.0270 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2260 -0.0648 0.0032
-vertex 0.2290 -0.0776 0.0159
-vertex 0.2290 -0.0648 0.0032
+vertex -0.0499 -0.0305 0.0191
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0467 -0.0270 0.0159
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0807 0.0191
-vertex 0.2290 -0.0776 0.0159
-vertex 0.2260 -0.0776 0.0159
+vertex -0.0467 -0.0305 0.0159
+vertex -0.0340 -0.0330 0.0032
+vertex -0.0340 -0.0305 0.0032
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0340 0.0000
-vertex 0.1340 -0.0340 0.0000
-vertex 0.1340 -0.0700 0.0000
+vertex 0.0710 0.0340 0.0000
+vertex 0.0950 0.0340 0.0000
+vertex 0.0950 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0700 0.0000
-vertex 0.1580 -0.0700 0.0000
-vertex 0.1580 -0.0340 0.0000
+vertex 0.0950 0.0700 0.0000
+vertex 0.0710 0.0700 0.0000
+vertex 0.0710 0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 0.0000
-vertex 0.0710 -0.0340 0.0000
-vertex 0.0710 -0.0700 0.0000
+vertex 0.0740 0.0340 0.0000
+vertex 0.0980 0.0340 0.0000
+vertex 0.0980 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0700 0.0000
-vertex 0.0950 -0.0700 0.0000
-vertex 0.0950 -0.0340 0.0000
+vertex 0.0980 0.0700 0.0000
+vertex 0.0740 0.0700 0.0000
+vertex 0.0740 0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0700 0.0450
-vertex 0.1580 -0.0700 0.0450
-vertex 0.1580 -0.0700 0.0000
+vertex 0.0950 0.0700 0.0450
+vertex 0.0710 0.0700 0.0450
+vertex 0.0710 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0700 0.0000
-vertex 0.1340 -0.0700 0.0000
-vertex 0.1340 -0.0700 0.0450
+vertex 0.0710 0.0700 0.0000
+vertex 0.0950 0.0700 0.0000
+vertex 0.0950 0.0700 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0340 -0.0000
-vertex 0.1580 -0.0230 -0.0150
-vertex 0.1580 -0.0110 -0.0150
+vertex 0.0710 0.0340 -0.0000
+vertex 0.0710 0.0230 -0.0150
+vertex 0.0710 0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0230 -0.0150
-vertex 0.1580 -0.0340 -0.0000
-vertex 0.1580 -0.0340 -0.0200
+vertex 0.0710 0.0230 -0.0150
+vertex 0.0710 0.0340 -0.0000
+vertex 0.0710 0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 0.0000 -0.0000
-vertex 0.1580 -0.0110 -0.0150
-vertex 0.1580 0.0000 -0.0200
+vertex 0.0710 0.0000 -0.0000
+vertex 0.0710 0.0110 -0.0150
+vertex 0.0710 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0110 -0.0150
-vertex 0.1580 0.0000 -0.0000
-vertex 0.1580 -0.0340 -0.0000
+vertex 0.0710 0.0110 -0.0150
+vertex 0.0710 0.0000 -0.0000
+vertex 0.0710 0.0340 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0230 -0.0190
-vertex 0.1580 -0.0340 -0.0200
-vertex 0.1580 0.0000 -0.0200
+vertex 0.0710 0.0230 -0.0190
+vertex 0.0710 0.0340 -0.0200
+vertex 0.0710 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0340 -0.0200
-vertex 0.1580 -0.0230 -0.0190
-vertex 0.1580 -0.0230 -0.0150
+vertex 0.0710 0.0340 -0.0200
+vertex 0.0710 0.0230 -0.0190
+vertex 0.0710 0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0110 -0.0190
-vertex 0.1580 0.0000 -0.0200
-vertex 0.1580 -0.0110 -0.0150
+vertex 0.0710 0.0110 -0.0190
+vertex 0.0710 0.0000 -0.0200
+vertex 0.0710 0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 0.0000 -0.0200
-vertex 0.1580 -0.0110 -0.0190
-vertex 0.1580 -0.0230 -0.0190
+vertex 0.0710 0.0000 -0.0200
+vertex 0.0710 0.0110 -0.0190
+vertex 0.0710 0.0230 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0340 -0.0200
-vertex 0.1575 -0.0230 -0.0200
-vertex 0.1575 -0.0110 -0.0200
+vertex 0.0710 0.0340 -0.0200
+vertex 0.0715 0.0230 -0.0200
+vertex 0.0715 0.0110 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1575 -0.0230 -0.0200
-vertex 0.1580 -0.0340 -0.0200
-vertex 0.1340 -0.0340 -0.0200
+vertex 0.0715 0.0230 -0.0200
+vertex 0.0710 0.0340 -0.0200
+vertex 0.0950 0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 0.0000 -0.0200
-vertex 0.1575 -0.0110 -0.0200
-vertex 0.1345 -0.0110 -0.0200
+vertex 0.0710 0.0000 -0.0200
+vertex 0.0715 0.0110 -0.0200
+vertex 0.0945 0.0110 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1575 -0.0110 -0.0200
-vertex 0.1580 0.0000 -0.0200
-vertex 0.1580 -0.0340 -0.0200
+vertex 0.0715 0.0110 -0.0200
+vertex 0.0710 0.0000 -0.0200
+vertex 0.0710 0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1345 -0.0230 -0.0200
-vertex 0.1340 -0.0340 -0.0200
-vertex 0.1340 0.0000 -0.0200
+vertex 0.0945 0.0230 -0.0200
+vertex 0.0950 0.0340 -0.0200
+vertex 0.0950 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0340 -0.0200
-vertex 0.1345 -0.0230 -0.0200
-vertex 0.1575 -0.0230 -0.0200
+vertex 0.0950 0.0340 -0.0200
+vertex 0.0945 0.0230 -0.0200
+vertex 0.0715 0.0230 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1345 -0.0110 -0.0200
-vertex 0.1340 0.0000 -0.0200
-vertex 0.1580 0.0000 -0.0200
+vertex 0.0945 0.0110 -0.0200
+vertex 0.0950 0.0000 -0.0200
+vertex 0.0710 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 0.0000 -0.0200
-vertex 0.1345 -0.0110 -0.0200
-vertex 0.1345 -0.0230 -0.0200
+vertex 0.0950 0.0000 -0.0200
+vertex 0.0945 0.0110 -0.0200
+vertex 0.0945 0.0230 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0340 -0.0200
-vertex 0.1340 -0.0230 -0.0150
-vertex 0.1340 -0.0230 -0.0190
+vertex 0.0950 0.0340 -0.0200
+vertex 0.0950 0.0230 -0.0150
+vertex 0.0950 0.0230 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0230 -0.0150
-vertex 0.1340 -0.0340 -0.0200
-vertex 0.1340 -0.0340 0.0000
+vertex 0.0950 0.0230 -0.0150
+vertex 0.0950 0.0340 -0.0200
+vertex 0.0950 0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0340 -0.0200
-vertex 0.1340 -0.0230 -0.0190
-vertex 0.1340 -0.0110 -0.0190
+vertex 0.0950 0.0340 -0.0200
+vertex 0.0950 0.0230 -0.0190
+vertex 0.0950 0.0110 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 0.0000 -0.0200
-vertex 0.1340 -0.0110 -0.0190
-vertex 0.1340 -0.0110 -0.0150
+vertex 0.0950 0.0000 -0.0200
+vertex 0.0950 0.0110 -0.0190
+vertex 0.0950 0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0110 -0.0190
-vertex 0.1340 0.0000 -0.0200
-vertex 0.1340 -0.0340 -0.0200
+vertex 0.0950 0.0110 -0.0190
+vertex 0.0950 0.0000 -0.0200
+vertex 0.0950 0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 0.0000 -0.0200
-vertex 0.1340 -0.0110 -0.0150
-vertex 0.1340 0.0000 0.0000
+vertex 0.0950 0.0000 -0.0200
+vertex 0.0950 0.0110 -0.0150
+vertex 0.0950 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0230 -0.0150
-vertex 0.1340 -0.0215 -0.0070
-vertex 0.1340 -0.0110 -0.0150
+vertex 0.0950 0.0230 -0.0150
+vertex 0.0950 0.0215 -0.0070
+vertex 0.0950 0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0215 -0.0070
-vertex 0.1340 -0.0340 0.0000
-vertex 0.1340 -0.0215 -0.0030
+vertex 0.0950 0.0215 -0.0070
+vertex 0.0950 0.0340 0.0000
+vertex 0.0950 0.0215 -0.0030
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0340 0.0000
-vertex 0.1340 -0.0215 -0.0070
-vertex 0.1340 -0.0230 -0.0150
+vertex 0.0950 0.0340 0.0000
+vertex 0.0950 0.0215 -0.0070
+vertex 0.0950 0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0215 -0.0030
-vertex 0.1340 -0.0340 0.0000
-vertex 0.1340 0.0000 0.0000
+vertex 0.0950 0.0215 -0.0030
+vertex 0.0950 0.0340 0.0000
+vertex 0.0950 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0125 -0.0070
-vertex 0.1340 -0.0125 -0.0030
-vertex 0.1340 0.0000 0.0000
+vertex 0.0950 0.0125 -0.0070
+vertex 0.0950 0.0125 -0.0030
+vertex 0.0950 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 0.0000 0.0000
-vertex 0.1340 -0.0125 -0.0030
-vertex 0.1340 -0.0215 -0.0030
+vertex 0.0950 0.0000 0.0000
+vertex 0.0950 0.0125 -0.0030
+vertex 0.0950 0.0215 -0.0030
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0125 -0.0070
-vertex 0.1340 0.0000 0.0000
-vertex 0.1340 -0.0110 -0.0150
+vertex 0.0950 0.0125 -0.0070
+vertex 0.0950 0.0000 0.0000
+vertex 0.0950 0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0215 -0.0070
-vertex 0.1340 -0.0125 -0.0070
-vertex 0.1340 -0.0110 -0.0150
+vertex 0.0950 0.0215 -0.0070
+vertex 0.0950 0.0125 -0.0070
+vertex 0.0950 0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 0.0000 0.0000
-vertex 0.1340 -0.0340 0.0000
-vertex 0.1580 -0.0340 0.0000
+vertex 0.0950 0.0000 0.0000
+vertex 0.0950 0.0340 0.0000
+vertex 0.0710 0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0340 0.0000
-vertex 0.1580 0.0000 0.0000
-vertex 0.1340 0.0000 0.0000
+vertex 0.0710 0.0340 0.0000
+vertex 0.0710 0.0000 0.0000
+vertex 0.0950 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 0.0000 -0.0000
-vertex 0.0710 -0.0110 -0.0150
-vertex 0.0710 -0.0230 -0.0150
+vertex 0.0980 0.0000 -0.0000
+vertex 0.0980 0.0110 -0.0150
+vertex 0.0980 0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0110 -0.0150
-vertex 0.0710 0.0000 -0.0000
-vertex 0.0710 0.0000 -0.0200
+vertex 0.0980 0.0110 -0.0150
+vertex 0.0980 0.0000 -0.0000
+vertex 0.0980 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0340 -0.0000
-vertex 0.0710 -0.0230 -0.0150
-vertex 0.0710 -0.0340 -0.0200
+vertex 0.0980 0.0340 -0.0000
+vertex 0.0980 0.0230 -0.0150
+vertex 0.0980 0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0230 -0.0150
-vertex 0.0710 -0.0340 -0.0000
-vertex 0.0710 0.0000 -0.0000
+vertex 0.0980 0.0230 -0.0150
+vertex 0.0980 0.0340 -0.0000
+vertex 0.0980 0.0000 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0110 -0.0190
-vertex 0.0710 0.0000 -0.0200
-vertex 0.0710 -0.0340 -0.0200
+vertex 0.0980 0.0110 -0.0190
+vertex 0.0980 0.0000 -0.0200
+vertex 0.0980 0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 0.0000 -0.0200
-vertex 0.0710 -0.0110 -0.0190
-vertex 0.0710 -0.0110 -0.0150
+vertex 0.0980 0.0000 -0.0200
+vertex 0.0980 0.0110 -0.0190
+vertex 0.0980 0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0230 -0.0190
-vertex 0.0710 -0.0340 -0.0200
-vertex 0.0710 -0.0230 -0.0150
+vertex 0.0980 0.0230 -0.0190
+vertex 0.0980 0.0340 -0.0200
+vertex 0.0980 0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0340 -0.0200
-vertex 0.0710 -0.0230 -0.0190
-vertex 0.0710 -0.0110 -0.0190
+vertex 0.0980 0.0340 -0.0200
+vertex 0.0980 0.0230 -0.0190
+vertex 0.0980 0.0110 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 0.0000 -0.0200
-vertex 0.0715 -0.0110 -0.0200
-vertex 0.0715 -0.0230 -0.0200
+vertex 0.0980 0.0000 -0.0200
+vertex 0.0975 0.0110 -0.0200
+vertex 0.0975 0.0230 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0715 -0.0110 -0.0200
-vertex 0.0710 0.0000 -0.0200
-vertex 0.0950 0.0000 -0.0200
+vertex 0.0975 0.0110 -0.0200
+vertex 0.0980 0.0000 -0.0200
+vertex 0.0740 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0340 -0.0200
-vertex 0.0715 -0.0230 -0.0200
-vertex 0.0945 -0.0230 -0.0200
+vertex 0.0980 0.0340 -0.0200
+vertex 0.0975 0.0230 -0.0200
+vertex 0.0745 0.0230 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0715 -0.0230 -0.0200
-vertex 0.0710 -0.0340 -0.0200
-vertex 0.0710 0.0000 -0.0200
+vertex 0.0975 0.0230 -0.0200
+vertex 0.0980 0.0340 -0.0200
+vertex 0.0980 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0945 -0.0110 -0.0200
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0950 -0.0340 -0.0200
+vertex 0.0745 0.0110 -0.0200
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0740 0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0945 -0.0110 -0.0200
-vertex 0.0715 -0.0110 -0.0200
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0745 0.0110 -0.0200
+vertex 0.0975 0.0110 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0945 -0.0230 -0.0200
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0710 -0.0340 -0.0200
+vertex 0.0745 0.0230 -0.0200
+vertex 0.0740 0.0340 -0.0200
+vertex 0.0980 0.0340 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0945 -0.0230 -0.0200
-vertex 0.0945 -0.0110 -0.0200
+vertex 0.0740 0.0340 -0.0200
+vertex 0.0745 0.0230 -0.0200
+vertex 0.0745 0.0110 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0950 -0.0110 -0.0150
-vertex 0.0950 -0.0110 -0.0190
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0740 0.0110 -0.0150
+vertex 0.0740 0.0110 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0110 -0.0150
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0950 0.0000 0.0000
+vertex 0.0740 0.0110 -0.0150
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0740 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 0.0000 -0.0200
-vertex 0.0950 -0.0110 -0.0190
-vertex 0.0950 -0.0230 -0.0190
+vertex 0.0740 0.0000 -0.0200
+vertex 0.0740 0.0110 -0.0190
+vertex 0.0740 0.0230 -0.0190
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0950 -0.0230 -0.0190
-vertex 0.0950 -0.0230 -0.0150
+vertex 0.0740 0.0340 -0.0200
+vertex 0.0740 0.0230 -0.0190
+vertex 0.0740 0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0230 -0.0190
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0950 0.0000 -0.0200
+vertex 0.0740 0.0230 -0.0190
+vertex 0.0740 0.0340 -0.0200
+vertex 0.0740 0.0000 -0.0200
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 -0.0200
-vertex 0.0950 -0.0230 -0.0150
-vertex 0.0950 -0.0340 0.0000
+vertex 0.0740 0.0340 -0.0200
+vertex 0.0740 0.0230 -0.0150
+vertex 0.0740 0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0110 -0.0150
-vertex 0.0950 -0.0125 -0.0070
-vertex 0.0950 -0.0230 -0.0150
+vertex 0.0740 0.0110 -0.0150
+vertex 0.0740 0.0125 -0.0070
+vertex 0.0740 0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0125 -0.0070
-vertex 0.0950 0.0000 0.0000
-vertex 0.0950 -0.0125 -0.0030
+vertex 0.0740 0.0125 -0.0070
+vertex 0.0740 0.0000 0.0000
+vertex 0.0740 0.0125 -0.0030
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 0.0000 0.0000
-vertex 0.0950 -0.0125 -0.0070
-vertex 0.0950 -0.0110 -0.0150
+vertex 0.0740 0.0000 0.0000
+vertex 0.0740 0.0125 -0.0070
+vertex 0.0740 0.0110 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0125 -0.0030
-vertex 0.0950 0.0000 0.0000
-vertex 0.0950 -0.0340 0.0000
+vertex 0.0740 0.0125 -0.0030
+vertex 0.0740 0.0000 0.0000
+vertex 0.0740 0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0215 -0.0070
-vertex 0.0950 -0.0215 -0.0030
-vertex 0.0950 -0.0340 0.0000
+vertex 0.0740 0.0215 -0.0070
+vertex 0.0740 0.0215 -0.0030
+vertex 0.0740 0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 0.0000
-vertex 0.0950 -0.0215 -0.0030
-vertex 0.0950 -0.0125 -0.0030
+vertex 0.0740 0.0340 0.0000
+vertex 0.0740 0.0215 -0.0030
+vertex 0.0740 0.0125 -0.0030
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0215 -0.0070
-vertex 0.0950 -0.0340 0.0000
-vertex 0.0950 -0.0230 -0.0150
+vertex 0.0740 0.0215 -0.0070
+vertex 0.0740 0.0340 0.0000
+vertex 0.0740 0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0125 -0.0070
-vertex 0.0950 -0.0215 -0.0070
-vertex 0.0950 -0.0230 -0.0150
+vertex 0.0740 0.0125 -0.0070
+vertex 0.0740 0.0215 -0.0070
+vertex 0.0740 0.0230 -0.0150
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0340 0.0000
-vertex 0.0950 0.0000 0.0000
-vertex 0.0710 0.0000 0.0000
+vertex 0.0740 0.0340 0.0000
+vertex 0.0740 0.0000 0.0000
+vertex 0.0980 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 0.0000 0.0000
-vertex 0.0710 -0.0340 0.0000
-vertex 0.0950 -0.0340 0.0000
+vertex 0.0980 0.0000 0.0000
+vertex 0.0980 0.0340 0.0000
+vertex 0.0740 0.0340 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0700 0.0450
-vertex 0.0950 -0.0700 0.0450
-vertex 0.0950 -0.0700 0.0000
+vertex 0.0980 0.0700 0.0450
+vertex 0.0740 0.0700 0.0450
+vertex 0.0740 0.0700 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0950 -0.0700 0.0000
-vertex 0.0710 -0.0700 0.0000
-vertex 0.0710 -0.0700 0.0450
+vertex 0.0740 0.0700 0.0000
+vertex 0.0980 0.0700 0.0000
+vertex 0.0980 0.0700 0.0450
 endloop
 endfacet
 facet normal 0 0 0
@@ -645,128 +645,128 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 0.0000 0.0000
-vertex 0.1680 -0.0361 0.0000
-vertex 0.2290 -0.0361 0.0000
+vertex 0.0610 0.0000 0.0000
+vertex 0.0610 0.0361 0.0000
+vertex 0.0000 0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0361 0.0000
-vertex 0.2290 0.0000 0.0000
-vertex 0.1680 0.0000 0.0000
+vertex 0.0000 0.0361 0.0000
+vertex 0.0000 0.0000 0.0000
+vertex 0.0610 0.0000 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0531 -0.0531
-vertex 0.2290 -0.0531 -0.0170
-vertex 0.1680 -0.0531 -0.0170
+vertex 0.0000 0.0531 -0.0531
+vertex 0.0000 0.0531 -0.0170
+vertex 0.0610 0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0531 -0.0170
-vertex 0.1680 -0.0531 -0.0531
-vertex 0.2290 -0.0531 -0.0531
+vertex 0.0610 0.0531 -0.0170
+vertex 0.0610 0.0531 -0.0531
+vertex 0.0000 0.0531 -0.0531
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0531 -0.0170
-vertex 0.1970 -0.0492 -0.0131
-vertex 0.1860 -0.0492 -0.0131
+vertex 0.0610 0.0531 -0.0170
+vertex 0.0320 0.0492 -0.0131
+vertex 0.0430 0.0492 -0.0131
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1970 -0.0492 -0.0131
-vertex 0.1680 -0.0531 -0.0170
-vertex 0.2290 -0.0531 -0.0170
+vertex 0.0320 0.0492 -0.0131
+vertex 0.0610 0.0531 -0.0170
+vertex 0.0000 0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0531 -0.0170
-vertex 0.1860 -0.0492 -0.0131
-vertex 0.1860 -0.0400 -0.0039
+vertex 0.0610 0.0531 -0.0170
+vertex 0.0430 0.0492 -0.0131
+vertex 0.0430 0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0361 0.0000
-vertex 0.1860 -0.0400 -0.0039
-vertex 0.1970 -0.0400 -0.0039
+vertex 0.0610 0.0361 0.0000
+vertex 0.0430 0.0400 -0.0039
+vertex 0.0320 0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1860 -0.0400 -0.0039
-vertex 0.1680 -0.0361 0.0000
-vertex 0.1680 -0.0531 -0.0170
+vertex 0.0430 0.0400 -0.0039
+vertex 0.0610 0.0361 0.0000
+vertex 0.0610 0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0361 0.0000
-vertex 0.1970 -0.0400 -0.0039
-vertex 0.2290 -0.0361 0.0000
+vertex 0.0610 0.0361 0.0000
+vertex 0.0320 0.0400 -0.0039
+vertex 0.0000 0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1970 -0.0492 -0.0131
-vertex 0.2175 -0.0482 -0.0120
-vertex 0.1970 -0.0400 -0.0039
+vertex 0.0320 0.0492 -0.0131
+vertex 0.0115 0.0482 -0.0120
+vertex 0.0320 0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2175 -0.0482 -0.0120
-vertex 0.2290 -0.0531 -0.0170
-vertex 0.2235 -0.0482 -0.0120
+vertex 0.0115 0.0482 -0.0120
+vertex 0.0000 0.0531 -0.0170
+vertex 0.0055 0.0482 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0531 -0.0170
-vertex 0.2175 -0.0482 -0.0120
-vertex 0.1970 -0.0492 -0.0131
+vertex 0.0000 0.0531 -0.0170
+vertex 0.0115 0.0482 -0.0120
+vertex 0.0320 0.0492 -0.0131
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2235 -0.0482 -0.0120
-vertex 0.2290 -0.0531 -0.0170
-vertex 0.2290 -0.0361 0.0000
+vertex 0.0055 0.0482 -0.0120
+vertex 0.0000 0.0531 -0.0170
+vertex 0.0000 0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2175 -0.0411 -0.0049
-vertex 0.2235 -0.0411 -0.0049
-vertex 0.2290 -0.0361 0.0000
+vertex 0.0115 0.0411 -0.0049
+vertex 0.0055 0.0411 -0.0049
+vertex 0.0000 0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0361 0.0000
-vertex 0.2235 -0.0411 -0.0049
-vertex 0.2235 -0.0482 -0.0120
+vertex 0.0000 0.0361 0.0000
+vertex 0.0055 0.0411 -0.0049
+vertex 0.0055 0.0482 -0.0120
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2175 -0.0411 -0.0049
-vertex 0.2290 -0.0361 0.0000
-vertex 0.1970 -0.0400 -0.0039
+vertex 0.0115 0.0411 -0.0049
+vertex 0.0000 0.0361 0.0000
+vertex 0.0320 0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2175 -0.0482 -0.0120
-vertex 0.2175 -0.0411 -0.0049
-vertex 0.1970 -0.0400 -0.0039
+vertex 0.0115 0.0482 -0.0120
+vertex 0.0115 0.0411 -0.0049
+vertex 0.0320 0.0400 -0.0039
 endloop
 endfacet
 facet normal 0 0 0
@@ -3599,86 +3599,100 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0600 -0.0100 0.0000
-vertex 0.0600 0.0000 0.0000
-vertex 0.0000 0.0000 0.0000
+vertex -0.0308 0.0205 -0.0000
+vertex -0.0308 0.0305 -0.0000
+vertex -0.0499 0.0305 0.0191
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0000 0.0000 0.0000
-vertex 0.0000 -0.0100 0.0000
-vertex 0.0600 -0.0100 0.0000
+vertex -0.0499 0.0305 0.0191
+vertex -0.0499 0.0205 0.0191
+vertex -0.0308 0.0205 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1790 -0.0617 -0.0000
-vertex 0.1690 -0.0617 -0.0000
-vertex 0.1690 -0.0807 0.0191
+vertex -0.0499 -0.0305 0.0907
+vertex -0.0499 -0.0305 0.0807
+vertex -0.0499 0.0305 0.0807
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1690 -0.0807 0.0191
-vertex 0.1790 -0.0807 0.0191
-vertex 0.1790 -0.0617 -0.0000
+vertex -0.0499 0.0305 0.0807
+vertex -0.0499 0.0305 0.0907
+vertex -0.0499 -0.0305 0.0907
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1480 -0.0340 -0.0000
-vertex 0.1580 -0.0340 -0.0000
-vertex 0.1580 0.0000 -0.0000
+vertex 0.0408 0.0305 0.0000
+vertex 0.0308 0.0305 0.0000
+vertex 0.0308 -0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 0.0000 -0.0000
-vertex 0.1480 0.0000 -0.0000
-vertex 0.1480 -0.0340 -0.0000
+vertex 0.0308 -0.0305 0.0000
+vertex 0.0408 -0.0305 0.0000
+vertex 0.0408 0.0305 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0810 0.0000 -0.0000
+vertex 0.0810 0.0340 -0.0000
+vertex 0.0710 0.0340 -0.0000
 vertex 0.0710 0.0000 -0.0000
-vertex 0.0710 -0.0340 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0710 -0.0340 -0.0000
-vertex 0.0810 -0.0340 -0.0000
+vertex 0.0710 0.0000 -0.0000
 vertex 0.0810 0.0000 -0.0000
+vertex 0.0810 0.0340 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0880 0.0000 -0.0000
+vertex 0.0980 0.0000 -0.0000
+vertex 0.0980 0.0340 -0.0000
+endloop
+endfacet
+facet normal 0 0 0
+outer loop
+vertex 0.0980 0.0340 -0.0000
+vertex 0.0880 0.0340 -0.0000
+vertex 0.0880 0.0000 -0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0700 0.0500
-vertex 0.1580 -0.0700 0.0450
-vertex 0.1340 -0.0700 0.0450
+vertex 0.0710 0.0700 0.0500
+vertex 0.0710 0.0700 0.0450
+vertex 0.0950 0.0700 0.0450
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1340 -0.0700 0.0450
-vertex 0.1340 -0.0700 0.0500
-vertex 0.1580 -0.0700 0.0500
+vertex 0.0950 0.0700 0.0450
+vertex 0.0950 0.0700 0.0500
+vertex 0.0710 0.0700 0.0500
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1580 -0.0531 -0.0170
-vertex 0.1680 -0.0531 -0.0170
-vertex 0.1680 -0.0361 0.0000
+vertex 0.0710 0.0531 -0.0170
+vertex 0.0610 0.0531 -0.0170
+vertex 0.0610 0.0361 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0361 0.0000
-vertex 0.1580 -0.0361 0.0000
-vertex 0.1580 -0.0531 -0.0170
+vertex 0.0610 0.0361 0.0000
+vertex 0.0710 0.0361 0.0000
+vertex 0.0710 0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
@@ -3697,16 +3711,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0291 -0.0071
-vertex 0.2290 -0.0361 0.0000
-vertex 0.2290 -0.0531 -0.0170
+vertex -0.0000 0.0291 -0.0071
+vertex 0.0000 0.0361 0.0000
+vertex 0.0000 0.0531 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0531 -0.0170
-vertex 0.2290 -0.0460 -0.0240
-vertex 0.2290 -0.0291 -0.0071
+vertex 0.0000 0.0531 -0.0170
+vertex -0.0000 0.0460 -0.0240
+vertex -0.0000 0.0291 -0.0071
 endloop
 endfacet
 facet normal 0 0 0
@@ -3753,16 +3767,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.2290 -0.0531 -0.0631
-vertex 0.2290 -0.0531 -0.0531
-vertex 0.1680 -0.0531 -0.0531
+vertex 0.0000 0.0531 -0.0631
+vertex 0.0000 0.0531 -0.0531
+vertex 0.0610 0.0531 -0.0531
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1680 -0.0531 -0.0531
-vertex 0.1680 -0.0531 -0.0631
-vertex 0.2290 -0.0531 -0.0631
+vertex 0.0610 0.0531 -0.0531
+vertex 0.0610 0.0531 -0.0631
+vertex 0.0000 0.0531 -0.0631
 endloop
 endfacet
 endsolid python
diff --git a/rocolib/output/ServoStackBatteryMount/graph-silhouette.dxf b/rocolib/output/ServoStackBatteryMount/graph-silhouette.dxf
index e0a8e0bfdf8a5492adf5e615746bec03996021d3..d18b4f62bf59c231d9d5132e46065e501c9a2cfd 100644
--- a/rocolib/output/ServoStackBatteryMount/graph-silhouette.dxf
+++ b/rocolib/output/ServoStackBatteryMount/graph-silhouette.dxf
@@ -943,15 +943,15 @@ LINE
   8
 0
  10
-229.00000000000003
+160.30855606972293
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-229.00000000000003
+98.65427803486146
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -961,15 +961,35 @@ LINE
   8
 0
  10
+98.65427803486146
+ 20
+166.0
+ 30
 0.0
+ 11
+160.30855606972293
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+98.65427803486146
  20
-150.30855600000004
+166.0
  30
 0.0
  11
-229.00000000000003
+98.65427803486146
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -979,15 +999,51 @@ LINE
   8
 0
  10
+170.30855606972293
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+160.30855606972293
+ 21
+105.00000000000001
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+170.30855606972293
  20
-150.30855600000004
+166.0
  30
 0.0
  11
+170.30855606972293
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+160.30855606972293
+ 20
+166.0
+ 30
 0.0
+ 11
+170.30855606972293
  21
-150.30855600000004
+166.0
  31
 0.0
   0
@@ -997,15 +1053,73 @@ LINE
   8
 0
  10
+71.65427803486145
+ 20
+166.0
+ 30
+0.0
+ 11
+98.65427803486146
+ 21
+166.0
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+71.65427803486145
+ 20
+105.00000000000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+166.0
+ 31
 0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
  20
-140.30855600000004
+105.00000000000001
  30
 0.0
  11
+71.65427803486145
+ 21
+105.00000000000001
+ 31
 0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+10.000000000000002
+ 20
+166.0
+ 30
+0.0
+ 11
+71.65427803486145
  21
-150.30855600000004
+166.0
  31
 0.0
   0
@@ -1015,15 +1129,33 @@ LINE
   8
 0
  10
-60.00000000000001
+71.65427803486145
  20
-140.30855600000004
+105.00000000000001
  30
 0.0
  11
+10.000000000000002
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
 0.0
+ 20
+166.0
+ 30
+0.0
+ 11
+10.000000000000002
  21
-140.30855600000004
+166.0
  31
 0.0
   0
@@ -1033,15 +1165,15 @@ LINE
   8
 0
  10
-60.00000000000001
+0.0
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-60.00000000000001
+0.0
  21
-140.30855600000004
+166.0
  31
 0.0
   0
@@ -1051,15 +1183,15 @@ LINE
   8
 0
  10
-134.00000000000003
+10.000000000000002
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-60.00000000000001
+0.0
  21
-150.30855600000004
+105.00000000000001
  31
 0.0
   0
@@ -1069,15 +1201,15 @@ LINE
   8
 0
  10
-168.0
+98.65427803486146
  20
-150.30855600000004
+105.00000000000001
  30
 0.0
  11
-158.00000000000003
+98.65427803486146
  21
-150.30855600000004
+88.00000000000001
  31
 0.0
   0
@@ -1087,15 +1219,35 @@ LINE
   8
 0
  10
-229.00000000000003
+71.65427803486145
+ 20
+88.00000000000001
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+105.00000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+98.65427803486146
  20
-150.30855600000004
+88.00000000000001
  30
 0.0
  11
-229.00000000000003
+71.65427803486145
  21
-150.30855600000004
+88.00000000000001
  31
 0.0
   0
@@ -1105,15 +1257,15 @@ LINE
   8
 0
  10
-60.00000000000001
+98.65427803486146
  20
-150.30855600000004
+88.00000000000001
  30
 0.0
  11
-60.00000000000001
+98.65427803486146
  21
-150.30855600000004
+27.000000000000004
  31
 0.0
   0
@@ -1123,15 +1275,15 @@ LINE
   8
 0
  10
-158.00000000000003
+71.65427803486145
  20
-150.30855600000004
+27.000000000000004
  30
 0.0
  11
-158.00000000000003
+71.65427803486145
  21
-116.30855600000002
+88.00000000000001
  31
 0.0
   0
@@ -1143,15 +1295,33 @@ DOTTED
   8
 0
  10
-134.00000000000003
+98.65427803486146
+ 20
+27.000000000000004
+ 30
+0.0
+ 11
+71.65427803486145
+ 21
+27.000000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+98.65427803486146
  20
-116.30855600000002
+27.000000000000004
  30
 0.0
  11
-134.00000000000003
+98.65427803486146
  21
-150.30855600000004
+10.000000000000002
  31
 0.0
   0
@@ -1161,15 +1331,15 @@ LINE
   8
 0
  10
-134.00000000000003
+71.65427803486145
  20
-80.30855600000002
+10.000000000000002
  30
 0.0
  11
-134.00000000000003
+71.65427803486145
  21
-116.30855600000002
+27.000000000000004
  31
 0.0
   0
@@ -1177,19 +1347,19 @@ LINE
   6
 DOTTED
  62
-3
+1
   8
 0
  10
-134.00000000000003
+71.65427803486145
  20
-80.30855600000002
+10.000000000000002
  30
 0.0
  11
-158.00000000000003
+98.65427803486146
  21
-80.30855600000002
+10.000000000000002
  31
 0.0
   0
@@ -1199,15 +1369,15 @@ LINE
   8
 0
  10
-158.00000000000003
+71.65427803486145
  20
-116.30855600000002
+0.0
  30
 0.0
  11
-158.00000000000003
+71.65427803486145
  21
-80.30855600000002
+10.000000000000002
  31
 0.0
   0
@@ -1217,15 +1387,15 @@ LINE
   8
 0
  10
-158.00000000000003
+98.65427803486146
  20
-80.30855600000002
+0.0
  30
 0.0
  11
-158.00000000000003
+71.65427803486145
  21
-35.30855600000002
+0.0
  31
 0.0
   0
@@ -1235,15 +1405,15 @@ LINE
   8
 0
  10
-134.00000000000003
+98.65427803486146
  20
-35.30855600000002
+10.000000000000002
  30
 0.0
  11
-134.00000000000003
+98.65427803486146
  21
-80.30855600000002
+0.0
  31
 0.0
   0
@@ -1253,15 +1423,15 @@ LINE
   8
 0
  10
-134.00000000000003
+167.80855606972293
  20
-30.308556000000017
+154.90909090909093
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-35.30855600000002
+154.90909090909093
  31
 0.0
   0
@@ -1271,15 +1441,15 @@ LINE
   8
 0
  10
-158.00000000000003
+162.80855606972293
  20
-30.308556000000017
+154.90909090909093
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-30.308556000000017
+143.8181818181818
  31
 0.0
   0
@@ -1289,15 +1459,15 @@ LINE
   8
 0
  10
-158.00000000000003
+162.80855606972293
  20
-35.30855600000002
+143.8181818181818
  30
 0.0
  11
-158.00000000000003
+167.80855606972293
  21
-30.308556000000017
+143.8181818181818
  31
 0.0
   0
@@ -1307,15 +1477,15 @@ LINE
   8
 0
  10
-134.00000000000003
+167.80855606972293
  20
-116.30855600000002
+127.1818181818182
  30
 0.0
  11
-114.00000000000001
+162.80855606972293
  21
-116.30855600000002
+127.1818181818182
  31
 0.0
   0
@@ -1325,35 +1495,33 @@ LINE
   8
 0
  10
-114.00000000000001
+162.80855606972293
  20
-150.30855600000004
+127.1818181818182
  30
 0.0
  11
-134.00000000000003
+162.80855606972293
  21
-150.30855600000004
+116.09090909090911
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-114.00000000000001
+162.80855606972293
  20
-116.30855600000002
+116.09090909090911
  30
 0.0
  11
-114.00000000000001
+167.80855606972293
  21
-150.30855600000004
+116.09090909090911
  31
 0.0
   0
@@ -1363,15 +1531,15 @@ LINE
   8
 0
  10
-114.00000000000001
+94.15427803486146
  20
-116.30855600000002
+102.50000000000001
  30
 0.0
  11
-90.0
+94.15427803486146
  21
-116.30855600000002
+108.50000000000001
  31
 0.0
   0
@@ -1381,35 +1549,33 @@ LINE
   8
 0
  10
-90.0
+94.15427803486146
  20
-150.30855600000004
+108.50000000000001
  30
 0.0
  11
-114.00000000000001
+76.15427803486145
  21
-150.30855600000004
+108.50000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-90.0
+76.15427803486145
  20
-116.30855600000002
+108.50000000000001
  30
 0.0
  11
-90.0
+76.15427803486145
  21
-150.30855600000004
+102.50000000000001
  31
 0.0
   0
@@ -1419,15 +1585,15 @@ LINE
   8
 0
  10
-90.0
+76.15427803486145
  20
-116.30855600000002
+102.50000000000001
  30
 0.0
  11
-70.00000000000001
+94.15427803486146
  21
-116.30855600000002
+102.50000000000001
  31
 0.0
   0
@@ -1437,35 +1603,33 @@ LINE
   8
 0
  10
-70.00000000000001
+80.40427803486146
  20
-150.30855600000004
+158.25000000000003
  30
 0.0
  11
-90.0
+89.90427803486145
  21
-150.30855600000004
+158.25000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-70.00000000000001
+89.90427803486145
  20
-150.30855600000004
+158.25000000000003
  30
 0.0
  11
-70.00000000000001
+89.90427803486145
  21
-116.30855600000002
+158.75000000000003
  31
 0.0
   0
@@ -1475,15 +1639,15 @@ LINE
   8
 0
  10
-60.00000000000001
+89.90427803486145
  20
-150.30855600000004
+158.75000000000003
  30
 0.0
  11
-70.00000000000001
+80.40427803486146
  21
-150.30855600000004
+158.75000000000003
  31
 0.0
   0
@@ -1493,15 +1657,15 @@ LINE
   8
 0
  10
-60.00000000000001
+80.40427803486146
  20
-116.30855600000002
+158.75000000000003
  30
 0.0
  11
-60.00000000000001
+80.40427803486146
  21
-150.30855600000004
+158.25000000000003
  31
 0.0
   0
@@ -1511,35 +1675,33 @@ LINE
   8
 0
  10
-70.00000000000001
+2.5000000000000004
  20
-116.30855600000002
+116.09090909090911
  30
 0.0
  11
-60.00000000000001
+7.500000000000001
  21
-116.30855600000002
+116.09090909090911
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-168.0
+7.500000000000001
  20
-114.16993400081472
+116.09090909090911
  30
 0.0
  11
-229.00000000000003
+7.500000000000001
  21
-114.16993400081472
+127.18181818181822
  31
 0.0
   0
@@ -1549,15 +1711,15 @@ LINE
   8
 0
  10
-229.00000000000003
+7.500000000000001
  20
-150.30855600000004
+127.18181818181822
  30
 0.0
  11
-229.00000000000003
+2.5000000000000004
  21
-114.16993400081472
+127.18181818181822
  31
 0.0
   0
@@ -1567,55 +1729,51 @@ LINE
   8
 0
  10
-168.0
+2.5000000000000004
  20
-114.16993400081472
+143.81818181818184
  30
 0.0
  11
-168.0
+7.500000000000001
  21
-150.30855600000004
+143.81818181818184
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-229.00000000000003
+7.500000000000001
  20
-90.16993400081472
+143.81818181818184
  30
 0.0
  11
-168.0
+7.500000000000001
  21
-90.16993400081472
+154.90909090909093
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-229.00000000000003
+7.500000000000001
  20
-90.16993400081472
+154.90909090909093
  30
 0.0
  11
-229.00000000000003
+2.5000000000000004
  21
-114.16993400081472
+154.90909090909093
  31
 0.0
   0
@@ -1625,15 +1783,15 @@ LINE
   8
 0
  10
-168.0
+89.65427803486146
  20
-54.03131200162941
+2.5000000000000004
  30
 0.0
  11
-168.0
+89.65427803486146
  21
-90.16993400081473
+7.500000000000001
  31
 0.0
   0
@@ -1643,15 +1801,15 @@ LINE
   8
 0
  10
-229.00000000000003
+89.65427803486146
  20
-90.16993400081473
+7.500000000000001
  30
 0.0
  11
-229.00000000000003
+80.65427803486146
  21
-54.03131200162941
+7.500000000000001
  31
 0.0
   0
@@ -1661,15 +1819,15 @@ LINE
   8
 0
  10
-168.0
+80.65427803486146
  20
-44.03131200162941
+7.500000000000001
  30
 0.0
  11
-168.0
+80.65427803486146
  21
-54.03131200162941
+2.5000000000000004
  31
 0.0
   0
@@ -1679,15 +1837,15 @@ LINE
   8
 0
  10
-229.00000000000003
+251.30855606972293
  20
-44.03131200162941
+135.50000000000003
  30
 0.0
  11
-168.0
+190.30855606972293
  21
-44.03131200162941
+135.50000000000003
  31
 0.0
   0
@@ -1697,15 +1855,15 @@ LINE
   8
 0
  10
-229.00000000000003
+359.30855606972295
  20
-54.03131200162941
+135.50000000000003
  30
 0.0
  11
-229.00000000000003
+251.30855606972293
  21
-44.03131200162941
+135.50000000000003
  31
 0.0
   0
@@ -1715,15 +1873,15 @@ LINE
   8
 0
  10
-239.00000000000003
+359.30855606972295
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-229.00000000000003
+359.30855606972295
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1733,15 +1891,15 @@ LINE
   8
 0
  10
-239.00000000000003
+190.30855606972293
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-239.00000000000003
+190.30855606972293
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1751,15 +1909,15 @@ LINE
   8
 0
  10
-229.00000000000003
+285.3085560697229
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-239.00000000000003
+359.30855606972295
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1769,15 +1927,15 @@ LINE
   8
 0
  10
-158.00000000000003
+251.30855606972293
  20
-114.16993400081472
+135.50000000000003
  30
 0.0
  11
-168.0
+261.30855606972295
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1787,15 +1945,15 @@ LINE
   8
 0
  10
-158.00000000000003
+190.30855606972293
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-158.00000000000003
+190.30855606972293
  21
-114.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1805,15 +1963,15 @@ LINE
   8
 0
  10
-168.0
+359.30855606972295
  20
-90.16993400081472
+135.50000000000003
  30
 0.0
  11
-158.00000000000003
+359.30855606972295
  21
-90.16993400081472
+135.50000000000003
  31
 0.0
   0
@@ -1823,15 +1981,35 @@ LINE
   8
 0
  10
-40.00000000000001
+261.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+261.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+285.3085560697229
  20
-142.80855600000004
+169.50000000000003
  30
 0.0
  11
-45.0
+285.3085560697229
  21
-142.80855600000004
+135.50000000000003
  31
 0.0
   0
@@ -1841,15 +2019,35 @@ LINE
   8
 0
  10
-45.0
+285.3085560697229
  20
-142.80855600000004
+205.50000000000003
  30
 0.0
  11
-40.00000000000001
+285.3085560697229
  21
-147.80855600000004
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+285.3085560697229
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+261.30855606972295
+ 21
+205.50000000000003
  31
 0.0
   0
@@ -1859,15 +2057,15 @@ LINE
   8
 0
  10
-40.00000000000001
+261.30855606972295
  20
-147.80855600000004
+169.50000000000003
  30
 0.0
  11
-20.000000000000004
+261.30855606972295
  21
-147.80855600000004
+205.50000000000003
  31
 0.0
   0
@@ -1877,15 +2075,15 @@ LINE
   8
 0
  10
-20.000000000000004
+261.30855606972295
  20
-147.80855600000004
+205.50000000000003
  30
 0.0
  11
-15.000000000000002
+261.30855606972295
  21
-142.80855600000004
+250.50000000000003
  31
 0.0
   0
@@ -1895,15 +2093,15 @@ LINE
   8
 0
  10
-15.000000000000002
+285.3085560697229
  20
-142.80855600000004
+250.50000000000003
  30
 0.0
  11
-20.000000000000004
+285.3085560697229
  21
-142.80855600000004
+205.50000000000003
  31
 0.0
   0
@@ -1913,15 +2111,15 @@ LINE
   8
 0
  10
-150.25
+285.3085560697229
  20
-139.2252226666667
+255.50000000000003
  30
 0.0
  11
-150.25
+285.3085560697229
  21
-127.39188933333337
+250.50000000000003
  31
 0.0
   0
@@ -1931,15 +2129,15 @@ LINE
   8
 0
  10
-150.25
+261.30855606972295
  20
-127.39188933333337
+255.50000000000003
  30
 0.0
  11
-150.75000000000003
+285.3085560697229
  21
-127.39188933333337
+255.50000000000003
  31
 0.0
   0
@@ -1949,15 +2147,15 @@ LINE
   8
 0
  10
-150.75000000000003
+261.30855606972295
  20
-127.39188933333337
+250.50000000000003
  30
 0.0
  11
-150.75000000000003
+261.30855606972295
  21
-139.2252226666667
+255.50000000000003
  31
 0.0
   0
@@ -1967,15 +2165,15 @@ LINE
   8
 0
  10
-150.75000000000003
+285.3085560697229
  20
-139.2252226666667
+169.50000000000003
  30
 0.0
  11
-150.25
+305.30855606972295
  21
-139.2252226666667
+169.50000000000003
  31
 0.0
   0
@@ -1985,15 +2183,35 @@ LINE
   8
 0
  10
-150.0
+305.30855606972295
  20
-31.558556000000014
+135.50000000000003
  30
 0.0
  11
-152.5
+285.3085560697229
  21
-31.558556000000014
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+305.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+305.30855606972295
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -2003,15 +2221,53 @@ LINE
   8
 0
  10
-152.5
+305.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+329.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+329.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+305.30855606972295
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+329.30855606972295
  20
-31.558556000000014
+169.50000000000003
  30
 0.0
  11
-150.0
+329.30855606972295
  21
-34.05855600000001
+135.50000000000003
  31
 0.0
   0
@@ -2021,15 +2277,15 @@ LINE
   8
 0
  10
-150.0
+329.30855606972295
  20
-34.05855600000001
+169.50000000000003
  30
 0.0
  11
-142.00000000000003
+349.30855606972295
  21
-34.05855600000001
+169.50000000000003
  31
 0.0
   0
@@ -2039,15 +2295,35 @@ LINE
   8
 0
  10
-142.00000000000003
+349.30855606972295
  20
-34.05855600000001
+135.50000000000003
  30
 0.0
  11
-139.50000000000003
+329.30855606972295
  21
-31.558556000000014
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+349.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+349.30855606972295
+ 21
+169.50000000000003
  31
 0.0
   0
@@ -2057,15 +2333,15 @@ LINE
   8
 0
  10
-139.50000000000003
+359.30855606972295
  20
-31.558556000000014
+135.50000000000003
  30
 0.0
  11
-142.00000000000003
+349.30855606972295
  21
-31.558556000000014
+135.50000000000003
  31
 0.0
   0
@@ -2075,15 +2351,15 @@ LINE
   8
 0
  10
-115.00000000000001
+359.30855606972295
  20
-127.30855600000004
+169.50000000000003
  30
 0.0
  11
-119.00000000000001
+359.30855606972295
  21
-127.30855600000004
+135.50000000000003
  31
 0.0
   0
@@ -2093,15 +2369,35 @@ LINE
   8
 0
  10
-119.00000000000001
+349.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+359.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+251.30855606972293
  20
-127.30855600000004
+171.63862199918535
  30
 0.0
  11
-119.00000000000001
+190.30855606972293
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2111,15 +2407,15 @@ LINE
   8
 0
  10
-119.00000000000001
+190.30855606972293
  20
-139.30855600000004
+135.50000000000003
  30
 0.0
  11
-115.00000000000001
+190.30855606972293
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2129,15 +2425,55 @@ LINE
   8
 0
  10
-115.00000000000001
+251.30855606972293
+ 20
+171.63862199918535
+ 30
+0.0
+ 11
+251.30855606972293
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+190.30855606972293
  20
-139.30855600000004
+195.63862199918535
  30
 0.0
  11
-115.00000000000001
+251.30855606972293
  21
-127.30855600000004
+195.63862199918535
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+190.30855606972293
+ 20
+195.63862199918535
+ 30
+0.0
+ 11
+190.30855606972293
+ 21
+171.63862199918535
  31
 0.0
   0
@@ -2147,15 +2483,15 @@ LINE
   8
 0
  10
-127.00000000000001
+251.30855606972293
  20
-128.808556
+231.77724399837064
  30
 0.0
  11
-131.0
+251.30855606972293
  21
-128.808556
+195.63862199918532
  31
 0.0
   0
@@ -2165,15 +2501,15 @@ LINE
   8
 0
  10
-131.0
+190.30855606972293
  20
-128.808556
+195.63862199918532
  30
 0.0
  11
-131.0
+190.30855606972293
  21
-137.808556
+231.77724399837064
  31
 0.0
   0
@@ -2183,15 +2519,15 @@ LINE
   8
 0
  10
-131.0
+251.30855606972293
  20
-137.808556
+241.7772439983706
  30
 0.0
  11
-127.00000000000001
+251.30855606972293
  21
-137.808556
+231.77724399837064
  31
 0.0
   0
@@ -2201,15 +2537,15 @@ LINE
   8
 0
  10
-127.00000000000001
+190.30855606972293
  20
-137.808556
+241.7772439983706
  30
 0.0
  11
-127.00000000000001
+251.30855606972293
  21
-128.808556
+241.7772439983706
  31
 0.0
   0
@@ -2219,15 +2555,15 @@ LINE
   8
 0
  10
-90.50000000000001
+190.30855606972293
  20
-127.30855600000004
+231.77724399837064
  30
 0.0
  11
-113.50000000000001
+190.30855606972293
  21
-127.30855600000004
+241.7772439983706
  31
 0.0
   0
@@ -2237,15 +2573,15 @@ LINE
   8
 0
  10
-113.50000000000001
+180.3085560697229
  20
-127.30855600000004
+195.63862199918535
  30
 0.0
  11
-113.50000000000001
+190.30855606972293
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2255,15 +2591,15 @@ LINE
   8
 0
  10
-113.50000000000001
+180.3085560697229
  20
-139.30855600000004
+171.63862199918535
  30
 0.0
  11
-90.50000000000001
+180.3085560697229
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2273,15 +2609,15 @@ LINE
   8
 0
  10
-90.50000000000001
+190.30855606972293
  20
-139.30855600000004
+171.63862199918535
  30
 0.0
  11
-90.50000000000001
+180.3085560697229
  21
-127.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2291,15 +2627,15 @@ LINE
   8
 0
  10
-85.00000000000001
+261.30855606972295
  20
-127.30855600000004
+171.63862199918535
  30
 0.0
  11
-89.00000000000001
+251.30855606972293
  21
-127.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2309,15 +2645,15 @@ LINE
   8
 0
  10
-89.00000000000001
+261.30855606972295
  20
-127.30855600000004
+195.63862199918535
  30
 0.0
  11
-89.00000000000001
+261.30855606972295
  21
-139.30855600000004
+171.63862199918535
  31
 0.0
   0
@@ -2327,15 +2663,15 @@ LINE
   8
 0
  10
-89.00000000000001
+251.30855606972293
  20
-139.30855600000004
+195.63862199918535
  30
 0.0
  11
-85.00000000000001
+261.30855606972295
  21
-139.30855600000004
+195.63862199918535
  31
 0.0
   0
@@ -2345,15 +2681,15 @@ LINE
   8
 0
  10
-85.00000000000001
+212.7403742515411
  20
-139.30855600000004
+143.25
  30
 0.0
  11
-85.00000000000001
+201.14946516063202
  21
-127.30855600000004
+143.25
  31
 0.0
   0
@@ -2363,15 +2699,15 @@ LINE
   8
 0
  10
-62.50000000000001
+201.14946516063202
  20
-127.64188933333337
+143.25
  30
 0.0
  11
-67.50000000000001
+201.14946516063202
  21
-127.64188933333337
+142.75000000000003
  31
 0.0
   0
@@ -2381,15 +2717,15 @@ LINE
   8
 0
  10
-67.50000000000001
+201.14946516063202
  20
-127.64188933333337
+142.75000000000003
  30
 0.0
  11
-67.50000000000001
+212.7403742515411
  21
-138.9752226666667
+142.75000000000003
  31
 0.0
   0
@@ -2399,15 +2735,15 @@ LINE
   8
 0
  10
-67.50000000000001
+212.7403742515411
  20
-138.9752226666667
+142.75000000000003
  30
 0.0
  11
-62.50000000000001
+212.7403742515411
  21
-138.9752226666667
+143.25
  31
 0.0
   0
@@ -2417,15 +2753,15 @@ LINE
   8
 0
  10
-186.00000000000003
+240.4676469788138
  20
-95.66993400081472
+143.25
  30
 0.0
  11
-197.00000000000003
+228.87673788790474
  21
-95.66993400081472
+143.25
  31
 0.0
   0
@@ -2435,15 +2771,15 @@ LINE
   8
 0
  10
-197.00000000000003
+228.87673788790474
  20
-95.66993400081472
+143.25
  30
 0.0
  11
-197.00000000000003
+228.87673788790474
  21
-108.66993400081472
+142.75000000000003
  31
 0.0
   0
@@ -2453,15 +2789,15 @@ LINE
   8
 0
  10
-197.00000000000003
+228.87673788790474
  20
-108.66993400081472
+142.75000000000003
  30
 0.0
  11
-186.00000000000003
+240.4676469788138
  21
-108.66993400081472
+142.75000000000003
  31
 0.0
   0
@@ -2471,15 +2807,15 @@ LINE
   8
 0
  10
-186.00000000000003
+240.4676469788138
  20
-108.66993400081472
+142.75000000000003
  30
 0.0
  11
-186.00000000000003
+240.4676469788138
  21
-95.66993400081472
+143.25
  31
 0.0
   0
@@ -2489,15 +2825,15 @@ LINE
   8
 0
  10
-217.50000000000003
+269.0585560697229
  20
-97.16993400081472
+146.58333333333337
  30
 0.0
  11
-223.50000000000003
+269.0585560697229
  21
-97.16993400081472
+158.41666666666669
  31
 0.0
   0
@@ -2507,15 +2843,15 @@ LINE
   8
 0
  10
-223.50000000000003
+269.0585560697229
  20
-97.16993400081472
+158.41666666666669
  30
 0.0
  11
-223.50000000000003
+268.55855606972295
  21
-107.16993400081472
+158.41666666666669
  31
 0.0
   0
@@ -2525,15 +2861,15 @@ LINE
   8
 0
  10
-223.50000000000003
+268.55855606972295
  20
-107.16993400081472
+158.41666666666669
  30
 0.0
  11
-217.50000000000003
+268.55855606972295
  21
-107.16993400081472
+146.58333333333337
  31
 0.0
   0
@@ -2543,15 +2879,15 @@ LINE
   8
 0
  10
-217.50000000000003
+268.55855606972295
  20
-107.16993400081472
+146.58333333333337
  30
 0.0
  11
-217.50000000000003
+269.0585560697229
  21
-97.16993400081472
+146.58333333333337
  31
 0.0
   0
@@ -2561,15 +2897,15 @@ LINE
   8
 0
  10
-217.90909090909093
+269.3085560697229
  20
-46.5313120016294
+254.25000000000003
  30
 0.0
  11
-217.90909090909093
+266.8085560697229
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2579,15 +2915,15 @@ LINE
   8
 0
  10
-217.90909090909093
+266.8085560697229
  20
-51.53131200162941
+254.25000000000003
  30
 0.0
  11
-206.81818181818184
+269.3085560697229
  21
-51.53131200162941
+251.75000000000003
  31
 0.0
   0
@@ -2597,15 +2933,15 @@ LINE
   8
 0
  10
-206.81818181818184
+269.3085560697229
  20
-51.53131200162941
+251.75000000000003
  30
 0.0
  11
-206.81818181818184
+277.30855606972295
  21
-46.5313120016294
+251.75000000000003
  31
 0.0
   0
@@ -2615,15 +2951,15 @@ LINE
   8
 0
  10
-190.18181818181822
+277.30855606972295
  20
-46.5313120016294
+251.75000000000003
  30
 0.0
  11
-190.18181818181822
+279.8085560697229
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2633,15 +2969,15 @@ LINE
   8
 0
  10
-190.18181818181822
+279.8085560697229
  20
-51.53131200162941
+254.25000000000003
  30
 0.0
  11
-179.09090909090912
+277.30855606972295
  21
-51.53131200162941
+254.25000000000003
  31
 0.0
   0
@@ -2651,15 +2987,15 @@ LINE
   8
 0
  10
-179.09090909090912
+304.30855606972295
  20
-51.53131200162941
+158.50000000000003
  30
 0.0
  11
-179.09090909090912
+300.30855606972295
  21
-46.5313120016294
+158.50000000000003
  31
 0.0
   0
@@ -2669,15 +3005,15 @@ LINE
   8
 0
  10
-236.50000000000003
+300.30855606972295
  20
-106.16993400081472
+158.50000000000003
  30
 0.0
  11
-231.50000000000003
+300.30855606972295
  21
-106.16993400081472
+146.50000000000003
  31
 0.0
   0
@@ -2687,15 +3023,15 @@ LINE
   8
 0
  10
-231.50000000000003
+300.30855606972295
  20
-106.16993400081472
+146.50000000000003
  30
 0.0
  11
-231.50000000000003
+304.30855606972295
  21
-98.16993400081472
+146.50000000000003
  31
 0.0
   0
@@ -2705,15 +3041,15 @@ LINE
   8
 0
  10
-231.50000000000003
+304.30855606972295
  20
-98.16993400081472
+146.50000000000003
  30
 0.0
  11
-236.50000000000003
+304.30855606972295
  21
-98.16993400081472
+158.50000000000003
  31
 0.0
   0
@@ -2723,15 +3059,15 @@ LINE
   8
 0
  10
-160.50000000000003
+292.30855606972295
  20
-98.16993400081472
+157.0
  30
 0.0
  11
-165.50000000000003
+288.3085560697229
  21
-98.16993400081472
+157.0
  31
 0.0
   0
@@ -2741,15 +3077,15 @@ LINE
   8
 0
  10
-165.50000000000003
+288.3085560697229
  20
-98.16993400081472
+157.0
  30
 0.0
  11
-165.50000000000003
+288.3085560697229
  21
-106.16993400081472
+148.0
  31
 0.0
   0
@@ -2759,15 +3095,15 @@ LINE
   8
 0
  10
-165.50000000000003
+288.3085560697229
  20
-106.16993400081472
+148.0
  30
 0.0
  11
-160.50000000000003
+292.30855606972295
  21
-106.16993400081472
+148.0
  31
 0.0
   0
@@ -2777,15 +3113,15 @@ LINE
   8
 0
  10
-478.00000000000006
+292.30855606972295
  20
-150.30855600000004
+148.0
  30
 0.0
  11
-478.00000000000006
+292.30855606972295
  21
-150.30855600000004
+157.0
  31
 0.0
   0
@@ -2795,15 +3131,15 @@ LINE
   8
 0
  10
-249.00000000000003
+328.80855606972295
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-478.00000000000006
+305.80855606972295
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2813,15 +3149,15 @@ LINE
   8
 0
  10
-249.00000000000003
+305.80855606972295
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-249.00000000000003
+305.80855606972295
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2831,15 +3167,15 @@ LINE
   8
 0
  10
-310.0
+305.80855606972295
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-249.00000000000003
+328.80855606972295
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2849,15 +3185,15 @@ LINE
   8
 0
  10
-320.00000000000006
+328.80855606972295
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-310.0
+328.80855606972295
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2867,15 +3203,15 @@ LINE
   8
 0
  10
-418.00000000000006
+334.3085560697229
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-344.00000000000006
+330.3085560697229
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
@@ -2885,15 +3221,15 @@ LINE
   8
 0
  10
-418.00000000000006
+330.3085560697229
  20
-150.30855600000004
+158.50000000000003
  30
 0.0
  11
-418.00000000000006
+330.3085560697229
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2903,15 +3239,15 @@ LINE
   8
 0
  10
-249.00000000000003
+330.3085560697229
  20
-150.30855600000004
+146.50000000000003
  30
 0.0
  11
-249.00000000000003
+334.3085560697229
  21
-150.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -2921,35 +3257,33 @@ LINE
   8
 0
  10
-320.00000000000006
+334.3085560697229
  20
-116.30855600000002
+146.50000000000003
  30
 0.0
  11
-320.00000000000006
+334.3085560697229
  21
-150.30855600000004
+158.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-344.00000000000006
+356.80855606972295
  20
-150.30855600000004
+158.16666666666669
  30
 0.0
  11
-344.00000000000006
+351.80855606972295
  21
-116.30855600000002
+158.16666666666669
  31
 0.0
   0
@@ -2959,35 +3293,33 @@ LINE
   8
 0
  10
-320.00000000000006
+351.80855606972295
  20
-80.30855600000002
+158.16666666666669
  30
 0.0
  11
-320.00000000000006
+351.80855606972295
  21
-116.30855600000002
+146.83333333333337
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-320.00000000000006
+351.80855606972295
  20
-80.30855600000002
+146.83333333333337
  30
 0.0
  11
-344.00000000000006
+356.80855606972295
  21
-80.30855600000002
+146.83333333333337
  31
 0.0
   0
@@ -2997,15 +3329,15 @@ LINE
   8
 0
  10
-344.00000000000006
+233.30855606972293
  20
-116.30855600000002
+190.13862199918535
  30
 0.0
  11
-344.00000000000006
+222.30855606972293
  21
-80.30855600000002
+190.13862199918535
  31
 0.0
   0
@@ -3015,15 +3347,15 @@ LINE
   8
 0
  10
-344.00000000000006
+222.30855606972293
  20
-80.30855600000002
+190.13862199918535
  30
 0.0
  11
-344.00000000000006
+222.30855606972293
  21
-35.30855600000002
+177.13862199918535
  31
 0.0
   0
@@ -3033,15 +3365,15 @@ LINE
   8
 0
  10
-320.00000000000006
+222.30855606972293
  20
-35.30855600000002
+177.13862199918535
  30
 0.0
  11
-320.00000000000006
+233.30855606972293
  21
-80.30855600000002
+177.13862199918535
  31
 0.0
   0
@@ -3051,15 +3383,15 @@ LINE
   8
 0
  10
-344.00000000000006
+233.30855606972293
  20
-35.30855600000002
+177.13862199918535
  30
 0.0
  11
-320.00000000000006
+233.30855606972293
  21
-35.30855600000002
+190.13862199918535
  31
 0.0
   0
@@ -3069,15 +3401,15 @@ LINE
   8
 0
  10
-344.00000000000006
+201.80855606972293
  20
-150.30855600000004
+188.63862199918535
  30
 0.0
  11
-364.0
+195.8085560697229
  21
-150.30855600000004
+188.63862199918535
  31
 0.0
   0
@@ -3087,35 +3419,33 @@ LINE
   8
 0
  10
-364.0
+195.8085560697229
  20
-116.30855600000002
+188.63862199918535
  30
 0.0
  11
-344.00000000000006
+195.8085560697229
  21
-116.30855600000002
+178.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-364.0
+195.8085560697229
  20
-150.30855600000004
+178.63862199918535
  30
 0.0
  11
-364.0
+201.80855606972293
  21
-116.30855600000002
+178.63862199918535
  31
 0.0
   0
@@ -3125,15 +3455,15 @@ LINE
   8
 0
  10
-364.0
+201.80855606972293
  20
-150.30855600000004
+178.63862199918535
  30
 0.0
  11
-388.00000000000006
+201.80855606972293
  21
-150.30855600000004
+188.63862199918535
  31
 0.0
   0
@@ -3143,35 +3473,33 @@ LINE
   8
 0
  10
-388.00000000000006
+201.399465160632
  20
-116.30855600000002
+239.27724399837064
  30
 0.0
  11
-364.0
+201.399465160632
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-388.00000000000006
+201.399465160632
  20
-150.30855600000004
+234.27724399837064
  30
 0.0
  11
-388.00000000000006
+212.4903742515411
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
@@ -3181,15 +3509,15 @@ LINE
   8
 0
  10
-388.00000000000006
+212.4903742515411
  20
-150.30855600000004
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+212.4903742515411
  21
-150.30855600000004
+239.27724399837064
  31
 0.0
   0
@@ -3199,35 +3527,33 @@ LINE
   8
 0
  10
-408.00000000000006
+229.12673788790474
  20
-116.30855600000002
+239.27724399837064
  30
 0.0
  11
-388.00000000000006
+229.12673788790474
  21
-116.30855600000002
+234.27724399837064
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-408.00000000000006
+229.12673788790474
  20
-116.30855600000002
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+240.21764697881383
  21
-150.30855600000004
+234.27724399837064
  31
 0.0
   0
@@ -3237,15 +3563,15 @@ LINE
   8
 0
  10
-418.00000000000006
+240.21764697881383
  20
-116.30855600000002
+234.27724399837064
  30
 0.0
  11
-408.00000000000006
+240.21764697881383
  21
-116.30855600000002
+239.27724399837064
  31
 0.0
   0
@@ -3255,15 +3581,15 @@ LINE
   8
 0
  10
-418.00000000000006
+182.80855606972293
  20
-150.30855600000004
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+187.80855606972293
  21
-116.30855600000002
+179.63862199918535
  31
 0.0
   0
@@ -3273,15 +3599,15 @@ LINE
   8
 0
  10
-408.00000000000006
+187.80855606972293
  20
-150.30855600000004
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+187.80855606972293
  21
-150.30855600000004
+187.63862199918535
  31
 0.0
   0
@@ -3291,15 +3617,15 @@ LINE
   8
 0
  10
-478.00000000000006
+187.80855606972293
  20
-150.30855600000004
+187.63862199918535
  30
 0.0
  11
-478.00000000000006
+182.80855606972293
  21
-88.65427796513858
+187.63862199918535
  31
 0.0
   0
@@ -3309,35 +3635,33 @@ LINE
   8
 0
  10
-418.00000000000006
+258.80855606972295
  20
-88.65427796513858
+187.63862199918535
  30
 0.0
  11
-418.00000000000006
+253.80855606972293
  21
-150.30855600000004
+187.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-418.00000000000006
+253.80855606972293
  20
-88.65427796513858
+187.63862199918535
  30
 0.0
  11
-478.00000000000006
+253.80855606972293
  21
-88.65427796513858
+179.63862199918535
  31
 0.0
   0
@@ -3347,55 +3671,51 @@ LINE
   8
 0
  10
-418.00000000000006
+253.80855606972293
  20
-61.65427796513857
+179.63862199918535
  30
 0.0
  11
-418.00000000000006
+258.80855606972295
  21
-88.65427796513858
+179.63862199918535
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-478.00000000000006
+477.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+369.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-478.00000000000006
+538.3085560697231
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+477.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3405,15 +3725,15 @@ LINE
   8
 0
  10
-418.00000000000006
+538.3085560697231
  20
--6.972288701945219e-08
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+538.3085560697231
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3423,15 +3743,15 @@ LINE
   8
 0
  10
-478.00000000000006
+369.30855606972295
  20
--6.972288701945219e-08
+135.50000000000003
  30
 0.0
  11
-418.00000000000006
+369.30855606972295
  21
--6.972288701945219e-08
+135.50000000000003
  31
 0.0
   0
@@ -3441,15 +3761,15 @@ LINE
   8
 0
  10
-478.00000000000006
+477.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+538.3085560697231
  21
--6.972288701945219e-08
+135.50000000000003
  31
 0.0
   0
@@ -3459,15 +3779,15 @@ LINE
   8
 0
  10
-478.00000000000006
+467.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-495.00000000000006
+477.30855606972295
  21
-88.65427796513858
+135.50000000000003
  31
 0.0
   0
@@ -3477,35 +3797,33 @@ LINE
   8
 0
  10
-495.00000000000006
+369.30855606972295
  20
-61.65427796513857
+135.50000000000003
  30
 0.0
  11
-478.00000000000006
+443.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-495.00000000000006
+369.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-495.00000000000006
+369.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3515,15 +3833,15 @@ LINE
   8
 0
  10
-495.00000000000006
+538.3085560697231
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-555.0
+538.3085560697231
  21
-88.65427796513858
+135.50000000000003
  31
 0.0
   0
@@ -3533,15 +3851,15 @@ LINE
   8
 0
  10
-555.0
+467.30855606972295
  20
-61.65427796513857
+169.50000000000003
  30
 0.0
  11
-495.00000000000006
+467.30855606972295
  21
-61.65427796513857
+135.50000000000003
  31
 0.0
   0
@@ -3553,15 +3871,15 @@ DOTTED
   8
 0
  10
-555.0
+443.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-555.0
+443.30855606972295
  21
-61.65427796513857
+169.50000000000003
  31
 0.0
   0
@@ -3571,15 +3889,35 @@ LINE
   8
 0
  10
-555.0
+467.30855606972295
  20
-88.65427796513858
+205.50000000000003
  30
 0.0
  11
-572.0
+467.30855606972295
  21
-88.65427796513858
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+3
+  8
+0
+ 10
+467.30855606972295
+ 20
+205.50000000000003
+ 30
+0.0
+ 11
+443.30855606972295
+ 21
+205.50000000000003
  31
 0.0
   0
@@ -3589,35 +3927,33 @@ LINE
   8
 0
  10
-572.0
+443.30855606972295
  20
-61.65427796513857
+169.50000000000003
  30
 0.0
  11
-555.0
+443.30855606972295
  21
-61.65427796513857
+205.50000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-572.0
+443.30855606972295
  20
-61.65427796513857
+205.50000000000003
  30
 0.0
  11
-572.0
+443.30855606972295
  21
-88.65427796513858
+250.50000000000003
  31
 0.0
   0
@@ -3627,15 +3963,15 @@ LINE
   8
 0
  10
-582.0
+467.30855606972295
  20
-61.65427796513857
+250.50000000000003
  30
 0.0
  11
-572.0
+467.30855606972295
  21
-61.65427796513857
+205.50000000000003
  31
 0.0
   0
@@ -3645,15 +3981,15 @@ LINE
   8
 0
  10
-582.0
+443.30855606972295
  20
-88.65427796513858
+250.50000000000003
  30
 0.0
  11
-582.0
+467.30855606972295
  21
-61.65427796513857
+250.50000000000003
  31
 0.0
   0
@@ -3663,15 +3999,53 @@ LINE
   8
 0
  10
-572.0
+443.30855606972295
+ 20
+135.50000000000003
+ 30
+0.0
+ 11
+423.30855606972295
+ 21
+135.50000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+423.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+443.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+423.30855606972295
  20
-88.65427796513858
+135.50000000000003
  30
 0.0
  11
-582.0
+423.30855606972295
  21
-88.65427796513858
+169.50000000000003
  31
 0.0
   0
@@ -3681,15 +4055,15 @@ LINE
   8
 0
  10
-271.4318181818182
+423.30855606972295
  20
-158.058556
+135.50000000000003
  30
 0.0
  11
-259.8409090909092
+399.30855606972295
  21
-158.058556
+135.50000000000003
  31
 0.0
   0
@@ -3699,15 +4073,35 @@ LINE
   8
 0
  10
-259.8409090909092
+399.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+423.30855606972295
+ 21
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+399.30855606972295
  20
-158.058556
+135.50000000000003
  30
 0.0
  11
-259.8409090909092
+399.30855606972295
  21
-157.55855600000004
+169.50000000000003
  31
 0.0
   0
@@ -3717,15 +4111,15 @@ LINE
   8
 0
  10
-259.8409090909092
+399.30855606972295
  20
-157.55855600000004
+135.50000000000003
  30
 0.0
  11
-271.4318181818182
+379.30855606972295
  21
-157.55855600000004
+135.50000000000003
  31
 0.0
   0
@@ -3735,15 +4129,35 @@ LINE
   8
 0
  10
-271.4318181818182
+379.30855606972295
  20
-157.55855600000004
+169.50000000000003
  30
 0.0
  11
-271.4318181818182
+399.30855606972295
  21
-158.058556
+169.50000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+0
+ 10
+379.30855606972295
+ 20
+169.50000000000003
+ 30
+0.0
+ 11
+379.30855606972295
+ 21
+135.50000000000003
  31
 0.0
   0
@@ -3753,15 +4167,15 @@ LINE
   8
 0
  10
-299.159090909091
+369.30855606972295
  20
-158.058556
+169.50000000000003
  30
 0.0
  11
-287.56818181818187
+379.30855606972295
  21
-158.058556
+169.50000000000003
  31
 0.0
   0
@@ -3771,15 +4185,15 @@ LINE
   8
 0
  10
-287.56818181818187
+369.30855606972295
  20
-158.058556
+135.50000000000003
  30
 0.0
  11
-287.56818181818187
+369.30855606972295
  21
-157.55855600000004
+169.50000000000003
  31
 0.0
   0
@@ -3789,15 +4203,15 @@ LINE
   8
 0
  10
-287.56818181818187
+379.30855606972295
  20
-157.55855600000004
+135.50000000000003
  30
 0.0
  11
-299.159090909091
+369.30855606972295
  21
-157.55855600000004
+135.50000000000003
  31
 0.0
   0
@@ -3807,15 +4221,15 @@ LINE
   8
 0
  10
-299.159090909091
+499.74037425154114
  20
-157.55855600000004
+143.25
  30
 0.0
  11
-299.159090909091
+488.1494651606321
  21
-158.058556
+143.25
  31
 0.0
   0
@@ -3825,15 +4239,15 @@ LINE
   8
 0
  10
-327.75
+488.1494651606321
  20
-127.39188933333335
+143.25
  30
 0.0
  11
-327.75
+488.1494651606321
  21
-139.2252226666667
+142.75000000000003
  31
 0.0
   0
@@ -3843,15 +4257,15 @@ LINE
   8
 0
  10
-327.75
+488.1494651606321
  20
-139.2252226666667
+142.75000000000003
  30
 0.0
  11
-327.25
+499.74037425154114
  21
-139.2252226666667
+142.75000000000003
  31
 0.0
   0
@@ -3861,15 +4275,15 @@ LINE
   8
 0
  10
-327.25
+499.74037425154114
  20
-139.2252226666667
+142.75000000000003
  30
 0.0
  11
-327.25
+499.74037425154114
  21
-127.39188933333335
+143.25
  31
 0.0
   0
@@ -3879,15 +4293,15 @@ LINE
   8
 0
  10
-327.25
+527.4676469788138
  20
-127.39188933333335
+143.25
  30
 0.0
  11
-327.75
+515.8767378879047
  21
-127.39188933333335
+143.25
  31
 0.0
   0
@@ -3897,15 +4311,15 @@ LINE
   8
 0
  10
-336.25
+515.8767378879047
  20
-39.30855600000002
+143.25
  30
 0.0
  11
-327.75
+515.8767378879047
  21
-39.30855600000002
+142.75000000000003
  31
 0.0
   0
@@ -3915,15 +4329,15 @@ LINE
   8
 0
  10
-327.75
+515.8767378879047
  20
-39.30855600000002
+142.75000000000003
  30
 0.0
  11
-327.75
+527.4676469788138
  21
-38.80855600000002
+142.75000000000003
  31
 0.0
   0
@@ -3933,15 +4347,15 @@ LINE
   8
 0
  10
-327.75
+527.4676469788138
  20
-38.80855600000002
+142.75000000000003
  30
 0.0
  11
-336.25
+527.4676469788138
  21
-38.80855600000002
+143.25
  31
 0.0
   0
@@ -3951,15 +4365,15 @@ LINE
   8
 0
  10
-336.25
+515.8767378879047
  20
-38.80855600000002
+127.75000000000001
  30
 0.0
  11
-336.25
+527.4676469788138
  21
-39.30855600000002
+127.75000000000001
  31
 0.0
   0
@@ -3969,15 +4383,15 @@ LINE
   8
 0
  10
-363.00000000000006
+527.4676469788138
  20
-139.30855600000004
+127.75000000000001
  30
 0.0
  11
-359.0
+527.4676469788138
  21
-139.30855600000004
+128.25000000000003
  31
 0.0
   0
@@ -3987,15 +4401,15 @@ LINE
   8
 0
  10
-359.0
+527.4676469788138
  20
-139.30855600000004
+128.25000000000003
  30
 0.0
  11
-359.0
+515.8767378879047
  21
-127.30855600000004
+128.25000000000003
  31
 0.0
   0
@@ -4005,15 +4419,15 @@ LINE
   8
 0
  10
-359.0
+515.8767378879047
  20
-127.30855600000004
+128.25000000000003
  30
 0.0
  11
-363.00000000000006
+515.8767378879047
  21
-127.30855600000004
+127.75000000000001
  31
 0.0
   0
@@ -4023,15 +4437,15 @@ LINE
   8
 0
  10
-363.00000000000006
+488.1494651606321
  20
-127.30855600000004
+127.75000000000001
  30
 0.0
  11
-363.00000000000006
+499.74037425154114
  21
-139.30855600000004
+127.75000000000001
  31
 0.0
   0
@@ -4041,15 +4455,15 @@ LINE
   8
 0
  10
-351.0
+499.74037425154114
  20
-137.808556
+127.75000000000001
  30
 0.0
  11
-347.00000000000006
+499.74037425154114
  21
-137.808556
+128.25000000000003
  31
 0.0
   0
@@ -4059,15 +4473,15 @@ LINE
   8
 0
  10
-347.00000000000006
+499.74037425154114
  20
-137.808556
+128.25000000000003
  30
 0.0
  11
-347.00000000000006
+488.1494651606321
  21
-128.808556
+128.25000000000003
  31
 0.0
   0
@@ -4077,15 +4491,15 @@ LINE
   8
 0
  10
-347.00000000000006
+488.1494651606321
  20
-128.808556
+128.25000000000003
  30
 0.0
  11
-351.0
+488.1494651606321
  21
-128.808556
+127.75000000000001
  31
 0.0
   0
@@ -4095,15 +4509,15 @@ LINE
   8
 0
  10
-351.0
+459.55855606972295
  20
-128.808556
+158.41666666666669
  30
 0.0
  11
-351.0
+459.55855606972295
  21
-137.808556
+146.58333333333337
  31
 0.0
   0
@@ -4113,15 +4527,15 @@ LINE
   8
 0
  10
-387.50000000000006
+459.55855606972295
  20
-139.30855600000004
+146.58333333333337
  30
 0.0
  11
-364.5
+460.05855606972295
  21
-139.30855600000004
+146.58333333333337
  31
 0.0
   0
@@ -4131,15 +4545,15 @@ LINE
   8
 0
  10
-364.5
+460.05855606972295
  20
-139.30855600000004
+146.58333333333337
  30
 0.0
  11
-364.5
+460.05855606972295
  21
-127.30855600000004
+158.41666666666669
  31
 0.0
   0
@@ -4149,15 +4563,15 @@ LINE
   8
 0
  10
-364.5
+460.05855606972295
  20
-127.30855600000004
+158.41666666666669
  30
 0.0
  11
-387.50000000000006
+459.55855606972295
  21
-127.30855600000004
+158.41666666666669
  31
 0.0
   0
@@ -4167,15 +4581,15 @@ LINE
   8
 0
  10
-387.50000000000006
+451.05855606972295
  20
-127.30855600000004
+246.50000000000003
  30
 0.0
  11
-387.50000000000006
+459.55855606972295
  21
-139.30855600000004
+246.50000000000003
  31
 0.0
   0
@@ -4185,15 +4599,15 @@ LINE
   8
 0
  10
-393.00000000000006
+459.55855606972295
  20
-139.30855600000004
+246.50000000000003
  30
 0.0
  11
-389.00000000000006
+459.55855606972295
  21
-139.30855600000004
+247.00000000000003
  31
 0.0
   0
@@ -4203,15 +4617,15 @@ LINE
   8
 0
  10
-389.00000000000006
+459.55855606972295
  20
-139.30855600000004
+247.00000000000003
  30
 0.0
  11
-389.00000000000006
+451.05855606972295
  21
-127.30855600000004
+247.00000000000003
  31
 0.0
   0
@@ -4221,15 +4635,15 @@ LINE
   8
 0
  10
-389.00000000000006
+451.05855606972295
  20
-127.30855600000004
+247.00000000000003
  30
 0.0
  11
-393.00000000000006
+451.05855606972295
  21
-127.30855600000004
+246.50000000000003
  31
 0.0
   0
@@ -4239,15 +4653,15 @@ LINE
   8
 0
  10
-393.00000000000006
+424.30855606972295
  20
-127.30855600000004
+146.50000000000003
  30
 0.0
  11
-393.00000000000006
+428.30855606972295
  21
-139.30855600000004
+146.50000000000003
  31
 0.0
   0
@@ -4257,15 +4671,15 @@ LINE
   8
 0
  10
-415.50000000000006
+428.30855606972295
  20
-138.9752226666667
+146.50000000000003
  30
 0.0
  11
-410.50000000000006
+428.30855606972295
  21
-138.9752226666667
+158.50000000000003
  31
 0.0
   0
@@ -4275,15 +4689,15 @@ LINE
   8
 0
  10
-410.50000000000006
+428.30855606972295
  20
-138.9752226666667
+158.50000000000003
  30
 0.0
  11
-410.50000000000006
+424.30855606972295
  21
-127.64188933333335
+158.50000000000003
  31
 0.0
   0
@@ -4293,15 +4707,15 @@ LINE
   8
 0
  10
-410.50000000000006
+424.30855606972295
  20
-127.64188933333335
+158.50000000000003
  30
 0.0
  11
-415.50000000000006
+424.30855606972295
  21
-127.64188933333335
+146.50000000000003
  31
 0.0
   0
@@ -4311,15 +4725,15 @@ LINE
   8
 0
  10
-481.00000000000006
+436.30855606972295
  20
-84.15427796513858
+148.0
  30
 0.0
  11
-475.00000000000006
+440.30855606972295
  21
-84.15427796513858
+148.0
  31
 0.0
   0
@@ -4329,15 +4743,15 @@ LINE
   8
 0
  10
-475.00000000000006
+440.30855606972295
  20
-84.15427796513858
+148.0
  30
 0.0
  11
-475.00000000000006
+440.30855606972295
  21
-66.15427796513858
+157.0
  31
 0.0
   0
@@ -4347,15 +4761,15 @@ LINE
   8
 0
  10
-475.00000000000006
+440.30855606972295
  20
-66.15427796513858
+157.0
  30
 0.0
  11
-481.00000000000006
+436.30855606972295
  21
-66.15427796513858
+157.0
  31
 0.0
   0
@@ -4365,15 +4779,15 @@ LINE
   8
 0
  10
-481.00000000000006
+436.30855606972295
  20
-66.15427796513858
+157.0
  30
 0.0
  11
-481.00000000000006
+436.30855606972295
  21
-84.15427796513858
+148.0
  31
 0.0
   0
@@ -4383,15 +4797,15 @@ LINE
   8
 0
  10
-425.75000000000006
+399.80855606972295
  20
-70.40427796513856
+146.50000000000003
  30
 0.0
  11
-425.75000000000006
+422.80855606972295
  21
-79.90427796513858
+146.50000000000003
  31
 0.0
   0
@@ -4401,15 +4815,15 @@ LINE
   8
 0
  10
-425.75000000000006
+422.80855606972295
  20
-79.90427796513858
+146.50000000000003
  30
 0.0
  11
-425.25000000000006
+422.80855606972295
  21
-79.90427796513858
+158.50000000000003
  31
 0.0
   0
@@ -4419,15 +4833,15 @@ LINE
   8
 0
  10
-425.25000000000006
+422.80855606972295
  20
-79.90427796513858
+158.50000000000003
  30
 0.0
  11
-425.25000000000006
+399.80855606972295
  21
-70.40427796513856
+158.50000000000003
  31
 0.0
   0
@@ -4437,15 +4851,15 @@ LINE
   8
 0
  10
-425.25000000000006
+399.80855606972295
  20
-70.40427796513856
+158.50000000000003
  30
 0.0
  11
-425.75000000000006
+399.80855606972295
  21
-70.40427796513856
+146.50000000000003
  31
 0.0
   0
@@ -4455,15 +4869,15 @@ LINE
   8
 0
  10
-458.25000000000006
+394.3085560697229
  20
-7.749999930277114
+146.50000000000003
  30
 0.0
  11
-437.75000000000006
+398.3085560697229
  21
-7.749999930277114
+146.50000000000003
  31
 0.0
   0
@@ -4473,15 +4887,15 @@ LINE
   8
 0
  10
-437.75000000000006
+398.3085560697229
  20
-7.749999930277114
+146.50000000000003
  30
 0.0
  11
-437.75000000000006
+398.3085560697229
  21
-7.249999930277114
+158.50000000000003
  31
 0.0
   0
@@ -4491,15 +4905,15 @@ LINE
   8
 0
  10
-437.75000000000006
+398.3085560697229
  20
-7.249999930277114
+158.50000000000003
  30
 0.0
  11
-458.25000000000006
+394.3085560697229
  21
-7.249999930277114
+158.50000000000003
  31
 0.0
   0
@@ -4509,15 +4923,15 @@ LINE
   8
 0
  10
-458.25000000000006
+394.3085560697229
  20
-7.249999930277114
+158.50000000000003
  30
 0.0
  11
-458.25000000000006
+394.3085560697229
  21
-7.749999930277114
+146.50000000000003
  31
 0.0
   0
@@ -4527,15 +4941,15 @@ LINE
   8
 0
  10
-579.5000000000001
+371.80855606972295
  20
-79.65427796513858
+146.83333333333337
  30
 0.0
  11
-574.5
+376.80855606972295
  21
-79.65427796513858
+146.83333333333337
  31
 0.0
   0
@@ -4545,15 +4959,15 @@ LINE
   8
 0
  10
-574.5
+376.80855606972295
  20
-79.65427796513858
+146.83333333333337
  30
 0.0
  11
-574.5
+376.80855606972295
  21
-70.65427796513858
+158.16666666666669
  31
 0.0
   0
@@ -4563,15 +4977,15 @@ LINE
   8
 0
  10
-574.5
+376.80855606972295
  20
-70.65427796513858
+158.16666666666669
  30
 0.0
  11
-579.5000000000001
+371.80855606972295
  21
-70.65427796513858
+158.16666666666669
  31
 0.0
   0
@@ -4583,15 +4997,15 @@ DOTTED
   8
 0
  10
-625.0000000000001
+581.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4603,15 +5017,15 @@ DOTTED
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4623,15 +5037,15 @@ DOTTED
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4643,15 +5057,15 @@ DOTTED
   8
 0
  10
-625.0000000000001
+581.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4661,15 +5075,15 @@ LINE
   8
 0
  10
-625.0000000000001
+581.3085560697231
  20
-131.30855600000004
+116.50000000000001
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4679,15 +5093,15 @@ LINE
   8
 0
  10
-685.0000000000001
+641.3085560697231
  20
-131.30855600000004
+116.50000000000001
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-131.30855600000004
+116.50000000000001
  31
 0.0
   0
@@ -4697,15 +5111,15 @@ LINE
   8
 0
  10
-685.0000000000001
+641.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-685.0000000000001
+641.3085560697231
  21
-131.30855600000004
+116.50000000000001
  31
 0.0
   0
@@ -4715,15 +5129,15 @@ LINE
   8
 0
  10
-693.0000000000001
+649.308556069723
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4733,15 +5147,15 @@ LINE
   8
 0
  10
-693.0000000000001
+649.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-693.0000000000001
+649.308556069723
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -4751,15 +5165,15 @@ LINE
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-693.0000000000001
+649.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4771,15 +5185,15 @@ DOTTED
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4789,15 +5203,15 @@ LINE
   8
 0
  10
-626.0000000000001
+582.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4809,15 +5223,15 @@ DOTTED
   8
 0
  10
-626.0000000000001
+582.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-626.0000000000001
+582.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4827,15 +5241,15 @@ LINE
   8
 0
  10
-710.0
+666.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-686.0000000000001
+642.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4847,15 +5261,15 @@ DOTTED
   8
 0
  10
-710.0
+666.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-710.0
+666.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4865,15 +5279,15 @@ LINE
   8
 0
  10
-686.0000000000001
+642.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-710.0
+666.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4883,15 +5297,15 @@ LINE
   8
 0
  10
-770.0000000000001
+726.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-710.0
+666.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4901,15 +5315,15 @@ LINE
   8
 0
  10
-770.0000000000001
+726.3085560697231
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-770.0000000000001
+726.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4919,15 +5333,15 @@ LINE
   8
 0
  10
-710.0
+666.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-770.0000000000001
+726.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4937,15 +5351,15 @@ LINE
   8
 0
  10
-626.0000000000001
+582.3085560697231
  20
-162.308556
+147.5
  30
 0.0
  11
-602.0
+558.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4955,15 +5369,15 @@ LINE
   8
 0
  10
-602.0
+558.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-626.0000000000001
+582.3085560697231
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -4975,15 +5389,15 @@ DOTTED
   8
 0
  10
-602.0
+558.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-602.0
+558.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -4993,15 +5407,15 @@ LINE
   8
 0
  10
-592.0
+548.308556069723
  20
-223.30855600000004
+208.50000000000003
  30
 0.0
  11
-602.0
+558.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5011,15 +5425,15 @@ LINE
   8
 0
  10
-592.0
+548.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-592.0
+548.308556069723
  21
-223.30855600000004
+208.50000000000003
  31
 0.0
   0
@@ -5029,15 +5443,15 @@ LINE
   8
 0
  10
-602.0
+558.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-592.0
+548.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5047,15 +5461,15 @@ LINE
   8
 0
  10
-618.0
+574.308556069723
  20
-162.308556
+147.5
  30
 0.0
  11
-625.0000000000001
+581.3085560697231
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5065,15 +5479,15 @@ LINE
   8
 0
  10
-618.0
+574.308556069723
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-618.0
+574.308556069723
  21
-162.308556
+147.5
  31
 0.0
   0
@@ -5083,15 +5497,15 @@ LINE
   8
 0
  10
-625.0000000000001
+581.3085560697231
  20
-138.30855600000004
+123.50000000000001
  30
 0.0
  11
-618.0
+574.308556069723
  21
-138.30855600000004
+123.50000000000001
  31
 0.0
   0
@@ -5101,15 +5515,15 @@ LINE
   8
 0
  10
-674.0909090909092
+630.3994651606322
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-677.5909090909091
+633.8994651606321
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5119,15 +5533,15 @@ LINE
   8
 0
  10
-677.5909090909091
+633.8994651606321
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-674.0909090909092
+630.3994651606322
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5137,15 +5551,15 @@ LINE
   8
 0
  10
-674.0909090909092
+630.3994651606322
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-663.1818181818181
+619.4903742515411
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5155,15 +5569,15 @@ LINE
   8
 0
  10
-663.1818181818181
+619.4903742515411
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-659.6818181818184
+615.9903742515413
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5173,15 +5587,15 @@ LINE
   8
 0
  10
-659.6818181818184
+615.9903742515413
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-663.1818181818181
+619.4903742515411
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5191,15 +5605,15 @@ LINE
   8
 0
  10
-646.818181818182
+603.1267378879049
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-650.318181818182
+606.6267378879048
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5209,15 +5623,15 @@ LINE
   8
 0
  10
-650.318181818182
+606.6267378879048
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-646.818181818182
+603.1267378879049
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5227,15 +5641,15 @@ LINE
   8
 0
  10
-646.818181818182
+603.1267378879049
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-635.909090909091
+592.2176469788138
  21
-136.55855600000004
+121.75000000000001
  31
 0.0
   0
@@ -5245,15 +5659,15 @@ LINE
   8
 0
  10
-635.909090909091
+592.2176469788138
  20
-136.55855600000004
+121.75000000000001
  30
 0.0
  11
-632.4090909090909
+588.717646978814
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5263,15 +5677,15 @@ LINE
   8
 0
  10
-632.4090909090909
+588.717646978814
  20
-133.058556
+118.25000000000001
  30
 0.0
  11
-635.909090909091
+592.2176469788138
  21
-133.058556
+118.25000000000001
  31
 0.0
   0
@@ -5281,15 +5695,15 @@ LINE
   8
 0
  10
-691.2500000000001
+647.5585560697231
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-687.75
+644.058556069723
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
@@ -5299,15 +5713,15 @@ LINE
   8
 0
  10
-687.75
+644.058556069723
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-687.75
+644.058556069723
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -5317,15 +5731,15 @@ LINE
   8
 0
  10
-687.75
+644.058556069723
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-691.2500000000001
+647.5585560697231
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -5335,15 +5749,15 @@ LINE
   8
 0
  10
-633.5000000000001
+589.8085560697231
  20
-213.80855600000004
+199.00000000000003
  30
 0.0
  11
-633.5000000000001
+589.8085560697231
  21
-195.80855600000004
+181.00000000000003
  31
 0.0
   0
@@ -5353,15 +5767,15 @@ LINE
   8
 0
  10
-633.5000000000001
+589.8085560697231
  20
-195.80855600000004
+181.00000000000003
  30
 0.0
  11
-668.5000000000001
+624.8085560697231
  21
-195.80855600000004
+181.00000000000003
  31
 0.0
   0
@@ -5371,15 +5785,15 @@ LINE
   8
 0
  10
-668.5000000000001
+624.8085560697231
  20
-195.80855600000004
+181.00000000000003
  30
 0.0
  11
-668.5000000000001
+624.8085560697231
  21
-213.80855600000004
+199.00000000000003
  31
 0.0
   0
@@ -5389,15 +5803,15 @@ LINE
   8
 0
  10
-668.5000000000001
+624.8085560697231
  20
-213.80855600000004
+199.00000000000003
  30
 0.0
  11
-633.5000000000001
+589.8085560697231
  21
-213.80855600000004
+199.00000000000003
  31
 0.0
   0
@@ -5407,15 +5821,15 @@ LINE
   8
 0
  10
-686.5000000000001
+642.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-686.5000000000001
+642.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -5425,15 +5839,15 @@ LINE
   8
 0
  10
-686.5000000000001
+642.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-689.5000000000001
+645.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -5443,15 +5857,15 @@ LINE
   8
 0
  10
-689.5000000000001
+645.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-689.5000000000001
+645.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -5461,15 +5875,15 @@ LINE
   8
 0
  10
-689.5000000000001
+645.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-686.5000000000001
+642.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -5479,15 +5893,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -5497,15 +5911,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -5515,15 +5929,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -5533,15 +5947,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -5551,15 +5965,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5569,15 +5983,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5587,15 +6001,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5605,15 +6019,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5623,15 +6037,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5641,15 +6055,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -5659,15 +6073,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5677,15 +6091,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -5695,15 +6109,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5713,15 +6127,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5731,15 +6145,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5749,15 +6163,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5767,15 +6181,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5785,15 +6199,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -5803,15 +6217,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5821,15 +6235,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -5839,15 +6253,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5857,15 +6271,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5875,15 +6289,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5893,15 +6307,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5911,15 +6325,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5929,15 +6343,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -5947,15 +6361,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5965,15 +6379,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -5983,15 +6397,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6001,15 +6415,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6019,15 +6433,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6037,15 +6451,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6055,15 +6469,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6073,15 +6487,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -6091,15 +6505,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6109,15 +6523,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -6127,15 +6541,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6145,15 +6559,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6163,15 +6577,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6181,15 +6595,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6199,15 +6613,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6217,15 +6631,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -6235,15 +6649,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6253,15 +6667,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -6271,15 +6685,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6289,15 +6703,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6307,15 +6721,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6325,15 +6739,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6343,15 +6757,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6361,15 +6775,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -6379,15 +6793,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6397,15 +6811,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -6415,15 +6829,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6433,15 +6847,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6451,15 +6865,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6469,15 +6883,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6487,15 +6901,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6505,15 +6919,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -6523,15 +6937,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6541,15 +6955,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -6559,15 +6973,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6577,15 +6991,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6595,15 +7009,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6613,15 +7027,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6631,15 +7045,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6649,15 +7063,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -6667,15 +7081,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6685,15 +7099,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -6703,15 +7117,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6721,15 +7135,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6739,15 +7153,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6757,15 +7171,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6775,15 +7189,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6793,15 +7207,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -6811,15 +7225,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6829,15 +7243,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -6847,15 +7261,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6865,15 +7279,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6883,15 +7297,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6901,15 +7315,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6919,15 +7333,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6937,15 +7351,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -6955,15 +7369,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6973,15 +7387,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -6991,15 +7405,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7009,15 +7423,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7027,15 +7441,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7045,15 +7459,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7063,15 +7477,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7081,15 +7495,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -7099,15 +7513,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7117,15 +7531,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -7135,15 +7549,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7153,15 +7567,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7171,15 +7585,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7189,15 +7603,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7207,15 +7621,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7225,15 +7639,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -7243,15 +7657,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7261,15 +7675,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -7279,15 +7693,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7297,15 +7711,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7315,15 +7729,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7333,15 +7747,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7351,15 +7765,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7369,15 +7783,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -7387,15 +7801,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7405,15 +7819,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -7423,15 +7837,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7441,15 +7855,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7459,15 +7873,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7477,15 +7891,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7495,15 +7909,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7513,15 +7927,15 @@ LINE
   8
 0
  10
-707.5000000000001
+663.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -7531,15 +7945,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-708.5000000000001
+664.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7549,15 +7963,15 @@ LINE
   8
 0
  10
-708.5000000000001
+664.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-707.5000000000001
+663.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -7567,15 +7981,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -7585,15 +7999,15 @@ LINE
   8
 0
  10
-687.5000000000001
+643.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -7603,15 +8017,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-688.5000000000001
+644.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -7621,15 +8035,15 @@ LINE
   8
 0
  10
-688.5000000000001
+644.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-687.5000000000001
+643.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -7639,15 +8053,15 @@ LINE
   8
 0
  10
-706.5000000000001
+662.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-706.5000000000001
+662.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -7657,15 +8071,15 @@ LINE
   8
 0
  10
-706.5000000000001
+662.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-709.5
+665.808556069723
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -7675,15 +8089,15 @@ LINE
   8
 0
  10
-709.5
+665.808556069723
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-709.5
+665.808556069723
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -7693,15 +8107,15 @@ LINE
   8
 0
  10
-709.5
+665.808556069723
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-706.5000000000001
+662.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -7711,15 +8125,15 @@ LINE
   8
 0
  10
-702.2500000000001
+658.5585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -7729,15 +8143,15 @@ LINE
   8
 0
  10
-693.7500000000001
+650.0585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -7747,15 +8161,15 @@ LINE
   8
 0
  10
-693.7500000000001
+650.0585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -7765,15 +8179,15 @@ LINE
   8
 0
  10
-702.2500000000001
+658.5585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -7783,15 +8197,15 @@ LINE
   8
 0
  10
-693.7500000000001
+650.0585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -7801,15 +8215,15 @@ LINE
   8
 0
  10
-702.2500000000001
+658.5585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-702.2500000000001
+658.5585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -7819,15 +8233,15 @@ LINE
   8
 0
  10
-702.2500000000001
+658.5585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -7837,15 +8251,15 @@ LINE
   8
 0
  10
-693.7500000000001
+650.0585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-693.7500000000001
+650.0585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -7855,15 +8269,15 @@ LINE
   8
 0
  10
-725.0000000000001
+681.3085560697231
  20
-213.30855600000004
+198.50000000000003
  30
 0.0
  11
-725.0000000000001
+681.3085560697231
  21
-200.30855600000004
+185.50000000000003
  31
 0.0
   0
@@ -7873,15 +8287,15 @@ LINE
   8
 0
  10
-725.0000000000001
+681.3085560697231
  20
-200.30855600000004
+185.50000000000003
  30
 0.0
  11
-755.0
+711.308556069723
  21
-200.30855600000004
+185.50000000000003
  31
 0.0
   0
@@ -7891,15 +8305,15 @@ LINE
   8
 0
  10
-755.0
+711.308556069723
  20
-200.30855600000004
+185.50000000000003
  30
 0.0
  11
-755.0
+711.308556069723
  21
-213.30855600000004
+198.50000000000003
  31
 0.0
   0
@@ -7909,15 +8323,15 @@ LINE
   8
 0
  10
-755.0
+711.308556069723
  20
-213.30855600000004
+198.50000000000003
  30
 0.0
  11
-725.0000000000001
+681.3085560697231
  21
-213.30855600000004
+198.50000000000003
  31
 0.0
   0
@@ -7927,15 +8341,15 @@ LINE
   8
 0
  10
-732.0681818181819
+688.3767378879048
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-720.6590909090909
+676.9676469788138
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -7945,15 +8359,15 @@ LINE
   8
 0
  10
-720.6590909090909
+676.9676469788138
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-720.6590909090909
+676.9676469788138
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -7963,15 +8377,15 @@ LINE
   8
 0
  10
-720.6590909090909
+676.9676469788138
  20
-167.308556
+152.5
  30
 0.0
  11
-732.0681818181819
+688.3767378879048
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -7981,15 +8395,15 @@ LINE
   8
 0
  10
-732.0681818181819
+688.3767378879048
  20
-167.308556
+152.5
  30
 0.0
  11
-732.0681818181819
+688.3767378879048
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -7999,15 +8413,15 @@ LINE
   8
 0
  10
-759.3409090909092
+715.6494651606322
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-747.9318181818181
+704.2403742515411
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -8017,15 +8431,15 @@ LINE
   8
 0
  10
-747.9318181818181
+704.2403742515411
  20
-167.80855600000004
+153.00000000000003
  30
 0.0
  11
-747.9318181818181
+704.2403742515411
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -8035,15 +8449,15 @@ LINE
   8
 0
  10
-747.9318181818181
+704.2403742515411
  20
-167.308556
+152.5
  30
 0.0
  11
-759.3409090909092
+715.6494651606322
  21
-167.308556
+152.5
  31
 0.0
   0
@@ -8053,15 +8467,15 @@ LINE
   8
 0
  10
-759.3409090909092
+715.6494651606322
  20
-167.308556
+152.5
  30
 0.0
  11
-759.3409090909092
+715.6494651606322
  21
-167.80855600000004
+153.00000000000003
  31
 0.0
   0
@@ -8071,15 +8485,15 @@ LINE
   8
 0
  10
-762.2500000000001
+718.5585560697231
  20
-184.74037418181823
+169.93181818181822
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-173.14946509090913
+158.3409090909091
  31
 0.0
   0
@@ -8089,15 +8503,15 @@ LINE
   8
 0
  10
-762.2500000000001
+718.5585560697231
  20
-173.14946509090913
+158.3409090909091
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-173.14946509090913
+158.3409090909091
  31
 0.0
   0
@@ -8107,15 +8521,15 @@ LINE
   8
 0
  10
-762.7500000000001
+719.0585560697231
  20
-173.14946509090913
+158.3409090909091
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-184.74037418181823
+169.93181818181822
  31
 0.0
   0
@@ -8125,15 +8539,15 @@ LINE
   8
 0
  10
-762.7500000000001
+719.0585560697231
  20
-184.74037418181823
+169.93181818181822
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-184.74037418181823
+169.93181818181822
  31
 0.0
   0
@@ -8143,15 +8557,15 @@ LINE
   8
 0
  10
-762.2500000000001
+718.5585560697231
  20
-212.46764690909094
+197.65909090909093
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-200.87673781818185
+186.06818181818184
  31
 0.0
   0
@@ -8161,15 +8575,15 @@ LINE
   8
 0
  10
-762.2500000000001
+718.5585560697231
  20
-200.87673781818185
+186.06818181818184
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-200.87673781818185
+186.06818181818184
  31
 0.0
   0
@@ -8179,15 +8593,15 @@ LINE
   8
 0
  10
-762.7500000000001
+719.0585560697231
  20
-200.87673781818185
+186.06818181818184
  30
 0.0
  11
-762.7500000000001
+719.0585560697231
  21
-212.46764690909094
+197.65909090909093
  31
 0.0
   0
@@ -8197,15 +8611,15 @@ LINE
   8
 0
  10
-762.7500000000001
+719.0585560697231
  20
-212.46764690909094
+197.65909090909093
  30
 0.0
  11
-762.2500000000001
+718.5585560697231
  21
-212.46764690909094
+197.65909090909093
  31
 0.0
   0
@@ -8215,15 +8629,15 @@ LINE
   8
 0
  10
-602.5000000000001
+558.808556069723
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-602.5000000000001
+558.808556069723
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -8233,15 +8647,15 @@ LINE
   8
 0
  10
-602.5000000000001
+558.808556069723
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-605.5000000000001
+561.8085560697231
  21
-172.55855600000004
+157.75000000000003
  31
 0.0
   0
@@ -8251,15 +8665,15 @@ LINE
   8
 0
  10
-605.5000000000001
+561.8085560697231
  20
-172.55855600000004
+157.75000000000003
  30
 0.0
  11
-605.5000000000001
+561.8085560697231
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -8269,15 +8683,15 @@ LINE
   8
 0
  10
-605.5000000000001
+561.8085560697231
  20
-175.55855600000004
+160.75000000000003
  30
 0.0
  11
-602.5000000000001
+558.808556069723
  21
-175.55855600000004
+160.75000000000003
  31
 0.0
   0
@@ -8287,15 +8701,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -8305,15 +8719,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-173.55855600000004
+158.75000000000003
  31
 0.0
   0
@@ -8323,15 +8737,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-173.55855600000004
+158.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -8341,15 +8755,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-174.55855600000004
+159.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-174.55855600000004
+159.75000000000003
  31
 0.0
   0
@@ -8359,15 +8773,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8377,15 +8791,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8395,15 +8809,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8413,15 +8827,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8431,15 +8845,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8449,15 +8863,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-176.058556
+161.25
  31
 0.0
   0
@@ -8467,15 +8881,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-176.058556
+161.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8485,15 +8899,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-177.05855600000004
+162.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-177.05855600000004
+162.25000000000003
  31
 0.0
   0
@@ -8503,15 +8917,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8521,15 +8935,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8539,15 +8953,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8557,15 +8971,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8575,15 +8989,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8593,15 +9007,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-178.558556
+163.75
  31
 0.0
   0
@@ -8611,15 +9025,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-178.558556
+163.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8629,15 +9043,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-179.55855600000004
+164.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-179.55855600000004
+164.75000000000003
  31
 0.0
   0
@@ -8647,15 +9061,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8665,15 +9079,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8683,15 +9097,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8701,15 +9115,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8719,15 +9133,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8737,15 +9151,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-181.058556
+166.25
  31
 0.0
   0
@@ -8755,15 +9169,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-181.058556
+166.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8773,15 +9187,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-182.05855600000004
+167.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-182.05855600000004
+167.25000000000003
  31
 0.0
   0
@@ -8791,15 +9205,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8809,15 +9223,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8827,15 +9241,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8845,15 +9259,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8863,15 +9277,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8881,15 +9295,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-183.55855600000004
+168.75000000000003
  31
 0.0
   0
@@ -8899,15 +9313,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-183.55855600000004
+168.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8917,15 +9331,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-184.55855600000004
+169.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-184.55855600000004
+169.75000000000003
  31
 0.0
   0
@@ -8935,15 +9349,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -8953,15 +9367,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -8971,15 +9385,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -8989,15 +9403,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9007,15 +9421,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -9025,15 +9439,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-186.05855600000004
+171.25000000000003
  31
 0.0
   0
@@ -9043,15 +9457,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-186.05855600000004
+171.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9061,15 +9475,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-187.05855600000004
+172.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-187.05855600000004
+172.25000000000003
  31
 0.0
   0
@@ -9079,15 +9493,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9097,15 +9511,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9115,15 +9529,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9133,15 +9547,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9151,15 +9565,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9169,15 +9583,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-188.55855600000004
+173.75000000000003
  31
 0.0
   0
@@ -9187,15 +9601,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-188.55855600000004
+173.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9205,15 +9619,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-189.55855600000004
+174.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-189.55855600000004
+174.75000000000003
  31
 0.0
   0
@@ -9223,15 +9637,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9241,15 +9655,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9259,15 +9673,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9277,15 +9691,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9295,15 +9709,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9313,15 +9727,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-191.05855600000004
+176.25000000000003
  31
 0.0
   0
@@ -9331,15 +9745,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-191.05855600000004
+176.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9349,15 +9763,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-192.058556
+177.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-192.058556
+177.25
  31
 0.0
   0
@@ -9367,15 +9781,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9385,15 +9799,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9403,15 +9817,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9421,15 +9835,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9439,15 +9853,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9457,15 +9871,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-193.55855600000004
+178.75000000000003
  31
 0.0
   0
@@ -9475,15 +9889,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-193.55855600000004
+178.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9493,15 +9907,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-194.558556
+179.75
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-194.558556
+179.75
  31
 0.0
   0
@@ -9511,15 +9925,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9529,15 +9943,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9547,15 +9961,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9565,15 +9979,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9583,15 +9997,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9601,15 +10015,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-196.05855600000004
+181.25000000000003
  31
 0.0
   0
@@ -9619,15 +10033,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-196.05855600000004
+181.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9637,15 +10051,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-197.05855600000004
+182.25
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-197.05855600000004
+182.25
  31
 0.0
   0
@@ -9655,15 +10069,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9673,15 +10087,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9691,15 +10105,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9709,15 +10123,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9727,15 +10141,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9745,15 +10159,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-198.55855600000004
+183.75000000000003
  31
 0.0
   0
@@ -9763,15 +10177,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-198.55855600000004
+183.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9781,15 +10195,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-199.55855600000004
+184.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-199.55855600000004
+184.75000000000003
  31
 0.0
   0
@@ -9799,15 +10213,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9817,15 +10231,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9835,15 +10249,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9853,15 +10267,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9871,15 +10285,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9889,15 +10303,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-201.058556
+186.25000000000003
  31
 0.0
   0
@@ -9907,15 +10321,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-201.058556
+186.25000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9925,15 +10339,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-202.05855600000004
+187.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-202.05855600000004
+187.25000000000003
  31
 0.0
   0
@@ -9943,15 +10357,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -9961,15 +10375,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -9979,15 +10393,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -9997,15 +10411,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10015,15 +10429,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -10033,15 +10447,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-203.558556
+188.75
  31
 0.0
   0
@@ -10051,15 +10465,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-203.558556
+188.75
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10069,15 +10483,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-204.55855600000004
+189.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-204.55855600000004
+189.75000000000003
  31
 0.0
   0
@@ -10087,15 +10501,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10105,15 +10519,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10123,15 +10537,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10141,15 +10555,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10159,15 +10573,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10177,15 +10591,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-206.05855600000004
+191.25
  31
 0.0
   0
@@ -10195,15 +10609,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-206.05855600000004
+191.25
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10213,15 +10627,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-207.05855600000004
+192.25000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-207.05855600000004
+192.25000000000003
  31
 0.0
   0
@@ -10231,15 +10645,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10249,15 +10663,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10267,15 +10681,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10285,15 +10699,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10303,15 +10717,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10321,15 +10735,15 @@ LINE
   8
 0
  10
-623.5000000000001
+579.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-208.55855600000004
+193.75000000000003
  31
 0.0
   0
@@ -10339,15 +10753,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-208.55855600000004
+193.75000000000003
  30
 0.0
  11
-624.5000000000001
+580.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10357,15 +10771,15 @@ LINE
   8
 0
  10
-624.5000000000001
+580.8085560697231
  20
-209.55855600000004
+194.75000000000003
  30
 0.0
  11
-623.5000000000001
+579.8085560697231
  21
-209.55855600000004
+194.75000000000003
  31
 0.0
   0
@@ -10375,15 +10789,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -10393,15 +10807,15 @@ LINE
   8
 0
  10
-603.5000000000001
+559.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-211.05855600000004
+196.25000000000003
  31
 0.0
   0
@@ -10411,15 +10825,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-211.05855600000004
+196.25000000000003
  30
 0.0
  11
-604.5000000000001
+560.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -10429,15 +10843,15 @@ LINE
   8
 0
  10
-604.5000000000001
+560.8085560697231
  20
-212.05855600000004
+197.25000000000003
  30
 0.0
  11
-603.5000000000001
+559.8085560697231
  21
-212.05855600000004
+197.25000000000003
  31
 0.0
   0
@@ -10447,15 +10861,15 @@ LINE
   8
 0
  10
-622.5000000000001
+578.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-622.5000000000001
+578.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -10465,15 +10879,15 @@ LINE
   8
 0
  10
-622.5000000000001
+578.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-625.5000000000001
+581.8085560697231
  21
-210.05855600000004
+195.25000000000003
  31
 0.0
   0
@@ -10483,15 +10897,15 @@ LINE
   8
 0
  10
-625.5000000000001
+581.8085560697231
  20
-210.05855600000004
+195.25000000000003
  30
 0.0
  11
-625.5000000000001
+581.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -10501,15 +10915,15 @@ LINE
   8
 0
  10
-625.5000000000001
+581.8085560697231
  20
-213.05855600000004
+198.25000000000003
  30
 0.0
  11
-622.5000000000001
+578.8085560697231
  21
-213.05855600000004
+198.25000000000003
  31
 0.0
   0
@@ -10519,15 +10933,15 @@ LINE
   8
 0
  10
-618.2500000000001
+574.5585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -10537,15 +10951,15 @@ LINE
   8
 0
  10
-609.7500000000001
+566.0585560697231
  20
-170.05855600000004
+155.25000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -10555,15 +10969,15 @@ LINE
   8
 0
  10
-609.7500000000001
+566.0585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-169.558556
+154.75
  31
 0.0
   0
@@ -10573,15 +10987,15 @@ LINE
   8
 0
  10
-618.2500000000001
+574.5585560697231
  20
-169.558556
+154.75
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-170.05855600000004
+155.25000000000003
  31
 0.0
   0
@@ -10591,15 +11005,15 @@ LINE
   8
 0
  10
-609.7500000000001
+566.0585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -10609,15 +11023,15 @@ LINE
   8
 0
  10
-618.2500000000001
+574.5585560697231
  20
-217.80855600000004
+203.00000000000003
  30
 0.0
  11
-618.2500000000001
+574.5585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -10627,15 +11041,15 @@ LINE
   8
 0
  10
-618.2500000000001
+574.5585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-218.30855600000004
+203.50000000000003
  31
 0.0
   0
@@ -10645,15 +11059,15 @@ LINE
   8
 0
  10
-609.7500000000001
+566.0585560697231
  20
-218.30855600000004
+203.50000000000003
  30
 0.0
  11
-609.7500000000001
+566.0585560697231
  21
-217.80855600000004
+203.00000000000003
  31
 0.0
   0
@@ -10663,15 +11077,15 @@ LINE
   8
 0
  10
-594.5000000000001
+550.8085560697231
  20
-173.39946509090913
+158.59090909090912
  30
 0.0
  11
-599.5
+555.808556069723
  21
-173.39946509090913
+158.59090909090912
  31
 0.0
   0
@@ -10681,15 +11095,15 @@ LINE
   8
 0
  10
-599.5
+555.808556069723
  20
-173.39946509090913
+158.59090909090912
  30
 0.0
  11
-599.5
+555.808556069723
  21
-184.49037418181823
+169.68181818181822
  31
 0.0
   0
@@ -10699,15 +11113,15 @@ LINE
   8
 0
  10
-599.5
+555.808556069723
  20
-184.49037418181823
+169.68181818181822
  30
 0.0
  11
-594.5000000000001
+550.8085560697231
  21
-184.49037418181823
+169.68181818181822
  31
 0.0
   0
@@ -10717,15 +11131,15 @@ LINE
   8
 0
  10
-594.5000000000001
+550.8085560697231
  20
-201.12673781818185
+186.31818181818184
  30
 0.0
  11
-599.5
+555.808556069723
  21
-201.12673781818185
+186.31818181818184
  31
 0.0
   0
@@ -10735,15 +11149,15 @@ LINE
   8
 0
  10
-599.5
+555.808556069723
  20
-201.12673781818185
+186.31818181818184
  30
 0.0
  11
-599.5
+555.808556069723
  21
-212.21764690909094
+197.40909090909093
  31
 0.0
   0
@@ -10753,15 +11167,15 @@ LINE
   8
 0
  10
-599.5
+555.808556069723
  20
-212.21764690909094
+197.40909090909093
  30
 0.0
  11
-594.5000000000001
+550.8085560697231
  21
-212.21764690909094
+197.40909090909093
  31
 0.0
   0
@@ -10771,15 +11185,15 @@ LINE
   8
 0
  10
-619.7500000000001
+576.0585560697231
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-623.25
+579.558556069723
  21
-146.308556
+131.50000000000003
  31
 0.0
   0
@@ -10789,15 +11203,15 @@ LINE
   8
 0
  10
-623.25
+579.558556069723
  20
-146.308556
+131.50000000000003
  30
 0.0
  11
-623.25
+579.558556069723
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
@@ -10807,15 +11221,15 @@ LINE
   8
 0
  10
-623.25
+579.558556069723
  20
-154.30855600000004
+139.50000000000003
  30
 0.0
  11
-619.7500000000001
+576.0585560697231
  21
-154.30855600000004
+139.50000000000003
  31
 0.0
   0
diff --git a/rocolib/output/ServoStackBatteryMount/tree.png b/rocolib/output/ServoStackBatteryMount/tree.png
index 8c3977206fcf9fb6c0b7aa0cf51a9dab7ec624b8..4256b669f7a98442f079c7d738770fbebae9a492 100644
Binary files a/rocolib/output/ServoStackBatteryMount/tree.png and b/rocolib/output/ServoStackBatteryMount/tree.png differ